/* =============================================
   ULTRAGUARD — FOOTER CSS (self-contained)
   Include AFTER Bootstrap CSS + Bootstrap Icons CSS.
============================================= */

/* ── TOKENS ── */
:root {
    --red: #d91c1c;
    --red-dark: #a81515;
    --red-glow: rgba(217, 28, 28, 0.22);
    --ink: #0c0c0c;
    --dark: #111111;
    --dark-2: #1a1a1a;
    --panel: #222222;
    --muted: #666666;
    --line: #e8e8e8;
    --soft: #f5f5f3;
    --white: #ffffff;
    --radius: 6px;
    --radius-lg: 12px;
    --container: 1200px;
    --gap: 20px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .10);
    --shadow-lg: 0 32px 80px rgba(0, 0, 0, .16);
}

/* ── BASE RESET ── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--white);
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin-top: 0;
}

/* ── CONTAINER ── */
.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

h4 {
    margin: 0 0 .5em;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* ── FOOTER ── */
.site-footer {
    background: var(--ink);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 36px;
    padding: 72px 0 52px;
}

.footer-logo {
    width: 168px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, .45);
    font-size: 17px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, .6);
    transition: all .25s ease;
    font-size: 16.8px;
}

.footer-social a:hover {
    background: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-social i {
    font-size: 16.8px;
}

.footer-contact {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, .62);
    font-size: 15px;
    line-height: 1.5;
}

.footer-contact i {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--red);
    border-radius: 50%;
    color: #fff;
    font-size: 12.8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, .62);
}

.footer-contact a:hover {
    color: var(--red);
}

.footer-countries {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.footer-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px  8px 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-flag:hover {
    background: rgba(217, 28, 28, .12);
    border-color: rgba(217, 28, 28, .3);
    color: #fff;
    transform: translateY(-2px);
}

.footer-flag img {
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .25);
}

.footer-flag span {
    color: rgba(255, 255, 255, .85);
    font-weight: 700;
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(255, 255, 255, .6);
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 10px;
    transition: color .15s;
    display: flex;
}
.footer-contact span , .footer-bottom-inner span{
       font-size: 17px;
}

.footer-col a:hover {
    color: var(--red);
    
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .35);
}

.footer-bottom-inner span b {
    color: var(--red);
}

.footer-bottom-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .35);
    transition: color .15s;
}

.footer-bottom-links a:hover {
    color: var(--red);
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 500;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
    transition: transform .2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float img {
    width: 34px;
    height: 34px;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

.btn-site{
    background-color: var(--red);
    color: #fff;
    border-radius: 4px;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}