/* ============================================
   MUJERES DEL PUEBLO SINALOA - NUEVO DISEÑO
   Drawer Nav + Zigzag Layout + Rosa Coral/Lila
   ============================================ */

:root {
    --coral: #F4A698;
    --coral-dark: #E07A6E;
    --coral-light: #FDDCD7;
    --lila: #C8B8DB;
    --lila-dark: #A894C0;
    --lila-light: #E8E0F0;
    --dorado: #D4AF37;
    --dorado-light: #E5C76B;
    --rosa: #F8E1E4;
    --blanco: #FFFFFF;
    --negro: #1A1A2E;
    --gris: #6B6B7B;
    --gris-claro: #F5F5F7;
    
    --fuente-titulos: 'Cormorant Garamond', serif;
    --fuente-cuerpo: 'Inter', sans-serif;
    
    --sombra: 0 10px 40px rgba(244, 166, 152, 0.2);
    --sombra-fuerte: 0 20px 60px rgba(244, 166, 152, 0.3);
    
    --radio: 16px;
    --radio-lg: 24px;
    --transicion: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-cuerpo);
    color: var(--negro);
    background: var(--blanco);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fuente-titulos);
    font-weight: 600;
}

/* ============================================
   DRAWER NAVIGATION
   ============================================ */
.drawer-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: linear-gradient(180deg, var(--coral) 0%, var(--lila) 100%);
    z-index: 1001;
    transform: translateX(-100%);
    transition: var(--transicion);
    display: flex;
    flex-direction: column;
}

.drawer-nav.open {
    transform: translateX(0);
}

.drawer-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.drawer-logo {
    height: 60px;
}

.drawer-close {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: var(--blanco);
    cursor: pointer;
    transition: var(--transicion);
}

.drawer-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.drawer-menu {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.drawer-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: var(--radio);
    color: var(--blanco);
    text-decoration: none;
    transition: var(--transicion);
}

.drawer-link:hover,
.drawer-link.active {
    background: rgba(255,255,255,0.2);
}

.link-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.drawer-footer {
    padding: 30px;
    display: flex;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.drawer-social {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--blanco);
    text-decoration: none;
    transition: var(--transicion);
}

.drawer-social:hover {
    background: var(--blanco);
    color: var(--coral);
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transicion);
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   FIXED HEADER
   ============================================ */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 999;
    transition: var(--transicion);
}

.fixed-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.menu-toggle {
    width: 45px;
    height: 45px;
    background: var(--blanco);
    border: none;
    border-radius: 50%;
    color: var(--coral);
    cursor: pointer;
    box-shadow: var(--sombra);
    transition: var(--transicion);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.header-logo img {
    height: 45px;
    transition: var(--transicion);
}

.fixed-header.scrolled .header-logo img {
    height: 38px;
}

.header-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blanco);
    border-radius: 50%;
    color: var(--coral);
    text-decoration: none;
    box-shadow: var(--sombra);
    transition: var(--transicion);
}

.header-btn:hover {
    background: var(--coral);
    color: var(--blanco);
    transform: scale(1.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(244, 166, 152, 0.85) 0%,
        rgba(200, 184, 219, 0.75) 50%,
        rgba(212, 175, 55, 0.6) 100%
    );
}

.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 100px 30px;
    color: var(--blanco);
    z-index: 1;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.1;
}

.title-accent {
    font-weight: 600;
    color: var(--dorado-light);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--blanco);
    color: var(--coral-dark);
    border-radius: var(--radio-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transicion);
    border: none;
    box-shadow: var(--sombra);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-fuerte);
    color: var(--coral-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--blanco);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radio-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transicion);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--blanco);
    color: var(--blanco);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--dorado);
    color: var(--negro);
    border-radius: var(--radio-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transicion);
    border: none;
}

.btn-gold:hover {
    background: var(--dorado-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--negro);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    display: block;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--blanco), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.zigzag-bg {
    position: absolute;
    inset: 0;
    background: var(--rosa);
    z-index: -1;
}

.zigzag-bg.bg-dark {
    background: linear-gradient(135deg, var(--negro) 0%, #2D2D3A 100%);
}

/* Section Typography */
.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--coral-light);
    border-radius: var(--radio-lg);
    color: var(--coral-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-tag.tag-gold {
    background: rgba(212, 175, 55, 0.2);
    color: var(--dorado);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--negro);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title.title-light {
    color: var(--blanco);
}

.section-body p {
    color: var(--gris);
    margin-bottom: 20px;
    line-height: 1.8;
}

.section-body p.lead {
    font-size: 1.1rem;
    color: var(--negro);
}

.section-body p.lead.lead-light {
    color: rgba(255,255,255,0.9);
}

.section-body p.body-light {
    color: rgba(255,255,255,0.7);
}

.section-body strong {
    color: var(--coral-dark);
    font-weight: 600;
}

/* ============================================
   ZIGZAG LAYOUT
   ============================================ */
.zigzag-text {
    padding: 40px;
}

.text-wrapper {
    max-width: 500px;
}

.text-wrapper.light {
    color: var(--blanco);
}

.stats-row {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--coral-light);
    border-bottom: 1px solid var(--coral-light);
}

