
/* =========================
   FOOTER
========================= */
/* ===== FOOTER ===== */
.footer {
    background: #0d2b45;
    color: #ddd;
    padding-top: 60px;
}

/* GRID */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 40px;
    padding-bottom: 40px;
}

/* TITLE */
.footer-col h3,
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
}

/* TEXT */
.footer-col p {
    font-size: 14px;
    line-height: 1.7;
}

/* LIST */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

/* LINK */
.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ff7f00;
}

/* ICON */
.footer-col i {
    margin-right: 8px;
    color: #ff7f00;
}

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ff7f00;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    font-size: 13px;
}

/* ===== WHATSAPP ===== */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}
