:root {
    --color-primary: #2a2a2a;
    --color-secondary: #6a6a6a;
    --color-accent: #a8a8a8;
    --color-bg: #fafafa;
    --color-white: #ffffff;
    --color-light-grey: #f5f5f5;
    --color-border: #e5e5e5;
    
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 200, 200, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(180, 180, 180, 0.08) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.names h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.divider {
    width: 100px;
    height: 1px;
    background: var(--color-accent);
    margin: var(--spacing-md) auto;
    position: relative;
}

.divider::before {
    content: '◆';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-bg);
    padding: 0 var(--spacing-sm);
    color: var(--color-accent);
    font-size: 0.7rem;
}

.date {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--color-accent);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Wedding Rings Animation */
.rings-animation {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    overflow: hidden;
}

.rings-container {
    position: relative;
    height: 100px;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ring {
    width: 60px;
    height: 60px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.ring-left {
    left: 20%;
    transform: translateY(-50%) rotate(-10deg);
}

.ring-right {
    right: 20%;
    transform: translateY(-50%) rotate(10deg);
}

.rings-animation.animate .ring-left {
    left: calc(50% - 40px);
    transform: translateY(-50%) rotate(0deg);
}

.rings-animation.animate .ring-right {
    right: calc(50% - 40px);
    transform: translateY(-50%) rotate(0deg);
}

/* Countdown Section */
.countdown-section {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.countdown-label {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--color-primary);
    line-height: 1;
    transition: all 0.3s ease;
}

.countdown-item:hover .countdown-number {
    transform: scale(1.1);
    color: var(--color-secondary);
}

.countdown-text {
    font-size: 0.75rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: var(--spacing-xs);
}

.countdown-separator {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-accent);
    opacity: 0.5;
    margin: 0 var(--spacing-xs);
}

/* Guest Welcome */
.guest-welcome {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    text-align: center;
}

.guest-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--color-secondary);
    font-weight: 300;
}

/* Story Section */
.story {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-grey);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
}

.story-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--color-secondary);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Timeline */
.timeline {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.timeline-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-border);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    border-color: var(--color-primary);
}

.timeline-dot.special {
    background: var(--color-primary);
    border-color: var(--color-primary);
    width: 20px;
    height: 20px;
}

.timeline-content {
    width: 45%;
    padding: var(--spacing-md);
    background: var(--color-light-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.timeline-content p:last-child {
    color: var(--color-secondary);
    font-size: 1rem;
}

.timeline-item.highlight .timeline-content {
    background: var(--color-primary);
    color: var(--color-white);
}

.timeline-item.highlight .timeline-content h3,
.timeline-item.highlight .timeline-content p {
    color: var(--color-white);
}

.timeline-item.highlight .timeline-date {
    color: var(--color-accent);
}

/* Photo Gallery */
.gallery {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-grey);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.photo-placeholder {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, #e5e5e5 0%, #f5f5f5 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: all 0.3s ease;
}

.photo-item:hover .photo-placeholder {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Event Details */
.event-details {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.event-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    color: var(--color-secondary);
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.info-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-light-grey);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.info-item p {
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.info-detail {
    font-size: 0.9rem !important;
    color: var(--color-secondary) !important;
    line-height: 1.6;
}

.map-link {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-map {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* RSVP Section */
.rsvp {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-grey);
    position: relative;
    overflow: hidden;
}

/* Bouquet Animation */
.bouquet-animation-container {
    position: relative;
    height: 150px;
    margin-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bouquet {
    width: 80px;
    height: 120px;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    transition: all 1.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    z-index: 2;
}

.bouquet-animation-container.throw .bouquet {
    left: 70%;
    transform: translateY(-50%) rotate(360deg);
    opacity: 0;
}

/* Fireworks */
.fireworks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bouquet-animation-container.throw .fireworks-container {
    opacity: 1;
}

.firework {
    position: absolute;
    left: var(--x);
    bottom: 0;
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    animation: firework-launch 1.5s ease-out forwards;
    animation-delay: var(--delay);
    opacity: 0;
}

.bouquet-animation-container.throw .firework {
    opacity: 1;
}

.firework::before,
.firework::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 4px;
    background: var(--color-secondary);
    border-radius: 50%;
}

.firework::before {
    animation: firework-particle-1 1s ease-out forwards;
    animation-delay: calc(var(--delay) + 0.8s);
}

.firework::after {
    animation: firework-particle-2 1s ease-out forwards;
    animation-delay: calc(var(--delay) + 0.8s);
}

@keyframes firework-launch {
    0% {
        transform: translateY(0);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        transform: translateY(-150px);
        opacity: 1;
    }
}

@keyframes firework-particle-1 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-30px, -30px);
        opacity: 0;
    }
}

@keyframes firework-particle-2 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    100% {
        transform: translate(30px, -30px);
        opacity: 0;
    }
}

.personal-message {
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-primary);
}