.stat-box {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--fuente-titulos);
    font-size: 3rem;
    font-weight: 600;
    color: var(--coral-dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gris);
    margin-top: 5px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coral-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transicion);
}

.text-link:hover {
    gap: 12px;
}

.text-link.link-coral {
    color: var(--coral-dark);
}

.zigzag-visual {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card {
    position: relative;
    border-radius: var(--radio-lg);
    overflow: hidden;
    box-shadow: var(--sombra-fuerte);
}

.image-card img {
    width: 100%;
    max-width: 500px;
    display: block;
}

.card-glow {
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--coral), var(--lila));
    opacity: 0.3;
    filter: blur(30px);
    z-index: -1;
}

.image-frame {
    position: relative;
}

.image-frame img {
    width: 100%;
    border-radius: var(--radio-lg);
    box-shadow: var(--sombra-fuerte);
}

.frame-border {
    position: absolute;
    inset: -15px;
    border: 3px solid var(--dorado);
    border-radius: calc(var(--radio-lg) + 15px);
    opacity: 0.3;
    z-index: -1;
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.9);
}

.feature-check {
    color: var(--dorado);
}

/* ============================================
   CARDS GRID SECTION
   ============================================ */
.section-cards {
    background: linear-gradient(180deg, var(--lila-light) 0%, var(--blanco) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gris);
    margin-top: 20px;
}

.cards-grid {
    align-items: stretch;
}

.info-card {
    background: var(--blanco);
    border-radius: var(--radio-lg);
    overflow: hidden;
    box-shadow: var(--sombra);
    height: 100%;
}

.card-image {
    position: relative;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-overlay {
    padding: 30px;
}

.card-overlay p {
    color: var(--gris);
    line-height: 1.8;
    margin: 0;
}

.card-overlay strong {
    color: var(--coral-dark);
}

.card-services {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gris-claro);
    border-radius: var(--radio);
    transition: var(--transicion);
}

.service-box:hover {
    transform: translateX(10px);
    background: var(--coral-light);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--coral);
    border-radius: 50%;
    color: var(--blanco);
}

.service-box h4 {
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
    font-weight: 600;
    color: var(--negro);
    margin: 0;
}

.card-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-text p {
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ============================================
   MASONRY SECTION
   ============================================ */
.section-masonry {
    background: var(--blanco);
}

.masonry-text {
    padding: 40px;
}

.text-sticky {
    position: sticky;
    top: 100px;
}

.text-sticky .lead {
    font-size: 1.1rem;
    color: var(--gris);
    line-height: 1.8;
    margin-bottom: 30px;
}

.text-sticky .lead strong {
    color: var(--coral-dark);
}

.masonry-content {
    padding: 40px;
}

.masonry-image {
    margin-bottom: 30px;
}

.masonry-image img {
    width: 100%;
    border-radius: var(--radio-lg);
    box-shadow: var(--sombra-fuerte);
}

.masonry-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.edu-card {
    background: var(--blanco);
    padding: 30px;
    border-radius: var(--radio);
    box-shadow: var(--sombra);
    transition: var(--transicion);
}

.edu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-fuerte);
}

.card-num {
    display: block;
    font-family: var(--fuente-titulos);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--coral);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
}

.edu-card h4 {
    font-family: var(--fuente-cuerpo);
    font-size: 1rem;
    font-weight: 600;
    color: var(--negro);
    margin-bottom: 10px;
}

.edu-card p {
    font-size: 0.9rem;
    color: var(--gris);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coral) 0%, var(--lila) 50%, var(--dorado) 100%);
    opacity: 0.95;
    z-index: -1;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: var(--blanco);
}

.cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--blanco);
    border-radius: 50%;
    margin-bottom: 30px;
    color: var(--coral);
}

.cta-icon .material-icons-round {
    font-size: 36px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-text strong {
    color: var(--dorado-light);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--negro);
    padding: 80px 40px 40px;
}

.footer-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--gris);
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blanco);
    text-decoration: none;
    transition: var(--transicion);
}

.footer-links a:hover {
    color: var(--coral);
}

.footer-divider {
    color: var(--gris);
}

.footer-copy {
    color: var(--gris);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .drawer-nav {
        width: 280px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .zigzag-text,
    .zigzag-visual {
        padding: 30px;
    }
    
    .masonry-text,
    .masonry-content {
        padding: 30px;
    }
    
    .text-sticky {
        position: relative;
        top: 0;
    }
    
    .masonry-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .fixed-header {
        padding: 0 20px;
        height: 60px;
    }
    
    .hero-content {
        padding: 80px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-outline,
    .btn-gold {
        width: 100%;
        justify-content: center;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-divider {
        display: none;
    }
}

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

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--rosa);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--coral), var(--lila));
    border-radius: 4px;
}
