/* ==================== RESET & VARIÁVEIS ==================== */
:root {
    --rose-50: #FFF1F2;
    --rose-100: #FFE4E6;
    --rose-200: #FECDD3;
    --rose-300: #FDA4AF;
    --rose-400: #FB7185;
    --rose-500: #F43F5E;
    --rose-600: #E11D48;
    --rose-700: #BE123C;
    --rose-800: #9F1239;
    --rose-900: #881337;
    
    --pink-50: #FDF2F8;
    --pink-100: #FCE7F3;
    --pink-200: #FBCFE8;
    --pink-300: #F9A8D4;
    --pink-400: #F472B6;
    
    --sand-50: #FFFBF7;
    --sand-100: #FFF7F0;
    --sand-200: #FFEEE0;
    --sand-300: #FFE4CC;
    
    --purple-50: #FAF5FF;
    --purple-100: #F3E8FF;
    --purple-200: #E9D5FF;
    
    --stone-500: #78716C;
    --stone-600: #57534E;
    --stone-700: #44403C;
    --stone-800: #292524;
    --stone-900: #1C1917;
    
    --font-display: 'Playfair Display', serif;
    --font-body: 'Crimson Text', serif;
    --font-ui: 'Inter', sans-serif;
    
    --shadow-soft: 0 4px 24px rgba(225, 29, 72, 0.08);
    --shadow-medium: 0 8px 40px rgba(225, 29, 72, 0.12);
    --shadow-strong: 0 20px 60px rgba(225, 29, 72, 0.16);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--stone-700);
    background: linear-gradient(135deg, var(--sand-50) 0%, var(--rose-50) 50%, var(--pink-50) 100%);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ==================== ACESSIBILIDADE :FOCUS-VISIBLE ==================== */
:focus-visible {
    outline: 3px solid var(--rose-400);
    outline-offset: 3px;
    border-radius: 4px;
    transition: outline-offset 0.1s ease;
}
:focus-visible:hover {
    outline-offset: 4px;
}
.lightbox-content:focus-visible {
    outline: none;
}
.lightbox-close:focus-visible,
.lightbox-prev:focus-visible,
.lightbox-next:focus-visible {
    outline: 3px solid var(--rose-100);
    background: rgba(255, 255, 255, 0.2);
}


/* ==================== TIPOGRAFIA PREMIUM ==================== */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--stone-900);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    line-height: 1.8;
}

/* ==================== LAYOUT CONTAINERS ==================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-tight {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HEADER PREMIUM ==================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.main-header.scrolled::before {
    opacity: 1;
}

.main-header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-900);
    letter-spacing: -0.01em;
}

.header-cta {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--rose-500), var(--pink-400));
    color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(244, 63, 94, 0.3);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(244, 63, 94, 0.4);
}

/* ==================== HERO SOFISTICADO ==================== */
.section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--rose-50) 50%, var(--sand-50) 100%);
    padding: 8rem 0 4rem;
}

.hero-decorative {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 63, 94, 0.15) 0%, rgba(249, 168, 212, 0.1) 50%, transparent 70%);
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-decorative:nth-child(1) {
    top: -200px;
    right: -200px;
}

.hero-decorative:nth-child(2) {
    bottom: -300px;
    left: -100px;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(214, 69, 69, 0.2);
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose-700);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--rose-700) 0%, var(--pink-400) 50%, var(--rose-600) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    margin-bottom: 3rem;
    color: var(--stone-600);
    max-width: 600px;
    font-size: 1.5rem;
}

.cta-primary {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--pink-400) 100%);
    color: white;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(244, 63, 94, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-align: center;
}

.cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(244, 63, 94, 0.45);
}

/* ==================== SEÇÕES ELEGANTES ==================== */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-subtitle {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose-600);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-description {
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: var(--stone-600);
    font-size: 1.25rem;
}

