/* ====================================================
   BREIDY VARGAS — ABOGACÍA MODERNA
   Design System | styles.css
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Colors - Premium Light Theme */
    --bg-primary:       #FAF8F5;
    --bg-secondary:     #F4F1EC;
    --bg-card:          rgba(255, 255, 255, 0.65);
    --bg-card-hover:    rgba(255, 255, 255, 0.85);

    --color-primary:    #227B6B;
    --color-primary-light: #339E8C;
    --color-primary-dark:  #145A4D;
    --color-accent:     #C56E4A;

    --text-primary:     #0C1110;
    --text-secondary:   #2C3835;
    --text-muted:       #5C6E6A;

    --border-color:     rgba(34, 123, 107, 0.15);
    --border-light:     rgba(34, 123, 107, 0.08);

    --glass-bg:         rgba(250, 248, 245, 0.85);
    --glass-blur:       blur(20px);

    --font-display:     'Cormorant Garamond', Georgia, serif;
    --font-body:        'Plus Jakarta Sans', system-ui, sans-serif;

    --radius-sm:        8px;
    --radius-md:        14px;
    --radius-lg:        22px;
    --radius-pill:      100px;

    --section-padding:  50px 0;
    --container-pad:    clamp(20px, 5vw, 48px);
    --transition-base:  0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --z-sticky:         100;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Seamless Gradient Background for entire page */
/* Seamless Gradient Background per section for visual separation */
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    position: relative;
}

