
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#fafafa;

    color:#222;

    overflow-x:hidden;

}

/* =====================================================
   CORES
===================================================== */

:root{

    --gold:#D4AF37;
    --gold-dark:#B88916;
    --gold-light:#F8E7B4;

    --text:#242424;

    --text2:#6f6f6f;

    --white:#ffffff;

    --glass:rgba(255,255,255,.75);

    --shadow:0 15px 40px rgba(0,0,0,.15);

    --radius:28px;

}

/* =====================================================
   FUNDO
===================================================== */

.background{

    position:fixed;

    inset:0;

    background:
    radial-gradient(circle at top,#fffdf5 0%,#fafafa 55%,#f4f4f4 100%);

    z-index:-1;

}


.container{

    width:100%;

    max-width:520px;

    margin:auto;

    padding:40px 20px;

}

.hero{

    text-align:center;

    margin-bottom:40px;

}

.logo{

    width:170px;

    height:170px;

    margin:auto;

    border-radius:50%;

    background:white;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:6px;

    box-shadow:var(--shadow);

    border:3px solid rgba(212,175,55,.25);

}

.logo img{

    width:100%;
    height:100%;
    object-fit:cover; 
    display:block;
    border-radius:50%;

}

.hero h1{

    margin-top:20px;

    font-size:34px;

    font-weight:700;

}

.subtitle{

    margin-top:8px;

    color:var(--text2);

    font-size:15px;

}

.stars{

    margin-top:20px;

    color:var(--gold);

    display:flex;

    justify-content:center;

    align-items:center;

    gap:8px;

    flex-wrap:wrap;

}

.stars span{

    color:#777;

    font-size:14px;

}

/* =====================================================
   LINKS
===================================================== */

.links{

    display:flex;

    flex-direction:column;

    gap:18px;

}

/* =====================================================
   CARD
===================================================== */

.card{

    display:flex;

    align-items:center;

    justify-content:space-between;

    text-decoration:none;

    color:inherit;

    padding:22px;

    border-radius:26px;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:var(--shadow);

    transition:.30s;

}

.card:hover{

    transform:translateY(-6px);

    box-shadow:0 25px 50px rgba(0,0,0,.30);

}

.icon{

width:65px;
height:65px;

border-radius:20px;

background:linear-gradient(145deg,#F7E6A8,#D4AF37);

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

color:white;

box-shadow:

0 8px 18px rgba(212,175,55,.35);

}

.text{

    flex:1;

    margin-left:18px;

}

.text h2{

    font-size:22px;

    margin-bottom:5px;

}

.text p{

    color:#666;

    font-size:15px;

}

.arrow{

    color:var(--gold);

    font-size:20px;

}

/* =====================================================
   CARD WHATSAPP
===================================================== */

.whatsapp{


    background:linear-gradient(135deg,#d8b14f,#c69a17);

    color:white;

}

.whatsapp .icon{

    background:white;

    color:#25D366;

}

.whatsapp .text p{

    color:#f8f8f8;

}

.whatsapp .arrow{

    color:white;

}

/* =====================================================
   RODAPÉ
===================================================== */

footer{

    margin-top:45px;

    text-align:center;

    color:#888;

    font-size:13px;

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media(max-width:500px){

.hero h1{

    font-size:29px;

}

.logo{

    width:145px;

    height:145px;

}

.text h2{

    font-size:19px;

}

.card{

    padding:18px;

}

.icon{

    width:55px;

    height:55px;

}

}

/* ===================================
   Botão WhatsApp Premium
=================================== */

.whatsapp{

    position: relative;
    overflow: hidden;

    background: linear-gradient(135deg,#d4af37,#b8860b);

    animation: pulse 2.5s infinite;

}

/* brilho passando */

.whatsapp::before{

    content:"";

    position:absolute;

    top:-40%;

    left:-120%;

    width:60%;

    height:180%;

    background:rgba(255,255,255,.35);

    transform:rotate(25deg);

    animation: shine 3s infinite;

}

/* efeito ao passar o mouse */

.whatsapp:hover{

    transform:translateY(-6px) scale(1.03);

}

/* pulsa suavemente */

@keyframes pulse{

    0%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(212,175,55,.45);

    }

    70%{

        transform:scale(1.02);

        box-shadow:0 0 0 16px rgba(212,175,55,0);

    }

    100%{

        transform:scale(1);

        box-shadow:0 0 0 0 rgba(212,175,55,0);

    }

}

/* brilho passando */

@keyframes shine{

    0%{

        left:-120%;

    }

    100%{

        left:180%;

    }

}

.whatsapp .icon{

    animation: whatsappIcon 2s infinite;

}

@keyframes whatsappIcon{

    0%,100%{

        transform:rotate(0deg);

    }

    10%{

        transform:rotate(-12deg);

    }

    20%{

        transform:rotate(12deg);

    }

    30%{

        transform:rotate(-8deg);

    }

    40%{

        transform:rotate(8deg);

    }

}