/* ==================== CARDS PREMIUM ==================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(214, 69, 69, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--rose-500), var(--pink-400));
    border-radius: 24px 24px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    color: var(--rose-900);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.card p {
    color: var(--stone-600);
    line-height: 1.8;
}

/* ==================== SPLIT CONTENT ELEGANTE ==================== */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(214, 69, 69, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.split-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-section:hover .split-image img {
    transform: scale(1.05);
}

.split-content h3 {
    font-size: 1rem;
    font-family: var(--font-ui);
    font-weight: 600;
    color: var(--rose-600);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.split-content p {
    margin-bottom: 1.5rem;
    color: var(--stone-600);
}

/* ==================== TEAM GRID / CAROUSEL ==================== */
.team-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
    padding-bottom: 3.5rem; 
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.team-member p {
    font-size: 1rem;
    font-family: var(--font-ui);
    color: var(--rose-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .team-bio {
    font-family: var(--font-body);
    color: var(--stone-600);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
    margin: 0.5rem auto 0;
    font-weight: 600;
    flex-grow: 1;
}

.team-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-medium);
    border: 4px solid white;
    flex-shrink: 0;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-carousel .swiper-pagination-bullet {
    background: var(--rose-200);
    opacity: 0.7;
    width: 10px;
    height: 10px;
}
.team-carousel .swiper-pagination-bullet-active {
    background: var(--rose-600);
    opacity: 1;
}


/* ==================== GOOGLE MAPS ==================== */
.map-section {
    padding-top: 0;
}
.map-wrapper {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(214, 69, 69, 0.1);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 450px;
}
.map-cta {
    text-align: center;
    margin-top: 2.5rem;
}
.map-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: var(--rose-50);
    color: var(--rose-700);
    border: 2px solid var(--rose-200);
    transition: all 0.3s ease;
}
.map-cta a svg {
    flex-shrink: 0;
}
.map-cta a:hover {
    background: white;
    box-shadow: var(--shadow-medium);
    transform: translateY(-3px);
    border-color: var(--rose-300);
}

/* ==================== GALERIA & LIGHTBOX ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.gallery-item {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 69, 69, 0.1);
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-item:focus-visible {
    outline: 3px solid var(--rose-400);
    outline-offset: 4px;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(25, 25, 25, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.lightbox-image {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}
.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}
.lightbox-prev {
    left: 1.5rem;
}
.lightbox-next {
    right: 1.5rem;
}
.lightbox-prev.hidden, .lightbox-next.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


/* ==================== DEPOIMENTOS ==================== */
.testimonial-carousel .swiper-slide {
    display: flex;
    justify-content: center;
    height: auto;
    padding-bottom: 3.5rem; 
}

.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(214, 69, 69, 0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--rose-100);
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    line-height: 1;
    z-index: 1;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--stone-700);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--rose-100);
    box-shadow: var(--shadow-soft);
}
.testimonial-author {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--rose-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.testimonial-carousel .swiper-pagination-bullet {
    background: var(--rose-200);
    opacity: 0.7;
    width: 10px;
    height: 10px;
}
.testimonial-carousel .swiper-pagination-bullet-active {
    background: var(--rose-600);
    opacity: 1;
}


/* ==================== FAQ ==================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--rose-100);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}
.faq-item:hover {
    box-shadow: var(--shadow-medium);
}
.faq-item[open] {
    box-shadow: var(--shadow-medium);
}
.faq-item[open] summary {
    color: var(--rose-800);
}
.faq-item[open] .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
    padding-bottom: 2rem;
}
.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stone-900);
    list-style: none;
    transition: color 0.3s ease;
    width: 100%;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::before {
    counter-increment: faq-counter;
    content: counter(faq-counter) ".";
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--rose-300);
    font-size: 1.25rem;
}
.faq-question::after {
    content: '+';
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 300;
    color: var(--rose-500);
    transition: transform 0.3s ease;
    margin-left: auto;
    padding-left: 1rem;
}
.faq-icon {
    display: none;
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
}
.faq-item p {
    padding: 0 2rem 0 2rem;
    font-size: 1.125rem;
    color: var(--stone-600);
    line-height: 1.8;
    min-height: 0;
    overflow: hidden;
}


/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--rose-50) 0%, var(--sand-50) 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 4rem;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(214, 69, 69, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.scarcity-badge {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--rose-800);
    background: var(--rose-100);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--rose-200);
    order: -1;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
    text-align: left;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 24px;
    height: 24px;
    color: var(--rose-600);
    flex-shrink: 0;
    margin-top: 4px;
}

.info-text strong {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rose-700);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.trust-seals {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    color: var(--stone-500);
    font-weight: 600;
}
.trust-seals svg {
    color: var(--stone-500);
}


.cta-note {
    margin-top: 2rem;
    color: var(--stone-600);
    font-size: 1rem;
}
.cta-box > .section-description {
    margin: 0;
    max-width: 600px;
    text-align: center;
}

.cta-box > .countdown-wrapper,
.cta-box > .event-info,
.cta-box > .trust-seals,
.cta-box > .cta-note {
    margin: 0;
}
/* ==================== LISTA ELEGANTE ==================== */
.elegant-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.elegant-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.elegant-list li:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.elegant-list svg {
    width: 28px;
    height: 28px;
    color: var(--rose-600);
    flex-shrink: 0;
    margin-top: 4px;
}

.elegant-list span {
    font-size: 1.25rem;
    color: var(--stone-700);
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--stone-900);
    color: var(--sand-200);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rose-300);
    margin-bottom: 1rem;
}

