/* ============================================
   LOS 50 DE ARA - NOCHE DORADA
   Elegant birthday invitation styles
   ============================================ */

:root {
    --bg-main: #fdf5f7;
    --bg-dark: #f3e8ee;
    --bg-card: #ffffff;
    --black: #3b2040;
    --black-soft: #4e3055;
    --text-primary: #3b2040;
    --text-body: #5a4060;
    --text-light: #9a8a9e;
    --accent: #d4829e;
    --accent-light: #e8b4c8;
    --accent-dark: #b8607e;
    --lila: #b8a0d2;
    --lila-light: #d5c8e8;
    --lila-dark: #8a6cb0;
    --rose: #e8a0b8;
    --rose-light: #f5d0de;
    --white: #ffffff;
    --font-display: 'Cinzel Decorative', serif;
    --font-heading: 'Cinzel', serif;
    --font-nav: 'Playfair Display', serif;
    --font-nav-links: 'Montserrat', sans-serif;
    --font-body: 'Cormorant Garamond', serif;
    --font-script: 'Great Vibes', cursive;
}

/* ========= RESET ========= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: var(--font-body);
    font-size: 1.15rem;
    background-color: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========= FADE IN ANIMATIONS ========= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========= SPARKLE ========= */
.sparkle {
    color: var(--accent);
    font-size: 0.85em;
}

/* ========= NAVBAR ========= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(59, 32, 64, 0.08);
    padding: 12px 40px;
}

.navbar.scrolled .nav-brand {
    color: var(--text-primary);
}

.navbar.scrolled .nav-links a {
    color: var(--text-body);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--accent-dark);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-brand {
    font-family: var(--font-nav);
    font-size: 0.95rem;
    color: var(--black);
    letter-spacing: 1.5px;
    font-weight: 600;
    font-style: italic;
}

.nav-links {
    display: none;
    gap: 32px;
    white-space: nowrap;
}

.nav-links a {
    font-family: var(--font-nav-links);
    font-size: 0.85rem;
    color: var(--black-soft);
    text-decoration: none;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: color 0.3s;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 80px 0 30px;
    gap: 5px;
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 8px 20px rgba(59, 32, 64, 0.08);
    min-height: 100vh;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu a {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--text-body);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 12px 20px;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--accent-dark);
}

/* ========= HERO ========= */
.hero {
    padding: 100px 20px 40px;
    display: flex;
    justify-content: center;
}

.hero-border {
    border: 1.5px solid var(--accent-light);
    border-radius: 4px;
    padding: 50px 40px 60px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    position: relative;
}

.hero-border::before,
.hero-border::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
}

.hero-border::before {
    top: -1px;
    left: -1px;
    border-top: 2px solid var(--accent);
    border-left: 2px solid var(--accent);
}

.hero-border::after {
    bottom: -1px;
    right: -1px;
    border-bottom: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
}

/* ========= VIDEO ========= */
.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}

.phone-frame {
    position: relative;
    width: 300px;
    height: 430px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px rgba(59, 32, 64, 0.2),
                0 0 0 2px var(--accent-light),
                0 0 0 5px rgba(212, 130, 158, 0.1);
    background: #000;
}

.phone-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play overlay (center of video) */
.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: opacity 0.3s;
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.phone-frame:hover .play-overlay:not(.hidden) {
    background: rgba(0, 0, 0, 0.35);
}

/* Expand button bottom-right */
.expand-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    z-index: 2;
}

.expand-btn:hover {
    background: rgba(0, 0, 0, 0.65);
    transform: scale(1.1);
}

/* ========= VIDEO MODAL ========= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 90vw;
    max-width: 480px;
    max-height: 85vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-modal-content video {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: #000;
    display: block;
    border-radius: 20px;
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s;
}

.video-modal-close:hover {
    background: rgba(0, 0, 0, 0.75);
}

/* ========= HERO TEXT ========= */
.hero-subtitle {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 400;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description {
    font-family: var(--font-body);
    font-size: 1.45rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    font-style: italic;
}

.hero-date {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--accent-dark);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}

/* ========= SECTION TITLES ========= */
.section-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title-dark {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 25px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-text {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--text-body);
    text-align: center;
    line-height: 1.8;
    max-width: 500px;
    margin: 0 auto 30px;
    font-weight: 300;
    font-style: italic;
}

/* ========= WATERMARK PATTERNS ========= */

