/* =====================================================
   GERAL
===================================================== */


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* HTML */

html {
    scroll-behavior: smooth;
}


/* BODY */

body {
    background: #000;
    color: #fff;

    font-family: "Barlow", sans-serif;

    overflow-x: hidden;
}


/* IMAGENS */

img {
    display: block;
    max-width: 100%;
}


/* LINKS */

a {
    color: inherit;
    text-decoration: none;
}


/* BOTÕES */

button {
    font-family: inherit;
}


/* =====================================================
   VARIÁVEIS
===================================================== */

:root {

    --yellow: #FFD400;
    --green: #10B981;

    --black: #000000;
    --white: #FFFFFF;

    --container: 1200px;

}


/* =====================================================
   CONTAINER PADRÃO
===================================================== */

.container {

    width: min(
        calc(100% - 80px),
        var(--container)
    );

    margin: 0 auto;

}


/* =====================================================
   TÍTULOS
===================================================== */

.title-display {

    font-family: "Barlow", sans-serif;

    font-weight: 900;

    text-transform: uppercase;

}


/* =====================================================
   LABELS
===================================================== */

.section-label {

    font-family: "Barlow", sans-serif;

    font-weight: 900;

    text-transform: uppercase;

}

/* =========================================
   BOTÃO FLUTUANTE WHATSAPP
========================================= */

.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 68px;
    height: 68px;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.whatsapp-float img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.25));
}


/* MOBILE */

@media (max-width: 800px) {

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

}