.main-footer p {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ==================== COUNTDOWN ==================== */
.countdown-wrapper {
    margin: 3rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--pink-50) 0%, var(--rose-50) 100%);
    border-radius: 24px;
    border: 2px solid var(--pink-200);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-title {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rose-700);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin-bottom: 1.5rem;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(225, 29, 72, 0.08);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
}

.countdown-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--rose-600);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-number:empty::after {
    content: '--';
    color: var(--rose-200);
}

.countdown-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--stone-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.calendar-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--rose-700);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--rose-200);
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}
.calendar-button svg {
    flex-shrink: 0;
}
.calendar-button:hover {
    background: white;
    border-color: var(--rose-400);
    box-shadow: var(--shadow-soft);
}

.live-viewers {
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-600);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.live-viewers svg {
    color: var(--rose-500);
}
.live-viewers #viewers-count {
    font-weight: 700;
    color: var(--rose-700);
}


/* ==================== WIDGETS FLUTUANTES ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--pink-400) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
    z-index: 999;
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    z-index: 998;
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-strong);
}

/* ==================== ANIMAÇÕES ==================== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== FORMULÁRIO DE INSCRIÇÃO ==================== */
.form-wrapper {
    width: 100%;
    margin-top: 2rem;
    text-align: left;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-wrapper label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--stone-900);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-wrapper label .required {
    color: var(--rose-600);
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--stone-900);
    border: 2px solid var(--rose-200);
    border-radius: 12px;
    background: var(--sand-50);
    transition: all 0.3s ease;
    outline: none;
}

.form-wrapper input:focus,
.form-wrapper select:focus,
.form-wrapper textarea:focus {
    border-color: var(--rose-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.1);
}

.form-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--rose-50);
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--rose-100);
}

.checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 4px;
    accent-color: var(--rose-600);
    flex-shrink: 0;
}

.checkbox-item label {
    font-size: 0.95rem;
    text-transform: none;
    font-weight: 600;
    margin: 0;
    cursor: pointer;
}

.submit-button {
    width: 100%;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    font-size: 1.125rem;
}

/* ==================== ESTADO DE SUCESSO E ERRO (REFORMULADO) ==================== */

