*,
*::before,
*::after{
    box-sizing:border-box;
}
html,
body{
    overflow-x:hidden;
    width:100%;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Poppins, sans-serif;
    color:var(--dark);
    background:white;
    padding-top:95px;
}

section{
    padding:65px 0;
}

.container-custom{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    font-size:2.5rem;
    font-weight:700;
    margin-bottom:12px;
}

.section-divider{
    width:70px;
    height:4px;

    background:var(--gold);

    margin:0 auto 40px auto;

    border-radius:10px;
}

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px){
    .whatsapp-float{
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width:768px){

    body{
        padding-top:160px;
    }

}
