/* ===== CONTACTO CSS RENOVADO - ESTILO MODERNO SIMPLE ===== */

/* ===== HERO SECTION ===== */
.contacto-hero {
    position: relative;
    height: 430px; /* Altura final ajustada */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    margin-bottom: 0; /* AGREGADO: Eliminar margen inferior */
}

.contacto-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.contacto-hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 75%; /* AJUSTADO: muestra más de la parte inferior, recorta más arriba */
}

.contacto-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(61, 95, 172, 0.6));
    z-index: -1;
}

.contacto-hero .hero-content {
    text-align: center;
    color: var(--primary-white);
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 8px 20px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 2px solid var(--primary-black);
}

.contacto-hero h1 {
    font-family: var(--font-primary);
    font-size: 3.2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    font-weight: 700;
}

.contacto-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 20px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    min-width: 120px;
    transition: var(--transition-fast);
}

.hero-stats .stat-item:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-5px);
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== QUICK CONTACT BAR ===== */
.quick-contact-bar {
    background: var(--primary-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 25px 0;
    position: relative;
    z-index: 10;
    margin: 0; /* AGREGADO: Eliminar márgenes */
}

.quick-contacts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--primary-white);
    border: 2px solid #e5e7eb;
    border-radius: 0;
    text-decoration: none;
    color: var(--primary-black);
    transition: var(--transition-medium);
    cursor: pointer;
}

.quick-contact-item:hover {
    background: var(--primary-white);
    border-color: var(--primary-black);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.quick-icon.whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.quick-contact-item:hover .quick-icon {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.1);
}

.quick-contact-item:hover .quick-icon.whatsapp {
    background: #25d366;
    color: var(--primary-white);
}

.quick-info {
    flex: 1;
}

.quick-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-gray);
    margin-bottom: 2px;
    font-weight: 500;
}

.quick-value {
    display: block;
    font-size: 1rem;
    color: var(--primary-black);
    font-weight: 600;
}

/* ===== MAIN CONTACT SECTION ===== */
.contact-main-section {
    padding: 40px 0; /* REDUCIDO: de 80px a 40px */
    background: #f8f9fa;
    margin: 0; /* AGREGADO: Eliminar márgenes */
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* ===== FORM CONTAINER ===== */
.contact-form-container {
    background: var(--primary-white);
    padding: 40px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    background: var(--primary-white);
    color: var(--primary-black);
    padding: 8px 20px;
    border: 2px solid var(--primary-black);
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.form-header h2 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.form-header p {
    color: var(--secondary-gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FORM STYLES ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 8px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: var(--primary-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-black);
    transform: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--primary-black);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition-fast);
    background: var(--primary-white);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-black);
    border-color: var(--primary-black);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-white);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--primary-black);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-label a:hover {
    color: var(--primary-blue);
}

/* ===== FORM ACTIONS ===== */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-note {
    font-size: 0.9rem;
    color: var(--secondary-gray);
    font-style: italic;
}

/* ===== CONTACT INFO CONTAINER ===== */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--primary-white);
    padding: 30px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    box-shadow: none;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.info-header i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.info-header h3 {
    font-size: 1.3rem;
    color: var(--primary-black);
    margin: 0;
    font-weight: 700;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 5px;
    font-size: 1rem;
}

.info-content p {
    color: var(--secondary-gray);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.info-content a {
    color: var(--primary-black);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-fast);
}

.info-content a:hover {
    color: var(--primary-blue);
}


/* ===== SOCIAL LINKS ===== */
.social-links {
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.social-links h4 {
    color: var(--primary-black);
    margin-bottom: 1px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    display: block;
}

/* ===== FORZAR BOTONES SOCIALES HORIZONTALES ===== */

/* Para el FOOTER */
.footer .social-links {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.footer .social-link {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
}

/* Para la sección de CONTACTO */
.contact-info-card .social-buttons,
.social-buttons {
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.social-btn {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    flex-shrink: 0 !important;
}

/* ===== MAP CARD ===== */
.map-card {
    background: var(--primary-white);
    border: 2px solid #e5e7eb;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: #f8f9fa;
    border-bottom: 2px solid #e5e7eb;
}

.map-header h3 {
    font-size: 1.1rem;
    color: var(--primary-black);
    margin: 0;
    font-weight: 600;
}

.map-fullscreen-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-fullscreen-btn:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-1px);
}

.map-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: grayscale(0%);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--secondary-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-black);
    transition: var(--transition-fast);
    line-height: 1.4;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.05);
}

