:root {
    --sky-blue: #87CEEB;
    --cloud-white: #FFFFFF;
    --pastel-yellow: #FFFACD;
    --mint-green: #98FF98;
    --soft-coral: #F08080;
    --text-color: #555555;
    --font-heading: 'Fredoka One', cursive;
    --font-body: 'Quicksand', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: linear-gradient(to bottom, var(--sky-blue), #E0F7FA);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--soft-coral);
    text-shadow: 2px 2px 0px #fff;
}

.btn-globo {
    background-color: var(--soft-coral);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(240, 128, 128, 0.4);
}

.btn-globo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(240, 128, 128, 0.6);
    color: white;
    text-decoration: none;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.balloon-container {
    position: relative;
    width: 280px;
    height: 350px;
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

.balloon {
    width: 200px;
    height: 240px;
    background: radial-gradient(circle at 50% 50%, var(--soft-coral), #ff6b6b);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.1);
}

.balloon::before {
    content: '';
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid var(--soft-coral);
}

.basket {
    width: 60px;
    height: 50px;
    background: #8B4513;
    border-radius: 5px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.baby-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    border: 4px solid white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Background Clouds */
.bg-cloud {
    position: absolute;
    color: rgba(255, 255, 255, 0.6);
    z-index: 1;
    animation: drift linear infinite;
}

@keyframes drift {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100vw);
    }
}

/* Sections */
.section-padding {
    padding: 4rem 1rem;
    position: relative;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(45deg,
            var(--soft-coral),
            var(--soft-coral) 10px,
            var(--mint-green) 10px,
            var(--mint-green) 20px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: var(--sky-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

/* Countdown */
.countdown-box {
    background: var(--pastel-yellow);
    padding: 1rem;
    border-radius: 15px;
    width: 80px;
    color: var(--text-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-heading);
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Music Control */
.music-control {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.btn-music {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    border: none;
    color: var(--soft-coral);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-music:hover {
    transform: scale(1.1);
}

.btn-music.playing {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-icon {
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    color: var(--soft-coral);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--sky-blue);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -25px;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-time {
    font-weight: bold;
    color: var(--sky-blue);
    margin-bottom: 0.5rem;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-container::before {
        left: 30px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd) {
        text-align: left;
    }

    .timeline-icon {
        left: 5px !important;
        right: auto !important;
    }
}

footer {
    background: white;
    padding: 2rem;
    text-align: center;
}