/* Rosas grandes en esquinas opuestas */
.wm-roses {
    position: relative;
    overflow: hidden;
}
.wm-roses::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -30px;
    width: 280px;
    height: 280px;
    pointer-events: none;
    opacity: 0.16;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 25c-18-28-55-32-58 2s28 48 58 72c30-24 61-42 58-72s-40-30-58-2z' fill='%23b8607e'/%3E%3Cpath d='M100 48c-11-17-34-22-36 1s17 30 36 46c19-16 37-27 36-46s-25-18-36-1z' fill='%23d4829e'/%3E%3Ccircle cx='100' cy='75' r='6' fill='%238a4060' opacity='0.6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(15deg);
}
.wm-roses::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    opacity: 0.13;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 25c-18-28-55-32-58 2s28 48 58 72c30-24 61-42 58-72s-40-30-58-2z' fill='%238a6cb0'/%3E%3Cpath d='M100 48c-11-17-34-22-36 1s17 30 36 46c19-16 37-27 36-46s-25-18-36-1z' fill='%23b8a0d2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-25deg) scaleX(-1);
}

/* Pétalos sueltos flotando por los lados */
.wm-petals {
    position: relative;
    overflow: hidden;
}
.wm-petals::before {
    content: '';
    position: absolute;
    top: 15%;
    left: -20px;
    width: 180px;
    height: 300px;
    pointer-events: none;
    opacity: 0.18;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 300'%3E%3Cellipse cx='70' cy='45' rx='22' ry='35' transform='rotate(-30 70 45)' fill='%23b8607e'/%3E%3Cellipse cx='40' cy='130' rx='16' ry='28' transform='rotate(20 40 130)' fill='%238a6cb0'/%3E%3Cellipse cx='90' cy='200' rx='19' ry='32' transform='rotate(-15 90 200)' fill='%23d4829e'/%3E%3Cellipse cx='55' cy='265' rx='14' ry='24' transform='rotate(35 55 265)' fill='%23b8a0d2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.wm-petals::after {
    content: '';
    position: absolute;
    top: 5%;
    right: -25px;
    width: 160px;
    height: 280px;
    pointer-events: none;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 280'%3E%3Cellipse cx='80' cy='60' rx='20' ry='33' transform='rotate(25 80 60)' fill='%238a6cb0'/%3E%3Cellipse cx='100' cy='155' rx='17' ry='30' transform='rotate(-20 100 155)' fill='%23b8607e'/%3E%3Cellipse cx='60' cy='230' rx='15' ry='26' transform='rotate(40 60 230)' fill='%23b8a0d2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Flor grande esquina + ramita lateral */
.wm-bloom {
    position: relative;
    overflow: hidden;
}
.wm-bloom::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -15px;
    width: 250px;
    height: 250px;
    pointer-events: none;
    opacity: 0.16;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(0 100 100)' fill='%23d4829e'/%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(60 100 100)' fill='%23b8a0d2'/%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(120 100 100)' fill='%23e8b4c8'/%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(180 100 100)' fill='%23d5c8e8'/%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(240 100 100)' fill='%23d4829e'/%3E%3Cellipse cx='100' cy='55' rx='20' ry='42' transform='rotate(300 100 100)' fill='%23b8a0d2'/%3E%3Ccircle cx='100' cy='100' r='14' fill='%23e8b4c8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-20deg);
}
.wm-bloom::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.13;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 20Q130 60 140 100Q130 140 100 180Q70 140 60 100Q70 60 100 20Z' fill='%238a6cb0'/%3E%3Cpath d='M20 100Q60 70 100 60Q140 70 180 100Q140 130 100 140Q60 130 20 100Z' fill='%23b8607e'/%3E%3Ccircle cx='100' cy='100' r='12' fill='%23d4829e'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(30deg);
}

/* Flores dispersas asimétricas */
.wm-scatter {
    position: relative;
    overflow: hidden;
}
.wm-scatter::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 5%;
    width: 200px;
    height: 180px;
    pointer-events: none;
    opacity: 0.16;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 180'%3E%3Cpath d='M50 40c-10-16-34-18-36 0s16 28 36 44c20-16 38-26 36-44s-26-16-36 0z' fill='%23d4829e'/%3E%3Cellipse cx='150' cy='120' rx='12' ry='22' transform='rotate(-25 150 120)' fill='%23b8a0d2'/%3E%3Cellipse cx='160' cy='50' rx='10' ry='18' transform='rotate(30 160 50)' fill='%23e8b4c8'/%3E%3Ccircle cx='140' cy='85' r='5' fill='%23d5c8e8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(10deg);
}
.wm-scatter::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 3%;
    width: 170px;
    height: 160px;
    pointer-events: none;
    opacity: 0.13;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 160'%3E%3Cellipse cx='40' cy='50' rx='15' ry='28' transform='rotate(15 40 50)' fill='%23b8a0d2'/%3E%3Cpath d='M120 100c-8-13-26-15-28 0s13 22 28 35c15-13 30-20 28-35s-20-13-28 0z' fill='%23d4829e'/%3E%3Cellipse cx='90' cy='30' rx='9' ry='16' transform='rotate(-35 90 30)' fill='%23d5c8e8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-12deg);
}