.faq-question i {
    color: var(--primary-black);
    transition: var(--transition-fast);
    font-size: 0.9rem;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: var(--primary-white);
}

.faq-answer.active {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--secondary-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* ===== CTA SECTION - CORREGIDO PARA UNA LÍNEA ===== */
.contacto-cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contacto-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../assets/imagenes/IMG_8670(1).JPEG') center/cover;
    z-index: -2;
}

.contacto-cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(61, 95, 172, 0.7));
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px; /* AUMENTADO: de 700px a 900px para que quepa el título en una línea */
    margin: 0 auto;
    color: var(--primary-white);
    text-align: center;
    padding: 0 20px; /* Padding lateral para móviles */
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-white);
    border: 2px solid var(--primary-black);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap; /* CLAVE: EVITA QUE SE DIVIDA EN VARIAS LÍNEAS */
    overflow: visible; /* Permite que el texto se expanda */
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: nowrap; /* IMPORTANTE: Mantiene los botones en una sola línea */
    align-items: center;
}

.cta-button,
.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px; /* Botones más chicos */
    border-radius: 0;
    font-size: 0.95rem; /* Texto más pequeño */
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cta-button {
    background: var(--primary-white);
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.cta-button:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-3px);
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.cta-button-outline:hover {
    background: var(--primary-white);
    color: var(--primary-black);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE - ACTUALIZADO ===== */
@media (max-width: 1024px) {
    .cta-content {
        max-width: 800px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem; /* Reducir un poco el tamaño */
    }
}

@media (max-width: 768px) {
    .cta-content {
        max-width: 100%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem; /* MÁS PEQUEÑO en tablet */
        white-space: normal; /* PERMITIR DIVISIÓN en pantallas pequeñas */
    }
    
    .cta-buttons {
        flex-direction: column; /* APILAR en móvil */
        align-items: center;
        gap: 12px;
    }
    
    .cta-button,
    .cta-button-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .contacto-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 1.6rem; /* AÚN MÁS PEQUEÑO en móvil pequeño */
        line-height: 1.3;
        white-space: normal; /* División permitida en móvil */
    }
    
    .cta-button,
    .cta-button-outline {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}

/* Para pantallas MUY ANCHAS - asegurar que se vea bien */
@media (min-width: 1400px) {
    .cta-content {
        max-width: 1000px;
    }
    
    .cta-content h2 {
        font-size: 2.8rem; /* Más grande en pantallas grandes */
    }
    
    .cta-buttons {
        gap: 20px;
    }
}
/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--primary-white);
    margin: 3% auto;
    border: 2px solid var(--primary-black);
    border-radius: 0;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.map-modal-content {
    max-width: 900px;
}



.modal-header i {
    font-size: 1.3rem;
}

.close {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    color: var(--primary-white);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-fast);
    padding: 5px;
    border-radius: 0;
}

.close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.map-info h4 {
    color: var(--primary-black);
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1.2rem;
}

.map-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--secondary-gray);
    font-size: 1rem;
}

.map-info i {
    color: var(--primary-black);
    width: 18px;
    font-size: 0.9rem;
}

.privacy-content h4 {
    color: var(--primary-black);
    margin: 25px 0 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.privacy-content p {
    color: var(--secondary-gray);
    line-height: 1.7;
    margin-bottom: 15px;
}

.privacy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
    color: var(--secondary-gray);
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .contact-layout {
        grid-template-columns: 1.5fr 1fr;
        gap: 40px; /* CORREGIDO: de 400px a 40px */
    }

    .quick-contacts {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
        max-width: 1000px;
    }

    .quick-contact-item {
        padding: 15px;
    }
}

