/* ==========================================
   VARIABLES Y RESET
   ========================================== */
:root {
    --primary-color: #D81979;
    --primary-hover: #b81264;
    --accent-color: #F0AA3A; /* Color activo destacado */
    --bg-color: #FFFFFF;
    --text-color: #555555;
    --heading-color: #1A1A1A;
    --footer-bg: #111111;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1050px;
    --header-height: 70px;
    --bottom-nav-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    padding-bottom: var(--bottom-nav-height);
}

body.no-scroll {
    overflow: hidden;
}

@media (min-width: 992px) {
    body {
        padding-bottom: 0;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HEADER & LOGO NÍTIDO
   ========================================== */
.site-header {
    background-color: var(--primary-color);
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

/* Optimización de nitidez para el logo PNG */
.logo img {
    max-height: 42px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    transform: translateZ(0);
}

/* Menú Escritorio */
.desktop-nav {
    display: none;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 18px;
    align-items: center;
}

.desktop-nav a {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    position: relative;
    padding: 4px 0;
}

.desktop-nav a:hover {
    color: var(--accent-color);
}

/* Estado activo resaltado en dorado */
.desktop-nav a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.desktop-nav a.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    border-radius: 2px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

.social-links a {
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

/* Botón Menú Móvil */
.mobile-menu-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: var(--font-main);
    z-index: 1002;
}

/* ==========================================
   MENÚ FULLSCREEN MÓVIL
   ========================================== */
.mobile-fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(216, 25, 121, 0.98);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-fullscreen-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 20px;
}

.mobile-nav-content ul {
    list-style: none;
    margin-bottom: 35px;
}

.mobile-nav-content li {
    margin-bottom: 20px;
}

.mobile-nav-content a.mobile-link {
    color: #FFFFFF;
    font-size: 1.35rem;
    font-weight: 600;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.mobile-nav-content a.mobile-link.active {
    color: var(--accent-color);
    font-weight: 700;
}

.mobile-nav-content a.mobile-link:active {
    transform: scale(0.95);
}

.mobile-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 25px;
    width: 80%;
    max-width: 300px;
}

.mobile-social-links a {
    color: #FFFFFF;
    font-size: 1.4rem;
    transition: color 0.2s ease;
}

.mobile-social-links a:hover {
    color: var(--accent-color);
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
    }
    .mobile-menu-btn,
    .mobile-fullscreen-nav {
        display: none !important;
    }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    width: 100%;
}

.hero-container {
    width: 100%;
}

.hero-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-section {
        padding-top: 35px;
    }

    .hero-container {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    .hero-container img {
        border-radius: 16px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    }
}

/* ==========================================
   CONTENIDO PRINCIPAL Y GRID DE SECCIONES
   ========================================== */
.main-content {
    padding: 35px 0 60px 0;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: #444444;
}

.team-image-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.team-image-container img {
    width: 100%;
    border-radius: 12px;
}

/* ==========================================
   FOOTER (Oculto en dispositivos móviles)
   ========================================== */
.site-footer {
    background-color: var(--footer-bg);
    color: #A0A0A0;
    padding: 22px 0;
    font-size: 0.85rem;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.site-footer a {
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .site-footer {
        display: none !important;
    }
}

@media (min-width: 768px) and (min-width: 992px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ==========================================
   BOTTOM NAVIGATION BAR (Móvil Sticky)
   ========================================== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--bottom-nav-height);
    background-color: var(--primary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 500;
    gap: 3px;
    flex: 1;
    text-align: center;
    transition: color 0.2s ease;
}

.bottom-nav-item i {
    font-size: 1.1rem;
}

.bottom-nav-item.active {
    color: var(--accent-color);
    font-weight: 700;
    opacity: 1;
}

.bottom-nav-item:not(.active) {
    opacity: 0.85;
}

@media (min-width: 992px) {
    .bottom-nav {
        display: none;
    }
}

/* ==========================================
   SECCIONES CON BANNERS Y BLOQUES
   ========================================== */
.section-block {
    margin-bottom: 50px;
}

.section-banner {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* ==========================================
   ESTILOS FORMULARIO SUMATE
   ========================================== */
.form-section {
    max-width: 800px;
    margin: 20px auto 60px auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.9rem;
    color: #666666;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #333333;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(216, 25, 121, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #AAAAAA;
}

.submit-btn {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: none;
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--primary-hover);
}

.submit-btn:active {
    transform: scale(0.99);
}

.email-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
    text-align: center;
}

.email-info-block i {
    font-size: 2.8rem;
    color: #555555;
}

.email-info-block a {
    color: #666666;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.email-info-block a:hover {
    color: var(--primary-color);
}

/* ==========================================
   ESTILOS ELECCIONES (Listas y Subtítulos)
   ========================================== */
.text-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    margin-top: 25px;
    margin-bottom: 5px;
}

.text-block .subtitle-intro {
    margin-bottom: 15px;
}

.custom-list {
    margin-left: 20px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-list li {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

ul.custom-list {
    list-style-type: disc;
}

ol.custom-list.ordered {
    list-style-type: decimal;
}