* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, #fce4ec 0%, #e8f5e9 25%, #e3f2fd 50%, #fce4ec 75%, #fff9c4 100%);
    background-size: 400% 400%;
    animation: gradShift 10s ease infinite;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 16px 60px;
}

@keyframes gradShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.container {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-wrap {
    margin-bottom: 32px;
    animation: float 4s ease-in-out infinite;
}

.logo-wrap img {
    width: 400px; /* ← altere o tamanho aqui se quiser */
    height: auto;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 12px 32px rgba(160, 140, 210, 0.40));
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    border-radius: 18px;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s cubic-bezier(.34, 1.56, .64, 1), box-shadow 0.18s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    opacity: 0.18;
    transition: opacity 0.2s;
}

.btn:hover {
    transform: translateY(-3px) scale(1.025);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
}

.btn:hover::before {
    opacity: 0.28;
}

/* Cores por botão */
.btn-whatsapp::before {
    background: linear-gradient(135deg, #a8edaf, #5bca72);
}

.btn-whatsapp .icon-bg {
    background: linear-gradient(135deg, #a8edaf, #4caf50);
}

.btn-whatsapp {
    color: #2e7d32;
}

.btn-facebook::before {
    background: linear-gradient(135deg, #bbdefb, #64b5f6);
}

.btn-facebook .icon-bg {
    background: linear-gradient(135deg, #90caf9, #1976d2);
}

.btn-facebook {
    color: #1565c0;
}

.btn-tiktok::before {
    background: linear-gradient(135deg, #e1bee7, #ce93d8);
}

.btn-tiktok .icon-bg {
    background: linear-gradient(135deg, #ce93d8, #7b1fa2);
}

.btn-tiktok {
    color: #6a1b9a;
}

.btn-twitter::before {
    background: linear-gradient(135deg, #b3e5fc, #81d4fa);
}

.btn-twitter .icon-bg {
    background: linear-gradient(135deg, #81d4fa, #0288d1);
}

.btn-twitter {
    color: #01579b;
}

.btn-site::before {
    background: linear-gradient(135deg, #ffe0b2, #ffb74d);
}

.btn-site .icon-bg {
    background: linear-gradient(135deg, #ffcc80, #ef6c00);
}

.btn-site {
    color: #e65100;
}

.icon-bg {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.icon-bg svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.btn-label {
    flex: 1;
}

.btn-sub {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.65;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
}

.footer {
    margin-top: 36px;
    font-size: 12px;
    color: #bbb;
    letter-spacing: 1px;
    text-align: center;
}

.paw {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }
}