@media (max-width: 1024px) {
    .contacto-hero {
        height: 380px;
    }
    
    .contacto-hero h1 {
        font-size: 2.8rem;
    }
    
    .contacto-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stats .stat-item {
        padding: 15px;
        min-width: 100px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.7rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-container {
        padding: 30px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .quick-contacts {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-main-section {
        padding: 30px 0; /* REDUCIDO: de 60px a 30px en tablet */
    }
}

@media (max-width: 768px) {
    .contacto-hero {
        height: 320px;
        margin-top: 80px;
    }

    .contacto-hero h1 {
        font-size: 2.2rem;
    }

    .contacto-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        margin: 30px auto 0;
    }

    .hero-stats .stat-item {
        padding: 12px 20px;
    }

    .quick-contacts {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quick-contact-item {
        padding: 15px;
    }

    .quick-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .contact-main-section {
        padding: 30px 20px !important;
    }

    .contact-main-section .container {
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .contact-layout {
        gap: 30px;
    }

    .contact-form-container {
        padding: 25px 20px !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .submit-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .contact-info-card {
        padding: 25px;
    }
    
    .map-card {
        border-radius: 0;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .contacto-cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-button,
    .cta-button-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contacto-hero {
        height: 260px;
        margin-top: 70px;
    }

    .contacto-hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .contacto-hero .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }

    .quick-contact-bar {
        padding: 20px 0;
    }

    .quick-contact-item {
        padding: 12px;
        gap: 12px;
    }

    .quick-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .quick-label {
        font-size: 0.8rem;
    }

    .quick-value {
        font-size: 0.9rem;
    }

    .contact-main-section {
        padding: 25px 15px !important;
    }

    .contact-main-section .container {
        padding: 0 !important;
        margin: 0 auto !important;
    }

    .contact-layout {
        gap: 25px;
    }

    .contact-form-container {
        padding: 20px 15px !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-left: none !important;
        border-right: none !important;
    }
    
    .form-header {
        margin-bottom: 30px;
    }
    
    .form-header h2 {
        font-size: 1.6rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .contact-form {
        gap: 18px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .info-header {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .info-header h3 {
        font-size: 1.1rem;
    }
    
    .info-items {
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-content h4 {
        font-size: 0.95rem;
    }
    
    .info-content p {
        font-size: 0.9rem;
    }
    
    .map-header {
        padding: 15px 20px;
    }
    
    .map-fullscreen-btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
    
    .map-container {
        height: 200px;
    }
    
    .faq-section {
        padding: 50px 0;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-header h2 {
        font-size: 1.7rem;
    }
    
    .faq-header p {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .faq-answer.active {
        padding: 0 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    .contacto-cta-section {
        padding: 50px 0;
    }
    
    .cta-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .cta-icon i {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
        margin-bottom: 15px;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .modal-content {
        margin: 10% auto;
        width: 95%;
        max-width: none;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .close {
        right: 20px;
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.contact-form-container {
    animation: fadeInLeft 0.8s ease forwards;
}

.contact-info-container {
    animation: fadeInRight 0.8s ease 0.2s both;
}

.quick-contact-item {
    animation: fadeInUp 0.6s ease forwards;
}

.quick-contact-item:nth-child(1) { animation-delay: 0.1s; }
.quick-contact-item:nth-child(2) { animation-delay: 0.2s; }
.quick-contact-item:nth-child(3) { animation-delay: 0.3s; }
.quick-contact-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* ===== FOCUS STYLES FOR ACCESSIBILITY ===== */
.quick-contact-item:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.checkbox-label:focus-within,
.submit-btn:focus,
.faq-question:focus,
.map-fullscreen-btn:focus,
.social-btn:focus {
    outline: 3px solid var(--primary-black);
    outline-offset: 2px;
}

/* ===== LOADING STATES ===== */
.form-loading .submit-btn {
    position: relative;
    color: transparent;
}

.form-loading .submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top: 2px solid var(--primary-black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-success .submit-btn {
    background: #28a745 !important;
    border-color: #28a745 !important;
    color: var(--primary-white) !important;
}

.form-error .submit-btn {
    background: #dc3545 !important;
    border-color: #dc3545 !important;
    color: var(--primary-white) !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ===== PRINT STYLES ===== */
@media print {
    .contacto-hero,
    .quick-contact-bar,
    .modal,
    .submit-btn {
        display: none !important;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container,
    .contact-info-card,
    .map-card {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .section-label {
        background: #000 !important;
        color: #fff !important;
    }
}

/* ===== HIGH CONTRAST MODE ===== */
@media (prefers-contrast: high) {
    .quick-contact-item {
        border: 2px solid #000;
    }
    
    .quick-contact-item:hover {
        border-color: #000;
        box-shadow: 0 0 0 3px #000;
    }
    
    .submit-btn {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #000;
    }
    
    .faq-item {
        border: 2px solid #000;
    }
    
    .checkbox-label input[type="checkbox"]:checked + .checkmark {
        background-color: #000 !important;
        border-color: #000 !important;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .quick-contact-item,
    .contact-form-container,
    .contact-info-container,
    .faq-item,
    .submit-btn,
    .modal-content {
        animation: none;
        transition: none;
    }
    
    .faq-answer {
        transition: none;
    }
    
    .submit-btn::before {
        display: none;
    }
}

/* ===== SECCIÓN MARCAS - VERSION ESTÁTICA ===== */
.brands {
    padding: 60px 0;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    margin: 40px 0 0 0;
    position: relative;
    overflow: hidden;
}

.brands-carousel {
    overflow: visible;
    position: relative;
    width: 100%;
}

.brands-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
    width: 100%;
    flex-wrap: wrap;
}

.brand-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    min-width: 80px;
    object-fit: contain;
    opacity: 0.7;
    transition: all 0.3s ease;
    filter: grayscale(50%) brightness(0.9);
    flex-shrink: 0;
    cursor: pointer;
    margin: 10px;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Configuración específica para cada marca */
.brand-logo[alt="Scania"] {
    max-width: 100px;
}

.brand-logo[alt="Volvo"] {
    max-width: 90px;
}

.brand-logo[alt="Mercedes-Benz"] {
    max-width: 110px;
}

.brand-logo[alt="Iveco"] {
    max-width: 100px;
}

.brand-logo[alt="Volkswagen"] {
    max-width: 110px;
}

.brand-logo[alt="Renault"] {
    max-width: 100px;
}

.brand-logo[alt="Ford"] {
    max-width: 90px;
}

.brand-logo[alt="DAF"] {
    max-width: 80px;
}

.brand-logo[alt="Randon"] {
    max-width: 100px;
    height: 45px;
}

/* Estados adicionales */
.brands.with-title {
    padding-top: 80px;
}

.brands.with-title::before {
    content: 'Trabajamos con las mejores marcas';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    width: 100%;
}

.brands.compact {
    padding: 40px 0;
}

.brands.compact .brand-logo {
    height: 40px;
    max-width: 100px;
}

.brands.white-bg {
    background: #ffffff;
}

.brands.dark-bg {
    background: #2c3e50;
    border-color: #34495e;
}

.brands.dark-bg .brand-logo {
    filter: grayscale(50%) brightness(1.2) invert(1);
}

.brands.dark-bg .brand-logo:hover {
    filter: grayscale(0%) brightness(1) invert(1);
}

/* ===== RESPONSIVE DESIGN PARA MARCAS ===== */
@media (max-width: 1200px) {
    .brands-track {
        gap: 35px;
    }
    
    .brand-logo {
        height: 45px;
        max-width: 110px;
        margin: 8px;
    }
}

@media (max-width: 992px) {
    .brands {
        padding: 50px 0;
    }
    
    .brands-track {
        gap: 30px;
    }
    
    .brand-logo {
        height: 42px;
        max-width: 100px;
        margin: 6px;
    }
    
    .brand-logo[alt="Randon"] {
        height: 38px;
        max-width: 90px;
    }
}

@media (max-width: 768px) {
    .brands {
        padding: 40px 0;
    }
    
    .brands-track {
        gap: 25px;
        justify-content: center;
    }
    
    .brand-logo {
        height: 38px;
        max-width: 90px;
        min-width: 60px;
        margin: 5px;
    }
    
    .brand-logo[alt="Randon"] {
        height: 35px;
        max-width: 80px;
    }
    
    .brand-logo[alt="Mercedes-Benz"],
    .brand-logo[alt="Volkswagen"] {
        max-width: 85px;
    }
}

@media (max-width: 480px) {
    .brands {
        padding: 30px 0;
        margin: 20px 0 0 0;
    }
    
    .brands-track {
        gap: 20px;
        justify-content: center;
        max-width: 100%;
    }
    
    .brand-logo {
        height: 35px;
        max-width: 80px;
        min-width: 50px;
        margin: 4px;
    }
    
    .brand-logo[alt="Randon"] {
        height: 32px;
        max-width: 70px;
    }
}

/* ===== EFECTOS ADICIONALES ===== */
.brand-logo:hover {
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(61, 95, 172, 0.1);
    border-radius: 8px;
}

/* Animación de entrada */
.brands.animate-in .brand-logo {
    animation: fadeInBrand 0.6s ease forwards;
    opacity: 0;
}

@keyframes fadeInBrand {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 0.7;
        transform: translateY(0) scale(1);
    }
}

/* Delay escalonado para las marcas */
.brands.animate-in .brand-logo:nth-child(1) { animation-delay: 0.1s; }
.brands.animate-in .brand-logo:nth-child(2) { animation-delay: 0.2s; }
.brands.animate-in .brand-logo:nth-child(3) { animation-delay: 0.3s; }
.brands.animate-in .brand-logo:nth-child(4) { animation-delay: 0.4s; }
.brands.animate-in .brand-logo:nth-child(5) { animation-delay: 0.5s; }
.brands.animate-in .brand-logo:nth-child(6) { animation-delay: 0.6s; }
.brands.animate-in .brand-logo:nth-child(7) { animation-delay: 0.7s; }
.brands.animate-in .brand-logo:nth-child(8) { animation-delay: 0.8s; }

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
    .brand-logo {
        transition: none;
    }
}

/* Focus para accesibilidad */
.brand-logo:focus {
    outline: 3px solid #3D5FAC;
    outline-offset: 3px;
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}

/* ===== VARIANTES ESPECÍFICAS POR PÁGINA ===== */
.page-inicio .brands {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.page-unidades .brands {
    background: #ffffff;
    border-top: 2px solid #3D5FAC;
}

.page-empresa .brands {
    background: #f8f9fa;
}

.page-contacto .brands {
    background: #ffffff;
    margin-top: 0; /* ELIMINADO: era 60px, ahora 0 para pegarlo al formulario */
}

.page-detalle .brands {
    background: #f8f9fa;
    margin-top: 40px;
}

/* ===== OVERRIDE: Eliminar recuadro azul del botón Randon ===== */
.nav-button .btn-special:hover {
    border-color: transparent !important;
}

/* ===== AJUSTE DE ESPACIADO FAQ - AGREGAR A contacto.css ===== */
/* Agregar al final del archivo styles/contacto.css */

/* Aumentar espacio entre pregunta y respuesta */
.faq-answer {
    padding-top: 20px !important;  /* Más espacio arriba de la respuesta */
}

.faq-answer.active {
    padding: 20px 25px 25px !important;  /* Más padding cuando está abierta */
}

/* Alternativa: Si el padding no funciona, usar margin en el párrafo */
.faq-answer p {
    margin-top: 5px !important;
    margin-bottom: 0 !important;
    padding-top: 5px !important;
}

/* Ajuste adicional para móviles */
@media (max-width: 480px) {
    .faq-answer.active {
        padding: 15px 15px 20px !important;
    }
}


.footer p,


.footer .footer-description,

.footer .contact-info p {
    color: #1f2937 !important;  /* Negro oscuro */
    opacity: 1 !important;
}


/* ===================================================================
   RESPONSIVE PARA PANTALLAS GRANDES (MONITORES ANCHOS)
   ================================================================= */

/* Para pantallas de 1400px a 1599px (laptops grandes) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
        padding: 0 30px;
    }

    /* Hero Section */
    .contacto-hero {
        height: 430px;
    }

    .contacto-hero h1 {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* Contact Layout */
    .contact-layout {
        grid-template-columns: 1.8fr 1fr;
        gap: 50px;
        max-width: 1320px;
        margin: 0 auto;
    }

    .contact-form-container {
        padding: 45px;
    }

    .form-header h2 {
        font-size: 2.3rem;
    }

    .form-header p {
        font-size: 1.1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 16px 18px;
        font-size: 1.05rem;
    }

    .submit-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    /* Contact Info */
    .contact-info-card {
        padding: 35px;
    }

    .info-header h3 {
        font-size: 1.6rem;
    }

    .info-item h4 {
        font-size: 1.15rem;
    }

    .info-item p {
        font-size: 1.05rem;
    }

    /* FAQ Section */
    .faq-header h2 {
        font-size: 2.8rem;
    }

    .faq-grid {
        gap: 25px;
        max-width: 1320px;
        margin: 0 auto;
    }

    .faq-question {
        padding: 25px 30px;
        font-size: 1.15rem;
    }

    .faq-answer p {
        font-size: 1.05rem;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 2.8rem;
    }

    .cta-content p {
        font-size: 1.2rem;
    }

    .cta-button,
    .cta-button-outline {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

/* Para pantallas de 1600px a 1919px (monitores Full HD) */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
        padding: 0 40px;
    }

    /* Hero Section */
    .contacto-hero {
        height: 430px;
    }

    .contacto-hero h1 {
        font-size: 4.2rem;
    }

    .hero-subtitle {
        font-size: 1.7rem;
    }

    /* Contact Layout */
    .contact-main-section {
        padding: 80px 0;
    }

    .contact-layout {
        grid-template-columns: 1.8fr 1fr;
        gap: 60px;
        max-width: 1500px;
    }

    .contact-form-container {
        padding: 50px;
    }

    .form-header h2 {
        font-size: 2.6rem;
        margin-bottom: 1.5rem;
    }

    .form-header p {
        font-size: 1.15rem;
    }

    .form-row {
        gap: 25px;
    }

    .form-group label {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 18px 20px;
        font-size: 1.1rem;
    }

    .submit-btn {
        padding: 18px 45px;
        font-size: 1.15rem;
    }

    /* Contact Info */
    .contact-info-card {
        padding: 40px;
    }

    .info-header h3 {
        font-size: 1.8rem;
    }

    .info-item {
        padding: 25px 0;
    }

    .info-item h4 {
        font-size: 1.2rem;
    }

    .info-item p {
        font-size: 1.1rem;
    }

    .info-icon {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    /* Map Card */
    .map-card {
        padding: 30px;
    }

    .map-container {
        height: 400px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 0;
    }

    .faq-header h2 {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }

    .faq-header p {
        font-size: 1.2rem;
    }

    .faq-grid {
        gap: 30px;
        max-width: 1500px;
    }

    .faq-question {
        padding: 28px 35px;
        font-size: 1.2rem;
    }

    .faq-answer {
        padding: 25px 35px;
    }

    .faq-answer p {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    /* CTA Section */
    .contacto-cta-section {
        padding: 100px 0;
    }

    .cta-content {
        max-width: 1000px;
    }

    .cta-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 3.2rem;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.3rem;
        margin-bottom: 3rem;
    }

    .cta-buttons {
        gap: 25px;
    }

    .cta-button,
    .cta-button-outline {
        padding: 18px 40px;
        font-size: 1.15rem;
    }
}

/* Para pantallas de 1920px en adelante (monitores 2K y superiores) */
@media (min-width: 1920px) {
    .container {
        max-width: 1720px;
        padding: 0 50px;
    }

    /* Hero Section */
    .contacto-hero {
        height: 430px;
    }

    .contacto-hero h1 {
        font-size: 5rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-badge {
        font-size: 1.1rem;
        padding: 12px 30px;
    }

    /* Contact Layout */
    .contact-main-section {
        padding: 100px 0;
    }

    .contact-layout {
        grid-template-columns: 1.8fr 1fr;
        gap: 70px;
        max-width: 1720px;
    }

    .contact-form-container {
        padding: 60px;
    }

    .form-header {
        margin-bottom: 3rem;
    }

    .form-header h2 {
        font-size: 3rem;
        margin-bottom: 1.8rem;
    }

    .form-header p {
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .section-label {
        font-size: 1.05rem;
        padding: 8px 20px;
    }

    .contact-form {
        gap: 35px;
    }

    .form-row {
        gap: 30px;
    }

    .form-group label {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 20px 22px;
        font-size: 1.15rem;
        border-width: 2px;
    }

    .form-group textarea {
        min-height: 180px;
    }

    .submit-btn {
        padding: 20px 50px;
        font-size: 1.2rem;
    }

    .form-note {
        font-size: 1.05rem;
    }

    /* Contact Info */
    .contact-info-container {
        gap: 35px;
    }

    .contact-info-card {
        padding: 50px;
    }

    .info-header {
        margin-bottom: 3rem;
    }

    .info-header h3 {
        font-size: 2rem;
    }

    .info-icon i {
        font-size: 1.4rem;
    }

    .info-item {
        padding: 30px 0;
    }

    .info-item h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .info-item p {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    .info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .social-links h4 {
        font-size: 1.2rem;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

    /* Map Card */
    .map-card {
        padding: 35px;
    }

    .map-header h3 {
        font-size: 1.6rem;
    }

    .map-container {
        height: 450px;
    }

    /* FAQ Section */
    .faq-section {
        padding: 120px 0;
    }

    .faq-header h2 {
        font-size: 3.8rem;
        margin-bottom: 2rem;
    }

    .faq-header p {
        font-size: 1.35rem;
    }

    .faq-grid {
        gap: 35px;
        max-width: 1720px;
    }

    .faq-item {
        border-width: 2px;
    }

    .faq-question {
        padding: 32px 40px;
        font-size: 1.3rem;
    }

    .faq-question i {
        font-size: 1.3rem;
    }

    .faq-answer {
        padding: 30px 40px;
    }

    .faq-answer p {
        font-size: 1.2rem;
        line-height: 2;
    }

    /* CTA Section */
    .contacto-cta-section {
        padding: 120px 0;
    }

    .cta-content {
        max-width: 1200px;
    }

    .cta-icon {
        width: 120px;
        height: 120px;
        font-size: 3rem;
        margin-bottom: 2.5rem;
    }

    .cta-content h2 {
        font-size: 3.8rem;
        margin-bottom: 2rem;
    }

    .cta-content p {
        font-size: 1.4rem;
        line-height: 2;
        margin-bottom: 3.5rem;
    }

    .cta-buttons {
        gap: 30px;
    }

    .cta-button,
    .cta-button-outline {
        padding: 20px 45px;
        font-size: 1.25rem;
    }
}

/* Para pantallas ultra anchas 2560px+ (4K y superiores) */
@media (min-width: 2560px) {
    .container {
        max-width: 2200px;
        padding: 0 80px;
    }

    /* Hero Section */
    .contacto-hero {
        height: 430px;
    }

    .contacto-hero h1 {
        font-size: 6rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    /* Contact Layout */
    .contact-main-section {
        padding: 140px 0;
    }

    .contact-layout {
        gap: 100px;
        max-width: 2200px;
    }

    .contact-form-container {
        padding: 80px;
    }

    .form-header h2 {
        font-size: 3.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 24px 26px;
        font-size: 1.3rem;
    }

    .submit-btn {
        padding: 24px 60px;
        font-size: 1.4rem;
    }

    /* FAQ Section */
    .faq-section {
        padding: 160px 0;
    }

    .faq-header h2 {
        font-size: 4.5rem;
    }

    .faq-grid {
        max-width: 2200px;
    }

    /* CTA Section */
    .cta-content h2 {
        font-size: 4.5rem;
    }
}