@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Nunito:wght@400;600;700;800;900&display=swap");

:root {
    --pink: #ff5fa8;
    --pink-dark: #e94491;
    --purple: #9562e8;
    --purple-dark: #5e389e;
    --yellow: #ffd84a;
    --blue: #55c9f4;
    --teal: #42d4bd;
    --white: #ffffff;
    --text: #42285f;
    --muted: #766289;
    --shadow: 0 24px 65px rgba(83, 45, 120, 0.18);
}

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

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    font-family: "Nunito", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 216, 74, 0.65) 0 6px, transparent 7px),
        radial-gradient(circle at 92% 14%, rgba(85, 201, 244, 0.55) 0 7px, transparent 8px),
        radial-gradient(circle at 16% 85%, rgba(255, 95, 168, 0.35) 0 6px, transparent 7px),
        radial-gradient(circle at 88% 82%, rgba(66, 212, 189, 0.4) 0 5px, transparent 6px),
        linear-gradient(135deg, #fff0f8 0%, #f5efff 48%, #edfaff 100%);
}

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
    isolation: isolate;
}

.bubble {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.65;
}

.bubble-one {
    width: 330px;
    height: 330px;
    top: -150px;
    left: -120px;
    background: rgba(255, 216, 74, 0.48);
}

.bubble-two {
    width: 390px;
    height: 390px;
    right: -170px;
    bottom: -170px;
    background: rgba(85, 201, 244, 0.35);
}

.topbar {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}

.brand-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 4px solid var(--white);
    border-radius: 19px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    box-shadow: 0 10px 26px rgba(149, 98, 232, 0.28);
    font-size: 28px;
    transform: rotate(-5deg);
}

.brand-text strong {
    display: block;
    font-family: "Baloo 2", cursive;
    font-size: 1.5rem;
    line-height: 1;
}

.brand-text span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid rgba(149, 98, 232, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 8px 22px rgba(83, 45, 120, 0.08);
    color: var(--purple-dark);
    font-size: 0.82rem;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(66, 212, 189, 0.18);
    animation: pulse 1.8s infinite;
}

main {
    flex: 1;
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    place-items: center;
    padding: 38px 0 30px;
}

.card {
    position: relative;
    width: min(920px, 100%);
    padding: 58px 48px 46px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 42px;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    text-align: center;
    backdrop-filter: blur(18px);
}

.card::before,
.card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.card::before {
    width: 270px;
    height: 270px;
    top: -155px;
    right: -90px;
    background: linear-gradient(135deg, rgba(255, 95, 168, 0.22), rgba(149, 98, 232, 0.2));
}

.card::after {
    width: 230px;
    height: 230px;
    left: -125px;
    bottom: -135px;
    background: rgba(85, 201, 244, 0.2);
}

.party-row {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.party-row span {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.party-row span:nth-child(2) {
    animation-delay: 0.35s;
}

.party-row span:nth-child(3) {
    animation-delay: 0.7s;
}

.label {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #fff2bd;
    color: #996600;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

h1 {
    position: relative;
    z-index: 2;
    max-width: 770px;
    margin: 0 auto;
    font-family: "Baloo 2", cursive;
    font-size: clamp(2.9rem, 7vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
}

h1 .pink {
    color: var(--pink);
}

h1 .purple {
    color: var(--purple);
}

.intro {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.12rem);
    font-weight: 600;
    line-height: 1.75;
}

.intro strong {
    color: var(--text);
}

.features {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px auto 0;
}

.feature {
    padding: 10px 15px;
    border: 1px solid rgba(149, 98, 232, 0.13);
    border-radius: 999px;
    background: rgba(249, 246, 255, 0.9);
    color: #694d83;
    font-size: 0.83rem;
    font-weight: 800;
}

.contact {
    position: relative;
    z-index: 2;
    margin-top: 31px;
    padding-top: 28px;
    border-top: 1px dashed rgba(149, 98, 232, 0.25);
}

.contact p {
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 12px 22px;
    border-radius: 999px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-whatsapp {
    background: linear-gradient(135deg, #38d09f, #20b883);
    box-shadow: 0 10px 24px rgba(32, 184, 131, 0.25);
}

.button-facebook {
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    box-shadow: 0 10px 24px rgba(94, 56, 158, 0.25);
}

footer {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
}

footer a {
    color: var(--purple-dark);
    text-decoration: none;
}

.confetti {
    position: absolute;
    z-index: 1;
    width: 11px;
    height: 18px;
    border-radius: 4px;
    opacity: 0.8;
}

.confetti-one {
    top: 13%;
    left: 8%;
    background: var(--yellow);
    transform: rotate(24deg);
}

.confetti-two {
    top: 20%;
    right: 10%;
    background: var(--pink);
    transform: rotate(-18deg);
}

.confetti-three {
    bottom: 19%;
    left: 13%;
    background: var(--blue);
    transform: rotate(42deg);
}

.confetti-four {
    right: 14%;
    bottom: 15%;
    background: var(--teal);
    transform: rotate(-38deg);
}

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

    50% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

@media (max-width: 700px) {
    .page {
        padding: 18px;
    }

    .topbar {
        align-items: flex-start;
    }

    .status {
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .brand-text span {
        display: none;
    }

    main {
        padding: 28px 0 24px;
    }

    .card {
        padding: 42px 21px 34px;
        border-radius: 30px;
    }

    .intro {
        line-height: 1.6;
    }

    footer {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 430px) {
    .brand-icon {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .brand-text strong {
        font-size: 1.22rem;
    }

    .status {
        max-width: 125px;
        text-align: center;
    }

    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
