/* ======================================== */
/* RESET */
/* ======================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat', sans-serif;
    background:#f4f7fb;
    color:#081126;
    overflow-x:hidden;
}

/* ======================================== */
/* VARIABLES */
/* ======================================== */

:root{

    --primary:#081126;
    --secondary:#56c667;
    --light:#f4f7fb;
    --white:#ffffff;
    --gray:#6f7b91;

}

/* ======================================== */
/* GLOBAL */
/* ======================================== */

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

section{
    padding:120px 0;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

/* ======================================== */
/* TITLES */
/* ======================================== */

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:var(--secondary);
    font-weight:700;
    letter-spacing:2px;
    font-size:14px;
}

.section-title h2{
    margin-top:15px;
    font-size:52px;
    line-height:1.1;
    color:var(--primary);
}

/* ======================================== */
/* BUTTONS */
/* ======================================== */

.btn-primary{

    background:var(--secondary);
    color:white;
    padding:18px 34px;
    border-radius:14px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
    border:none;
    cursor:pointer;

}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{

    border:2px solid white;
    color:white;
    padding:18px 34px;
    border-radius:14px;
    font-weight:700;
    transition:.3s;

}

.btn-secondary:hover{
    background:white;
    color:var(--primary);
}

/* ======================================== */
/* WHATSAPP */
/* ======================================== */

.whatsapp{

    position:fixed;
    right:30px;
    bottom:30px;

    width:72px;
    height:72px;

    background:#25d366;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999;

    box-shadow:0 15px 35px rgba(0,0,0,.2);

}

.whatsapp i{
    color:white;
    font-size:38px;
}

/* ======================================== */
/* SCROLL ANIMATIONS */
/* ======================================== */

.hidden-section{
    opacity:0;
    transform:translateY(80px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}