*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.footer {
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 60px 48px 40px;
}

.footer-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/* Left */

.footer-left{
    max-width:420px;}

.footer-left h3{

    font-size:34px;
    letter-spacing:4px;
    font-weight:500;
    margin-bottom:15px;
    color:#111;
}

.footer-left p{
    color:#666;
    font-size:18px;
    line-height:32px;
}

/* Center */

.footer-center ul {
    display: flex;
    list-style: none;
    gap: 25px;
}
.footer-center a{

    color:#111;
    text-decoration:none;
    font-size:17px;
    transition:.3s;
}

.footer-center a:hover{
    color:#ef5b3f;
}

/* Right */

.footer-right{
    color:#666;
    font-size:17px;
    white-space:nowrap;
}

/* Whatsapp */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 100px;
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37,211,102,.45);
    z-index: 999;
    transition: .3s;
}

.whatsapp-btn:hover{
    transform:scale(1.08);
}

