:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-21c040c *//* ==========================================================================
   CONTACT FORM 7 - ESTILO PROFESIONAL PARA SITIO DE TATUAJES
   ========================================================================== */

/* Contenedor principal del formulario */
.wpcf7 {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* Filas del formulario */
.wpcf7 .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

/* Grupos de campos */
.wpcf7 .form-group {
    flex: 1;
    margin-bottom: 20px;
}

.wpcf7 .form-group.full-width {
    flex: 1 1 100%;
}

/* Estilos para todos los campos de entrada */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
    width: 100%;
    padding: 15px;
    border: 2px solid #fff;
    background-color: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Efectos hover y focus */
.wpcf7 input[type="text"]:hover,
.wpcf7 input[type="email"]:hover,
.wpcf7 input[type="tel"]:hover,
.wpcf7 textarea:hover,
.wpcf7 select:hover {
    border-color: #ccc;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
    outline: none;
    border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    background-color: #111;
}

/* Placeholder styling */
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #ccc;
    font-style: italic;
}

/* Textarea específico */
.wpcf7 textarea {
    min-height: 120px;
    resize: vertical;
    font-family: Arial, sans-serif;
}

/* Select dropdown */
.wpcf7 select {
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='%23fff' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.wpcf7 select option {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

/* Botón de envío */
.wpcf7 input[type="submit"] {
    background-color: #000;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 40px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.wpcf7 input[type="submit"]:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wpcf7 input[type="submit"]:active {
    transform: translateY(0);
}

/* Mensajes de respuesta */
.wpcf7-response-output {
    border: 2px solid #fff;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-align: center;
}

.wpcf7-mail-sent-ok {
    background-color: #000;
    color: #fff;
    border-color: #4CAF50;
}

.wpcf7-mail-sent-ng,
.wpcf7-aborted,
.wpcf7-validation-errors {
    background-color: #000;
    color: #fff;
    border-color: #f44336;
}

/* Mensajes de validación */
.wpcf7-not-valid-tip {
    color: #f44336;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    font-style: italic;
}

/* Campos con errores */
.wpcf7-not-valid {
    border-color: #f44336 !important;
    box-shadow: 0 0 10px rgba(244, 67, 54, 0.3) !important;
}

/* Spinner de carga */
.wpcf7-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wpcf7 {
        padding: 20px;
        margin: 0 10px;
    }
    
    .wpcf7 .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea,
    .wpcf7 select {
        font-size: 16px; /* Evita zoom en iOS */
    }
    
    .wpcf7 input[type="submit"] {
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .wpcf7 {
        padding: 15px;
    }
    
    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 input[type="tel"],
    .wpcf7 textarea,
    .wpcf7 select {
        padding: 12px;
    }
}

/* Estilo adicional para mejorar la accesibilidad */
.wpcf7 input:required,
.wpcf7 textarea:required {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Efecto especial para el tema de tatuajes */
.wpcf7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 50%, transparent 52%);
    pointer-events: none;
    border-radius: 8px;
}/* End custom CSS */