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

html,
body{
    background:#000;
    color:#fff;

    font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.container{
    width:100%;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    padding:20px;
}

.content{
    width:100%;
    max-width:430px;

    display:flex;
    flex-direction:column;
    align-items:center;

    transform:translateY(-55px);
}

.logo{
    width:210px;
    margin-bottom:42px;
}

.buttons{
    width:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.button{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    width:320px;
    height:48px;

    margin-bottom:12px;

    text-decoration:none;

    color:#fff;
    background:#111;

    border:1px solid #222;
    border-radius:14px;

    font-size:15px;
    font-weight:600;

    transition:.20s;
}

.button:hover{
    border-color:#444;
}

.button:active{
    transform:scale(.98);
}

.whatsapp{
    width:340px;
    height:58px;

    margin-bottom:46px;

    background:#22C55E;
    border:none;
    color:#fff;

    font-size:17px;
    font-weight:700;
}

.whatsapp:hover{
    background:#16A34A;
}

.contact-button{
    margin-bottom:42px;
}

.social-row{
    width:320px;

    display:flex;
    justify-content:space-between;
    gap:12px;
}

.small-button{
    width:154px;
    height:48px;

    margin-bottom:0;

    gap:8px;

    font-size:14px;
}

.google{
    background:#fff;
    color:#111;
    border:none;
}

.google:hover{
    background:#f4f4f4;
}

.instagram{
    background:linear-gradient(
        135deg,
        #405DE6 0%,
        #5851DB 18%,
        #833AB4 38%,
        #C13584 58%,
        #E1306C 74%,
        #FD1D1D 88%,
        #FCAF45 100%
    );

    border:none;
}

.instagram:hover{
    filter:brightness(1.08);
}

.icon{
    width:28px;
    height:28px;

    object-fit:contain;
    flex-shrink:0;
}

.whatsapp-icon{
    width:34px;
    height:34px;
}

.small-icon{
    width:22px;
    height:22px;

    object-fit:contain;
    flex-shrink:0;
}

.google-icon{
    width:22px;
    height:22px;
}

.stars{
    color:#FFC107;
    letter-spacing:0;
}