.message-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--color-secondary);
    font-style: italic;
    text-align: center;
}

.rsvp-subtitle {
    text-align: center;
    color: var(--color-secondary);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.rsvp-form {
    max-width: 600px;
    margin: 0 auto;
}

.rsvp-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.btn-rsvp {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
}

.btn-yes {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-yes:hover {
    background: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-no {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-border);
}

.btn-no:hover {
    background: var(--color-light-grey);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.confirmation-message {
    text-align: center;
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.confirm-text {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.calendar-prompt {
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.calendar-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    max-width: 500px;
    margin: 0 auto;
}

.btn-calendar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-calendar:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-calendar span {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
}

.footer p {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.footer-names {
    font-family: var(--font-display);
    font-size: 2rem !important;
    color: var(--color-white) !important;
    margin: var(--spacing-sm) 0 !important;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: var(--color-accent);
    margin: var(--spacing-md) auto;
}

.footer-date {
    font-family: var(--font-body);
    font-size: 1rem !important;
    letter-spacing: 0.2em;
    color: var(--color-accent) !important;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-items::before {
        left: 30px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: row;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px;
    }
    
    .rsvp-buttons {
        grid-template-columns: 1fr;
    }
    
    .calendar-buttons {
        grid-template-columns: 1fr;
    }
    
    .event-info {
        grid-template-columns: 1fr;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-container {
        gap: var(--spacing-md);
    }
    
    /* Ajustes para animações no mobile */
    .rings-container {
        height: 80px;
    }
    
    .ring {
        width: 50px;
        height: 50px;
    }
    
    .bouquet-animation-container {
        height: 120px;
    }
    
    .bouquet {
        width: 60px;
        height: 90px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .ring {
        width: 40px;
        height: 40px;
    }
    
    .bouquet {
        width: 50px;
        height: 75px;
    }
}
/* Adicionar ao styles.css existente */

/* ======================
   ALIANÇAS - FORMANDO INFINITO
   ====================== */

.rings-animation {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
}

.rings-container {
    position: relative;
    height: 120px;
    max-width: 600px;
    margin: 0 auto;
}

.infinity-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    z-index: 1;
}

.rings-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    z-index: 1;
}

.ring {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 50%;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    z-index: 2;
    transition: all 0.1s ease-out;
}

.ring-left {
    left: 10%;
    transform: translateX(-50%) translateY(-50%) rotate(-10deg) scale(0.8);
}

.ring-right {
    left: 90%;
    transform: translateX(-50%) translateY(-50%) rotate(10deg) scale(0.8);
}

/* ======================
   BUQUÊ - PARÁBOLA + FOGOS
   ====================== */

.bouquet-animation-container {
    position: relative;
    height: 200px;
    margin-bottom: var(--spacing-lg);
    overflow: hidden;
}

.bouquet {
    width: 100px;
    height: 150px;
    position: absolute;
    left: 20%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    z-index: 2;
}

/* Fogos de artifício */
.firework {
    position: absolute;
    left: var(--x);
    bottom: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
}

.rocket {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #a8a8a8;
    border-radius: 50%;
    opacity: 0;
}

.explosion {
    position: absolute;
    left: 50%;
    bottom: 80%;
    transform: translateX(-50%) scale(0);
    width: 60px;
    height: 60px;
    opacity: 0;
}

/* Responsivo */
@media (max-width: 768px) {
    .rings-container {
        height: 100px;
    }
    
    .ring {
        width: 60px;
        height: 60px;
    }
    
    .bouquet-animation-container {
        height: 160px;
    }
    
    .bouquet {
        width: 80px;
        height: 120px;
    }
    
    .explosion {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .rings-container {
        height: 80px;
    }
    
    .ring {
        width: 50px;
        height: 50px;
    }
    
    .bouquet {
        width: 70px;
        height: 105px;
    }
    
    .explosion {
        width: 40px;
        height: 40px;
    }
}
/* ======================
   ALIANÇAS V2 - MAIORES, ENTRELAÇADAS
   ====================== */

.rings-animation {
    padding: var(--spacing-md) 0;
    background: var(--color-white);
    overflow: hidden;
    position: relative;
}

.rings-container {
    position: relative;
    height: 90px; /* Reduzido de 120px */
    max-width: 600px;
    margin: 0 auto;
}

.rings-glow {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px; /* Ajustado proporcionalmente */
    height: 120px;
    z-index: 0;
    opacity: 0;
}

.ring {
    width: 85px; /* Tamanho final ajustado */
    height: 85px;
    position: absolute;
    top: 50%;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
    transition: all 0.1s ease-out;
}

.ring-left {
    left: 15%;
    transform: translateX(-50%) translateY(-50%) rotate(-20deg) scale(0.9);
    z-index: 2; /* Na frente para entrelaçar */
}

.ring-right {
    left: 85%;
    transform: translateX(-50%) translateY(-50%) rotate(20deg) scale(0.9);
    z-index: 1; /* Atrás para entrelaçar */
}

/* ======================
   BUQUÊ V2 - TRAJETÓRIA CORRIGIDA
   ====================== */

.bouquet-animation-container {
    position: relative;
    height: 250px; /* Aumentado para comportar trajetória completa */
    margin-bottom: var(--spacing-lg);
    overflow: visible; /* Mudado para permitir buquê subir além do container */
}

.bouquet {
    width: 100px;
    height: 150px;
    position: absolute;
    left: 20%;
    top: 120%; /* Começa fora da tela, embaixo */
    transform: translate(-50%, -50%) rotate(0deg);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    z-index: 3;
    opacity: 0;
}

/* Fogos de artifício */
.firework {
    position: absolute;
    left: var(--x);
    bottom: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 2;
}

.rocket {
    position: absolute;
    bottom: 100%; /* Começa de baixo */
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    background: #a8a8a8;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px rgba(168, 168, 168, 0.8);
}

.explosion {
    position: absolute;
    left: 50%;
    bottom: -20%; /* Explosão no topo */
    transform: translateX(-50%) scale(0);
    width: 70px;
    height: 70px;
    opacity: 0;
}

/* ======================
   PAUSA TÉCNICA - BONEQUINHOS
   ====================== */

.pausa-tecnica-animation {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.pausa-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    min-height: 200px;
}

.pausa-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
}

.pausa-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.person {
    width: 60px;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    z-index: 2;
}


.heart {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
}

.heart-1 {
    top: 35%;
}

.heart-2 {
    top: 30%;
    left: 45%;
}

.heart-3 {
    top: 30%;
    left: 55%;
}

/* Responsivo */
@media (max-width: 768px) {
    .rings-container {
        height: 75px;
    }
    
    .ring {
        width: 75px;
        height: 75px;
    }
    
    .bouquet-animation-container {
        height: 200px;
    }
    
    .bouquet {
        width: 80px;
        height: 120px;
    }
    
    .explosion {
        width: 55px;
        height: 55px;
    }
    
    .pausa-title {
        font-size: 1.5rem;
    }
    
    .person {
        width: 50px;
        height: 85px;
    }
    
    .heart {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .rings-container {
        height: 65px;
    }
    
    .ring {
        width: 65px;
        height: 65px;
    }
    
    .bouquet {
        width: 70px;
        height: 105px;
    }
    
    .explosion {
        width: 45px;
        height: 45px;
    }
    
    .pausa-title {
        font-size: 1.25rem;
    }
    
    .person {
        width: 40px;
        height: 70px;
    }
}
/* ======================
   TIMELINE - LABELS DE TEMPORADA
   ====================== */

.timeline-season {
    font-family: var(--font-body);
    font-size: 0.65rem; /* Fonte maior */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3; /* Espaçamento entre linhas */
    color: var(--color-accent);
    background: var(--color-bg);
    padding: 3px 6px;
    border: 1px solid var(--color-accent);
    border-radius: 3px;
    position: absolute;
    top: -20px; /* Levantado para não sobrepor */
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    white-space: normal; /* Permite quebra de linha */
    max-width: 90px; /* Largura máxima para forçar quebra */
    text-align: center;
}

/* ======================
   PAUSA TÉCNICA - COMPACTA COMO TIMELINE
   ====================== */

.pausa-tecnica-section {
    padding: 4px 0; /* Padding mínimo */
    background: transparent;
    text-align: center;
    position: relative;
    margin: 0;
}

/* Linha vertical continua */
.pausa-tecnica-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-accent);
    transform: translateX(-1.5px);
    z-index: 0;
}

/* Quadradinho pequeno (como os da timeline) */
.pausa-tecnica-section::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 4px; /* Bem próximo do topo */
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 2px;
    z-index: 1;
}

.pausa-tecnica-section .section-title {
    position: relative;
    z-index: 2;
    background: var(--color-bg);
    display: inline-block;
    padding: 0 var(--spacing-sm);
    font-size: 1rem;
    margin: 16px auto 2px; /* Margem mínima */
    text-align: center;
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--color-primary);
}

.pausa-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--color-secondary);
    margin: 0 auto 4px; /* Margem mínima */
    font-style: italic;
    max-width: 500px;
    position: relative;
    z-index: 2;
    background: var(--color-bg);
    display: inline-block;
    padding: 0 var(--spacing-sm);
    text-align: center;
}

.pausa-tecnica-animation {
    position: relative;
    overflow: visible;
    min-height: 50px; /* Altura mínima */
    margin: 0 auto;
    z-index: 2;
}

.pausa-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    height: 70px; /* Altura reduzida */
}

.person {
    width: 60px;
    height: 100px;
    position: absolute;
    top: 10px; /* Mais próximo do topo */
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.1s ease-out;
    z-index: 2;
}

.person-left {
    left: 50%;
    transform: translateX(-50%);
}

.person-right {
    left: 50%;
    transform: translateX(-50%);
}

.heart {
    width: 24px;
    height: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
}

.heart-1 {
    top: 25%;
}

.heart-2 {
    top: 20%;
    left: 45%;
}

.heart-3 {
    top: 20%;
    left: 55%;
}

/* Responsivo */
@media (max-width: 768px) {
    .timeline-season {
        font-size: 0.7rem;
    }
    
    .pausa-subtitle {
        font-size: 0.9rem;
        padding: 0 var(--spacing-md);
    }
    
    .pausa-container {
        height: 180px;
    }
    
    .person {
        width: 50px;
        height: 85px;
    }
    
    .heart {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .timeline-season {
        font-size: 0.65rem;
    }
    
    .pausa-subtitle {
        font-size: 0.85rem;
    }
    
    .pausa-container {
        height: 150px;
    }
    
    .person {
        width: 40px;
        height: 70px;
    }
    
    .heart {
        width: 18px;
        height: 18px;
    }
}