/* ========= EVENTO MEMORABLE SECTION ========= */
.section-dorada {
    padding: 60px 20px;
    text-align: center;
}

.features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lila-dark);
}

.feature-label {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--text-body);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ========= COUNTDOWN ========= */
.section-countdown {
    padding: 50px 20px 60px;
    text-align: center;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    background: var(--white);
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(184, 160, 210, 0.2);
    border: 1px solid var(--lila-light);
}

.countdown-label {
    font-family: var(--font-nav-links);
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 10px;
    font-weight: 500;
}

/* ========= LUGAR SECTION ========= */
.section-lugar {
    padding: 0;
}

.lugar-bg {
    background: var(--bg-dark);
    padding: 70px 20px;
}

.map-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.map-frame {
    padding: 15px 15px 0;
}

.map-frame iframe {
    border-radius: 12px;
}

.venue-info {
    padding: 25px;
    text-align: center;
}

.venue-name {
    font-family: var(--font-nav);
    font-size: 1.3rem;
    color: var(--black);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.venue-address {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--text-body);
    margin-bottom: 4px;
    font-weight: 300;
}

.venue-note {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 18px;
    font-style: italic;
}

.btn-map {
    display: inline-block;
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--white);
    background: var(--accent-dark);
    padding: 11px 30px;
    border-radius: 25px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 500;
    border: 1px solid transparent;
}

.btn-map:hover {
    background: var(--lila-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 108, 176, 0.3);
}

/* ========= DRESS CODE ========= */
.section-dresscode {
    padding: 60px 20px;
    text-align: center;
}

.dresscode-subtitle {
    font-family: var(--font-nav);
    font-size: 1.5rem;
    color: var(--accent-dark);
    margin-bottom: 12px;
    font-weight: 600;
    font-style: italic;
}

/* ========= PLAYERA / VESTIMENTA ========= */
.playera-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 480px;
    margin: 0 auto 30px;
}

.playera-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background: var(--white);
}

.playera-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.playera-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.playera-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-playera {
    display: inline-block;
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--white);
    background: var(--accent);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 130, 158, 0.3);
}

.btn-playera:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 130, 158, 0.45);
}

/* ========= DIVIDER ========= */
.divider {
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* ========= INFO SECTION ========= */
.section-info {
    padding: 50px 20px 60px;
    text-align: center;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 30px auto 0;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 180px;
    gap: 8px;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.info-title {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--black);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.5;
    font-weight: 300;
    font-style: italic;
}

/* ========= CTA SECTION ========= */
.section-cta {
    padding: 70px 20px 80px;
    text-align: center;
    background: var(--bg-dark);
}

.cta-deadline {
    font-family: var(--font-nav-links);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    font-weight: 400;
}

.btn-confirm {
    display: inline-block;
    font-family: var(--font-nav-links);
    font-size: 0.95rem;
    color: var(--white);
    background: var(--accent-dark);
    padding: 15px 45px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(184, 96, 126, 0.3);
}

.btn-confirm:hover {
    background: var(--lila-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(138, 108, 176, 0.4);
    color: var(--white);
}

/* ========= FOOTER ========= */
.footer {
    padding: 45px 20px;
    text-align: center;
    background: var(--text-primary);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--rose-light);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.footer-subtitle {
    font-family: var(--font-nav-links);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 400;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 850px) {

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .navbar {
        padding: 14px 20px;
    }

    .navbar.scrolled {
        padding: 10px 20px;
    }

    .hero {
        padding: 80px 15px 30px;
    }

    .hero-border {
        padding: 35px 20px 45px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .hero-description {
        font-size: 1.35rem;
    }

    .hero-description br {
        display: none;
    }

    .phone-frame {
        width: 250px;
        height: 360px;
    }

    .section-title,
    .section-title-dark {
        font-size: 1.6rem;
    }

    .section-text {
        font-size: 1.3rem;
    }

    .section-text br {
        display: none;
    }

    .features-grid {
        gap: 30px;
    }

    .countdown-number {
        font-size: 2rem;
        width: 60px;
        height: 60px;
    }

    .countdown {
        gap: 10px;
    }

    .info-grid {
        gap: 25px;
    }

    .info-card {
        max-width: 140px;
    }

    .playera-grid {
        max-width: 340px;
    }

    .playera-card img {
        height: 220px;
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .countdown-number {
        font-size: 1.6rem;
        width: 55px;
        height: 55px;
    }

    .info-grid {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 250px;
    }
}