.loading {
    display: none;
    text-align: center;
    padding: 2rem;
}
.loading.active { display: block; }

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--rose-200);
    border-top-color: var(--rose-600);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* MENSAGEM DE SUCESSO HARMONIZADA */
.success-message {
    display: none; /* Escondido por padrão */
    padding: 3rem 2rem;
    margin-top: 2rem;
    text-align: center;
    background: white; 
    border: 2px solid var(--rose-200);
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    animation: fadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.success-message.active {
    display: block;
}

.success-message h3 {
    font-family: var(--font-display);
    color: var(--rose-700);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-message p {
    font-family: var(--font-body);
    color: var(--stone-600);
    font-size: 1.25rem;
    line-height: 1.6;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* MENSAGEM DE ERRO (Minimalista) */
.error-message {
    display: none;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 1.5rem;
    background: #FFF1F2; /* Rose 50 */
    border: 1px solid var(--rose-300);
    color: var(--rose-800);
}
.error-message.active { display: block; }


/* ==================== RESPONSIVO ==================== */
@media (max-width: 1024px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .split-section:last-of-type {
        grid-template-areas: "image" "content";
    }
    .split-section:last-of-type .split-image {
        grid-area: image;
    }
    .split-section:last-of-type .split-content {
        grid-area: content;
    }
    .container, .container-narrow, .container-tight {
        padding: 0 2rem;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }
    .hero-content {
        text-align: center;
        padding-top: 4rem;
        max-width: 100%;
        margin: 0 auto;
    }
    .hero-description {
        max-width: 100%;
        font-size: 1.25rem;
    }
    .main-header.scrolled {
        padding: 1rem 1rem;
    }
    .main-header {
        padding: 1.5rem 1rem;
    }
    .container, .container-narrow, .container-tight {
        padding: 0 1.5rem; 
    }
    .team-avatar {
        width: 120px;
        height: 120px;
    }
    .event-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .countdown-number {
        font-size: 2rem;
    }
    .elegant-list li {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    .faq-question {
        font-size: 1.25rem;
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }
    .faq-question::before {
        font-size: 1rem;
    }
    .faq-answer {
        padding-bottom: 0;
    }
    .faq-item[open] .faq-answer {
        padding-bottom: 1.5rem;
    }
    .faq-item p {
        padding: 0 1.5rem;
    }
    .testimonial-card {
        padding: 2.5rem 1.5rem;
    }
    .testimonial-text {
        font-size: 1.25rem;
    }
    .testimonial-card::before {
        font-size: 6rem;
        top: 0.5rem;
        left: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item img {
        height: 300px;
    }
    .map-wrapper iframe {
        height: 350px;
    }
    .lightbox-prev, .lightbox-next {
        display: none;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 480px) {
    .container, .container-narrow, .container-tight {
        padding: 0 1rem;
    }
    .hero-title {
        font-size: 2.5rem; 
    }
    .cta-primary {
        display: block;
        width: 100%;
        padding: 1.25rem 1rem;
    }
    .header-logo {
        font-size: 1.25rem;
    }
    .header-cta {
        padding: 0.6rem 1.25rem;
        font-size: 0.75rem;
    }
    .card {
        padding: 2rem 1.5rem;
    }
    .elegant-list span {
        font-size: 1.125rem;
    }
    .testimonial-author-wrapper {
        gap: 0.75rem;
    }
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    .whatsapp-float {
        bottom: 5.5rem;
        left: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    .back-to-top.visible ~ .whatsapp-float {
         bottom: 1.5rem; 
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *, *::before, *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
    .hero-decorative {
        animation: none;
    }
    .card:hover, .split-section:hover .split-image img, .elegant-list li:hover {
        transform: none;
    }
    .gallery-item:hover {
        transform: none;
    }
    .gallery-item:hover img {
        transform: none;
    }
    .reveal {
        opacity: 1;
        transform: translateY(0);
    }
    .faq-answer {
        transition: none;
    }
    .lightbox, .lightbox-image {
        transition: none;
    }
}