/* Background: fixed diagonal gradient + floating blobs */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background: linear-gradient(
        135deg,
        #EEF6F4 0%,
        #FDF6EE 25%,
        #EAF5F2 50%,
        #FEF4EC 75%,
        #EAF0F5 100%
    );
    background-size: 400% 400%;
    animation: gradientShift 18s ease infinite;
}
@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Floating Blobs — more saturated & visible */
.bg-blobs-container {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    mix-blend-mode: multiply;
    animation: floatBlob 20s infinite alternate ease-in-out;
}
.blob-1 {
    top: 5vh;
    right: 3%;
    width: 560px;
    height: 560px;
    background: radial-gradient(circle, #F4C97A, #EDA96A);
}
.blob-2 {
    top: 80vh;
    left: -3%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7ED8C8, #4FB9A5);
    animation-delay: 3s;
}
.blob-3 {
    top: 180vh;
    right: -3%;
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, #F5D98B, #ECC870);
    animation-delay: 6s;
}
.blob-4 {
    top: 270vh;
    left: 5%;
    width: 620px;
    height: 620px;
    background: radial-gradient(circle, #E8A8B5, #D98FA0);
    animation-delay: 9s;
}
@keyframes floatBlob {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(50px, -70px) scale(1.12); }
    66%  { transform: translate(-30px, 40px) scale(0.92); }
    100% { transform: translate(20px, -20px) scale(1.05); }
}

/* ── Stacking Cards Effect (Tarjetas que suben) ─────────────────────────────── */
.sticky-card {
    position: relative; /* Default, overridden by JS */
    will-change: transform;
}
.hero-full {
    z-index: 1;
}
.sticky-card:not(.hero-full) {
    border-top-left-radius: 48px;
    border-top-right-radius: 48px;
    box-shadow: 0 -30px 60px rgba(0, 0, 0, 0.15), 0 -2px 0 rgba(255,255,255,0.7);
    margin-top: -60px; /* Overlap anterior section */
    padding-top: 100px;
    padding-bottom: 120px; /* EVITAR CORTE DE TEXTO AL FINAL */
}
.about-section {
    z-index: 10;
    margin-top: -80px;
    background: rgba(243, 245, 247, 0.7) !important; /* Gris sutil blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.services-section {
    z-index: 11;
    background: rgba(230, 244, 241, 0.7) !important; /* Esmeralda sutil blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.calendar-section {
    z-index: 12;
    background: rgba(243, 245, 247, 0.7) !important; /* Gris sutil blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.contact-faq-section {
    z-index: 13;
    background: rgba(230, 244, 241, 0.7) !important; /* Esmeralda sutil blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

a { color: inherit; text-decoration: none; transition: all var(--transition-base); }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--text-primary); font-weight: 700; line-height: 1.15; }
p { color: var(--text-secondary); text-align: justify; hyphens: auto; }
.text-center { text-align: center; }
.highlight { color: var(--color-accent); font-style: italic; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--container-pad); }
.section-padding { padding: 50px 0; }
.section-header { margin-bottom: 28px; }
.section-title { 
    font-family: 'Montserrat', sans-serif !important; 
    font-weight: 700 !important; 
    margin-bottom: 18px; 
    font-size: clamp(2rem, 4vw, 3.2rem); 
    line-height: 1.1; 
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.section-subtitle { font-size: 1.08rem; max-width: 600px; margin: 0 auto; text-align: center; }

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating Badge */
.floating-badge {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 123, 107, 0.2);
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    z-index: var(--z-sticky);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(34, 123, 107, 0.12);
}
.pulse {
    width: 10px; height: 10px;
    background-color: #10B981; 
    border-radius: 50%;
    position: relative;
}
.pulse::after {
    content: ''; position: absolute; inset: -4px; border-radius: 50%;
    border: 2px solid #10B981;
    animation: pulsate 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulsate {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

/* Header */
.main-header { position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky); padding: 20px 0; transition: all var(--transition-base); }
.main-header.scrolled { padding: 12px 0; background: var(--glass-bg); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--border-color); }
.header-container { display: flex; align-items: center; justify-content: space-between; max-width: 1180px; margin: 0 auto; padding: 0 var(--container-pad); }
.logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--color-primary); }
.logo span:first-child { color: var(--text-primary); }
.logo .dot { color: var(--color-accent); }
.nav-list { display: flex; gap: 6px; }
.nav-link { 
    font-size: 0.88rem; 
    font-weight: 500; 
    padding: 8px 18px; 
    border-radius: var(--radius-pill); 
    color: var(--text-secondary); 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
}
.nav-link:hover, .nav-link.active { 
    color: #FFFFFF !important; 
    background: linear-gradient(135deg, #10B981, #059669); 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.main-header:not(.scrolled) .nav-link { color: rgba(255, 255, 255, 0.85); }
.main-header:not(.scrolled) .nav-link:hover, .main-header:not(.scrolled) .nav-link.active { 
    color: #FFFFFF !important; 
    background: linear-gradient(135deg, #10B981, #059669); 
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.mobile-menu-btn { display: none; width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 8px; color: var(--text-primary); align-items: center; justify-content: center; }
.main-header:not(.scrolled) .mobile-menu-btn { color: #FFFFFF; border-color: rgba(255, 255, 255, 0.3); }
.mobile-menu-btn .icon-close { display: none; }
.mobile-menu-btn.open .icon-menu { display: none; }
.mobile-menu-btn.open .icon-close { display: block; }

/* Hero Full Background (100vh) */
.hero-full {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url('abogada_home.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero-gradient-overlay-full {
    position: absolute;
    inset: 0;
    /* Subtle gradient to ensure left text readability without masking the lawyer on the right */
    background: linear-gradient(to right, rgba(10, 15, 14, 0.85) 25%, rgba(10, 15, 14, 0.4) 55%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-content-left {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-text-wrapper {
    max-width: 600px; /* narrowed so it doesn't get close to her */
    text-align: left;
}
.hero-tagline {
    display: block;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1.2rem;
    font-weight: 300 !important; /* Montserrat Light */
    letter-spacing: 0.02em;
    text-transform: none;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.hero-full .hero-title-main {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700 !important; /* Montserrat Bold */
    font-size: clamp(2rem, 4.2vw, 3.2rem); /* optimized and smaller text */
    line-height: 1.15;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}
.hero-actions-left {
    display: flex;
    justify-content: flex-start;
}
.btn-hero-cta {
    background: linear-gradient(135deg, #10B981, #059669);
    color: #FFFFFF !important;
    border: none;
    padding: 18px 42px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}
.btn-hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.5), 0 0 20px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #34D399, #10B981);
}

/* Sobre Mí */
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }

.image-clean-wrapper {
    width: 100%;
    height: 580px;
    display: flex;
    align-items: flex-end; /* Align to bottom */
    justify-content: center;
    position: relative;
}
.image-clean-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom; /* Prioritize face, anchor bottom */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    transition: transform 0.6s ease;
}
.image-clean-wrapper:hover img {
    transform: scale(1.02);
}

.about-lead { font-size: 1.12rem; font-weight: 500; color: var(--text-primary); margin-bottom: 16px; }
.about-text { margin-bottom: 16px; }
.about-skills { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.skill-item { display: flex; flex-direction: column; gap: 6px; }
.skill-name { font-size: 0.84rem; font-weight: 600; color: var(--text-primary); }
.skill-bar { height: 5px; background: rgba(255,255,255,0.05); border-radius: var(--radius-pill); overflow: hidden; }
.skill-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--color-primary), var(--color-accent)); border-radius: var(--radius-pill); transform: scaleX(0); transform-origin: left; transition: transform 1.5s ease; }
.skill-bar span.animated { transform: scaleX(1); }

/* Servicios Carrusel Infinito */
.carousel-container { display: flex; align-items: center; gap: 16px; position: relative; }
.carousel-viewport { overflow: hidden; width: 100%; padding: 20px 0; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.4s ease-out; }
.slide {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1.5px solid rgba(34, 123, 107, 0.15);
    box-shadow: 0 12px 30px rgba(34, 123, 107, 0.07);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.slide::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, transparent 40%, rgba(51,158,140,0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}
.slide:hover::before { opacity: 1; }
.slide > * { position: relative; z-index: 1; }
.slide:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 24px 48px rgba(34, 123, 107, 0.14),
                0 0 0 1px rgba(51,158,140,0.3),
                0 0 20px rgba(51,158,140,0.25);
}
.service-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.service-icon-inline { width: 28px; height: 28px; color: var(--color-primary); flex-shrink: 0; }
.slide h3 { font-size: 1.25rem; margin-bottom: 0; line-height: 1.2; }
.slide p { font-size: 0.93rem; }

.carousel-control {
    width: 48px; height: 48px; border-radius: 50%; background: var(--bg-card); border: 1px solid var(--border-color);
    display: flex; align-items: center; justify-content: center; color: var(--text-primary); flex-shrink: 0;
    transition: all 0.2s; z-index: 10;
}
.carousel-control:hover { background: var(--color-primary); color: #fff; transform: scale(1.1); }

.calendar-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.calendar-info h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin-bottom: 20px; white-space: nowrap; }
.calendar-info p { margin-bottom: 30px; }
.price-badge { background: rgba(232, 146, 109, 0.12); padding: 12px 20px; border-radius: var(--radius-md); border: 1px solid rgba(232, 146, 109, 0.5); display: inline-block; margin-bottom: 30px; color: var(--text-primary); }
.price-badge strong { font-size: 1.3rem; color: var(--color-accent); display: block; }
.benefit-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; }
.benefit-list li svg { color: var(--color-primary); width: 20px; height: 20px; }

.calendar-ui {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1.5px solid rgba(34, 123, 107, 0.15);
    box-shadow: 0 20px 45px rgba(34, 123, 107, 0.08);
    transition: all var(--transition-base);
}
.calendar-ui:hover {
    border-color: var(--color-primary);
    box-shadow: 0 28px 56px rgba(34, 123, 107, 0.12),
                0 0 0 1px rgba(51,158,140,0.25),
                0 0 24px rgba(51,158,140,0.2);
}
.calendar-header-ui { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.calendar-header-ui h3 { font-family: var(--font-body); font-size: 1.2rem; margin: 0; }
.calendar-header-ui button { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border-light); display: flex; justify-content: center; align-items: center; color: var(--text-primary); }
.calendar-header-ui button:hover { background: rgba(255,255,255,0.05); }
.calendar-days-header { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 10px; }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 24px; }
.cal-day { aspect-ratio: 1; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; font-weight: 600; color: var(--text-primary); cursor: pointer; transition: all 0.2s; border: 1px solid transparent; }
.cal-day:hover:not(.disabled) { border-color: var(--color-primary); }
.cal-day.disabled { color: var(--text-muted); opacity: 0.3; cursor: not-allowed; }
.cal-day.selected { background: var(--color-primary); color: #000; box-shadow: 0 4px 12px rgba(78,205,180,0.4); }

.time-selection h4 { font-size: 0.95rem; margin-bottom: 12px; font-family: var(--font-body); }
.time-slots { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
.time-btn { padding: 12px; border: 1px solid var(--border-color); border-radius: 8px; font-weight: 600; color: var(--text-primary); transition: all 0.2s; }
.time-btn:hover { border-color: var(--color-primary); background: rgba(255,255,255,0.05); }
.time-btn.selected { background: var(--color-primary); color: #000; border-color: var(--color-primary); }
.secure-text { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* Contacto y FAQ */
.contact-faq-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-direct, .faq-container {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    padding: 45px;
    box-shadow: 0 15px 40px rgba(34, 123, 107, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}
.contact-direct {
    text-align: center;
}
.contact-direct p {
    text-align: center;
}
.contact-direct h3, .faq-container h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 24px; text-align: left; }
.contact-direct h3 { text-align: center; }

/* Modern Social Glass Icons */
.social-glass-links {
    display: flex; gap: 20px;
    margin-top: 30px;
    justify-content: center;
}
.glass-icon-btn {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid rgba(16, 185, 129, 0.5); /* Verde esmeralda por defecto */
    display: flex; align-items: center; justify-content: center;
    color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
}
.glass-icon-btn::before {
    content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(255,255,255,0.1), transparent); opacity: 0; transition: opacity 0.4s;
}
.glass-icon-btn:hover {
    transform: translateY(-8px) scale(1.05);
    color: #fff;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}
.glass-icon-btn:hover::before { opacity: 1; }
.glass-icon-btn svg { width: 28px; height: 28px; z-index: 1; transition: all 0.3s; }
.whatsapp:hover { background: #25D366; border-color: #25D366; }
.email:hover { background: var(--color-accent); border-color: var(--color-accent); }
.linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.google-review:hover { background: #FBBC05; border-color: #FBBC05; }
.google-review svg { color: #F59E0B; }
.google-review:hover svg { color: #fff; }

/* FAQs */
.faq-item {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(34, 123, 107, 0.12);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: 0 6px 18px rgba(34, 123, 107, 0.04);
    transition: all var(--transition-base);
}
.faq-question {
    width: 100%; display: flex; justify-content: space-between;
    align-items: center; padding: 16px 20px;
    font-weight: 600; text-align: left;
    color: var(--text-primary);
}
.faq-icon { width: 18px; height: 18px; color: var(--text-muted); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--color-accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; padding: 0 20px; color: var(--text-secondary); }
.faq-item.open .faq-answer { max-height: 200px; padding: 0 20px 16px; }
.faq-item:hover {
    border-color: var(--color-accent);
    box-shadow: 0 14px 28px rgba(197, 110, 74, 0.14),
                0 0 0 1px rgba(197,110,74,0.2),
                0 0 16px rgba(197,110,74,0.18);
    transform: translateY(-2px);
}
.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: 0 14px 28px rgba(34, 123, 107, 0.1),
                0 0 0 1px rgba(34,123,107,0.2),
                0 0 14px rgba(34,123,107,0.18);
}

/* Footer */
.main-footer { 
    z-index: 14; 
    padding-top: 80px; 
    background: rgba(243, 245, 247, 0.7) !important; /* Gris sutil blur */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-height: 85vh; /* Asegura el scroll para el efecto parallax */
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 48px; padding: 40px var(--container-pad) 64px; }
.footer-slogan {
    font-family: 'Montserrat', sans-serif !important;
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700 !important;
    color: var(--color-primary-dark);
    line-height: 1.35;
    margin-top: 10px;
    text-align: left;
    text-wrap: balance;
    hyphens: none !important;
}
.footer-links h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-links p { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--color-primary); }
.footer-bottom { border-top: 1px solid var(--border-light); padding: 20px var(--container-pad); text-align: center; color: var(--text-muted); }
.footer-bottom p { text-align: center; justify-content: center; margin: 0 auto; hyphens: none; }

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed; inset: 0; background: var(--glass-bg); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
        z-index: 200; display: flex; flex-direction: column; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s;
    }
    .nav-menu.open { opacity: 1; pointer-events: auto; }
    .nav-list { flex-direction: column; align-items: center; gap: 16px; }
    .nav-link { font-size: 1.4rem; padding: 12px 20px; }
    .mobile-menu-btn { display: flex; z-index: 201; }
    
    .hero-full .hero-title-main { font-size: clamp(1.8rem, 6vw, 2.8rem); }
    .hero-gradient-overlay-full { background: linear-gradient(to top, rgba(10, 15, 14, 0.95) 45%, rgba(10, 15, 14, 0.6) 100%); }
    .calendar-info h2 { white-space: normal; }
    .hero-text-wrapper { text-align: center; margin: 0 auto; }
    .hero-actions-left { justify-content: center; }
    .about-grid, .calendar-wrapper, .contact-faq-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .slide { flex: 0 0 calc(50% - 12px); }
    .floating-badge { bottom: 20px; left: 20px; font-size: 0.75rem; padding: 8px 16px; }
    .image-clean-wrapper { height: 400px; }
}
@media (max-width: 600px) {
    .slide { flex: 0 0 100%; }
}
