/* ===========================
   RESET
=========================== */

*,
*::before,
*::after{

    box-sizing:border-box;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#050505;

    color:white;

    font-family:'Poppins',sans-serif;

    overflow-x:hidden;

}

/* ===========================
   CONTAINER
=========================== */

.container{

    width:min(92%,1400px);

    margin:auto;

}

/* ===========================
   VARIÁVEIS
=========================== */

:root{

    --green:#00DA00;

    --black:#050505;

    --white:#ffffff;

    --text:#d6d6d6;

}

/*====================================================

        COMPONENTES REUTILIZÁVEIS

====================================================*/


/*----------------------------------

Linha divisória premium

----------------------------------*/

.section-divider{

    width:90px;

    height:1px;

    margin:40px auto;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(0,218,0,.35),
        transparent
    );

}

