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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #ff9d4d 0%, #ffb347 50%, #ffd700 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 4px solid #8B4513;
    position: relative;
    z-index: 10;
}

.logo {
    max-width: 100%;
    width: 400px;
    height: auto;
    margin: 0 auto 30px;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
}

.message {
    margin-top: 20px;
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 157, 77, 0.3);
    line-height: 1.3;
}

p {
    font-size: 1.2rem;
    color: #5d4037;
    margin-bottom: 15px;
    line-height: 1.6;
}

.launch-date {
    font-weight: 600;
    font-size: 1.3rem;
    margin: 25px 0;
}

.highlight {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(255, 107, 53, 0.3);
}

.contact-text {
    margin: 25px 0 30px;
    font-size: 1.1rem;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn.whatsapp {
    background: #25D366;
    color: white;
}

.btn.whatsapp:hover {
    background: #1fb855;
}

.btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn.instagram:hover {
    background: linear-gradient(45deg, #e08323 0%, #d5582c 25%, #cc1733 50%, #bc1356 75%, #ac0878 100%);
}

.btn.email {
    background: #ff6b35;
    color: white;
}

.btn.email:hover {
    background: #e85a28;
}

.closing {
    margin-top: 35px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #5d4037;
}

.pecadim {
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.4rem;
    text-shadow: 1px 1px 3px rgba(255, 107, 53, 0.3);
}

.pudding-decoration {
    position: absolute;
    font-size: 4rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.pudding-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.pudding-2 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.pudding-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .content {
        padding: 30px 25px;
        border-radius: 25px;
    }

    .logo {
        width: 300px;
    }

    h1 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1.1rem;
    }

    .launch-date {
        font-size: 1.2rem;
    }

    .highlight {
        font-size: 1.3rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .closing {
        font-size: 1.2rem;
    }

    .pecadim {
        font-size: 1.3rem;
    }

    .pudding-decoration {
        font-size: 3rem;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    body {
        padding: 15px;
    }

    .content {
        padding: 25px 20px;
        border-radius: 20px;
        border: 3px solid #8B4513;
    }

    .logo {
        width: 250px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    p {
        font-size: 1rem;
    }

    .launch-date {
        font-size: 1.1rem;
        margin: 20px 0;
    }

    .highlight {
        font-size: 1.2rem;
    }

    .contact-text {
        margin: 20px 0 25px;
        font-size: 1rem;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 15px;
        margin: 25px 0;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 1rem;
        justify-content: center;
    }

    .closing {
        margin-top: 25px;
        font-size: 1.1rem;
    }

    .pecadim {
        font-size: 1.2rem;
    }

    .pudding-decoration {
        font-size: 2.5rem;
        opacity: 0.2;
    }

    .pudding-1 {
        top: 5%;
        left: 2%;
    }

    .pudding-2 {
        top: 70%;
        right: 2%;
    }

    .pudding-3 {
        bottom: 10%;
        left: 5%;
    }
}

/* Responsividade para celulares muito pequenos */
@media (max-width: 360px) {
    .logo {
        width: 220px;
    }

    h1 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
}
