* {
    margin: 0;
    padding: 0;
}
/* -------------------------------------- */
/* Estilos del Header */
/* -------------------------------------- */
header {
    background-color: white;
    padding: 15px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    margin: 0;
    box-sizing: border-box;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
}

/* ========== LOGO ========== */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.85;
}

.logo {
    height: 60px;
    width: auto;
}

/* ========== NAVEGACIÓN ========== */
nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

nav a:hover {
    color: #C7698D;
}

/* ========== DROPDOWN SERVICIOS ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: #C7698D;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* Dropdown menu desktop */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background-color: white;
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #F5F1E8;
    color: #C7698D;
    padding-left: 30px;
}

/* Hover solo funciona en desktop */
@media screen and (min-width: 769px) {
    .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========== BOTÓN CONTACTO ========== */
.btn-contacto {
    background-color: #C7698D;
    color: white !important;
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #C7698D;
    display: inline-block;
}

.btn-contacto:hover {
    background-color: white;
    color: #C7698D !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(199, 105, 141, 0.3);
}

/* ========== BOTÓN HAMBURGUESA (oculto en escritorio) ========== */
.menu-toggle {
    display: none;
}

.menu-overlay {
    display: none;
}




/* -------------------------------------- */
/* Estilos del FORMULARIO DE CONTACTO */
/* -------------------------------------- */
.contacto-hero-header {
    text-align: center;
    padding: 60px 20px 30px;
    background-color: transparent; /* O el color de tu página */
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

.contacto-hero-header h1 {
    color: #2C5F7C;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
}

.contacto-hero-header p {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* -------------------------------------- */
/* SECCIÓN CON FONDO AZUL */
/* -------------------------------------- */
.contacto-hero {
    background-image: url('/imagenes/contacto/Vector\ 20.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 300px 20px 100px;
    position: relative;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
    margin: -25px auto 0;
}

/* -------------------------------------- */
/* CONTENEDOR PRINCIPAL */
/* -------------------------------------- */
.contacto-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin: -35px auto 0;
}

/* -------------------------------------- */
/* BLOQUE IZQUIERDO - INFORMACIÓN */
/* -------------------------------------- */
.contacto-hero-info {
    background-color: #F0F0F0;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-hero-info h2 {
    color: #2C5F7C;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contacto-hero-subtitle {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Datos de Contacto */
.contacto-hero-data {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contacto-icon {
    width: 50px;
    height: 50px;
    background-color: #2C5F7C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contacto-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.contacto-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.contacto-label {
    color: #2C5F7C;
    font-size: 14px;
    font-weight: 600;
}

.contacto-value {
    color: #666;
    font-size: 14px;
}

/* Redes Sociales */
.contacto-hero-socials {
    margin-top: 15px;
}

.socials-title {
    color: #2C5F7C;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.socials-icons {
    display: flex;
    gap: 12px;
}

.social-icon-link {
    width: 45px;
    height: 45px;
    background-color: #2C5F7C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background-color: #1E4A5F;
    transform: translateY(-3px);
}

.social-icon-link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* -------------------------------------- */
/* BLOQUE DERECHO - FORMULARIO */
/* -------------------------------------- */
.contacto-hero-form {
    background-color: #FFFFFF;
    padding: 50px 45px;
}

.contacto-hero-form h2 {
    color: #2C5F7C;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Grupos de Formulario */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #D0D0D0;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    background-color: #FAFAFA;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2C5F7C;
    background-color: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Botón Enviar */
.btn-enviar {
    width: 100%;
    padding: 16px;
    background-color: #2C5F7C;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-enviar:hover {
    background-color: #1E4A5F;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 124, 0.3);
}

.btn-enviar:active {
    transform: translateY(0);
}

/*---------------------------------------------------------------------------------------------------------------------------*/
/* MEDIA QUERIES PARA PANTALLAS GRANDES */
/* Agregar esto al final del CSS */
/* ============================================ */

/* -------------------------------------- */
/* PANTALLAS GRANDES (más de 1440px) */
/* Monitores Full HD, 2K, 4K, etc. */
/* -------------------------------------- */
@media screen and (min-width: 1441px) {
    
    /* Header - Mantener centrado */
    .contacto-hero-header {
        max-width: 100%;
        padding: 60px 20px 30px;
    }
    
    .contacto-hero-header h1 {
        font-size: 48px;
    }
    
    .contacto-hero-header p {
        max-width: 600px;
        font-size: 16px;
    }
    
    /* Sección con fondo - Mantener igual */
    .contacto-hero {
        padding: 300px 20px 100px;
        margin: -25px auto 0;
    }
    
    /* Contenedor - Mantener ancho máximo de 1200px */
    .contacto-hero-container {
        max-width: 1200px;
        margin: -35px auto 0;
        grid-template-columns: 45% 55%;
    }
    
    /* NO modificar ningún otro estilo */
    /* Todo se mantiene exactamente igual */
}

/* -------------------------------------- */
/* PANTALLAS MUY GRANDES (más de 1920px) */
/* Monitores 4K, 5K, ultrawide, TVs */
/* -------------------------------------- */
@media screen and (min-width: 1921px) {
    
    /* Header */
    .contacto-hero-header {
        padding: 80px 20px 40px;
    }
    
    /* Sección con fondo */
    .contacto-hero {
        padding: 350px 20px 120px;
    }
    
    /* Contenedor - SIEMPRE 1200px máximo */
    .contacto-hero-container {
        max-width: 1200px;
        margin: -35px auto 0;
    }
    
    /* Todo lo demás se mantiene EXACTAMENTE igual */
}

/* -------------------------------------- */
/* PANTALLAS ULTRA GRANDES (más de 2560px) */
/* Monitores 8K, configuraciones multi-monitor */
/* -------------------------------------- */
@media screen and (min-width: 2561px) {
    
    /* Contenedor - SIEMPRE 1200px máximo, centrado */
    .contacto-hero-container {
        max-width: 1200px;
        margin: -35px auto 0;
    }
    
    /* Header con más padding superior */
    .contacto-hero-header {
        padding: 100px 20px 50px;
    }
    
    /* Sección con más padding vertical */
    .contacto-hero {
        padding: 400px 20px 150px;
    }
    
    /* Todos los estilos internos se mantienen iguales */
}
/*-----------------------------------------------------------------------------------------------------------------------------*/












/* -------------------------------------- */
/* === Sección "Footer" === */
/* -------------------------------------- */
.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.footer-main {
    /*background-color: #F5F1E8;*/
    padding: 40px 50px;
}

.footer-container {
    max-width: 1325px;
    margin: 0 auto;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* -------------------------------------- */
/* COLUMNA IZQUIERDA - INFO */
/* -------------------------------------- */
.footer-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Logo y Redes Sociales en la misma línea */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

/* Redes Sociales al lado del logo */
.footer-socials {
    display:flex;
    gap: 15px;
}

.social-link {
    width: 35px;
    height: 35px;
    /*border: 2px solid #333;*/
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 7px;
}

.social-link:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(0) invert(1);
}

.footer-descripcion {
    color: #666;
    font-size: 26px;
    line-height: 1.7;
    max-width: 400px;
    font-style: italic;
}

/* -------------------------------------- */
/* COLUMNAS DE NAVEGACIÓN */
/* -------------------------------------- */
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-left: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-column a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column a:hover {
    color: #C7698D;
    padding-left: 5px;
}

/* -------------------------------------- */
/* FOOTER INFERIOR - CENTRADO */
/* -------------------------------------- */
.footer-bottom {
    background-color: #B8B8B8;
    padding: 5px 50px;
}

.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-terms a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-terms a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-copyright {
    color: #333;
    font-size: 14px;
}





/* -------------------------------------- */
/* TABLETS (entre 768px y 1024px) */
/* -------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    * {
        box-sizing: border-box;
    }


    /* -------------------------------------- */
    /* Estilos del Header */
    /* -------------------------------------- */
    header {
        padding: 12px 30px;
    }

    .logo {
        height: 50px;
    }

    nav {
        gap: 25px;
    }

    nav a {
        font-size: 15px;
    }

    .btn-contacto {
        padding: 10px 22px;
        font-size: 15px;
    }







    /* -------------------------------------- */
    /* Estilos del FORMULARIO DE CONTACTO */
    /* -------------------------------------- */
    .contacto-hero-header {
        padding: 50px 30px 25px;
    }
    
    .contacto-hero-header h1 {
        font-size: 42px;
    }
    
    .contacto-hero-header p {
        font-size: 15px;
        max-width: 550px;
    }
    
    /* Sección con fondo */
    .contacto-hero {
        padding: 250px 30px 80px;
    }
    
    /* Contenedor principal */
    .contacto-hero-container {
        max-width: 95%;
        grid-template-columns: 45% 55%;
        margin: -30px auto 0;
    }
    
    /* Bloque izquierdo */
    .contacto-hero-info {
        padding: 40px 30px;
        gap: 20px;
    }
    
    .contacto-hero-info h2 {
        font-size: 24px;
    }
    
    .contacto-hero-subtitle {
        font-size: 14px;
    }
    
    .contacto-label {
        font-size: 13px;
    }
    
    .contacto-value {
        font-size: 13px;
    }
    
    /* Bloque derecho */
    .contacto-hero-form {
        padding: 40px 35px;
    }
    
    .contacto-hero-form h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 14px;
    }





    /* -------------------------------------- */
    /* === Sección "Footer" === */
    /* -------------------------------------- */
    .footer-main {
        padding: 50px 40px;
    }
    
    .footer-container {
        gap: 60px;
    }
    
    .footer-links {
        gap: 40px;
        padding-left: 20px;
    }
    
    .footer-column {
        gap: 15px;
    }
    
    .footer-column a {
        font-size: 15px;
    }
    
    .footer-descripcion {
        font-size: 14px;
        max-width: 350px;
    }
    
    .footer-bottom {
        padding: 18px 40px;
    }
}