/* ===============================
   FOOTER BASE
================================= */
.footer-pro {
    background: #000;
    color: #cbd5e1;
    font-family: "Inter", sans-serif;
    position: relative;
    overflow: hidden;
}

/* CONTAINER */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 25px);
}

/* ===============================
   TOP SECTION
================================= */
.footer-top {
    padding: clamp(40px, 6vw, 60px) 0;
}

.footer-top .footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 4vw, 40px);
}

/* COLUMN */
.footer-col {
    display: flex;
    flex-direction: column;
}

/* LOGO */
.footer-logo {
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

/* DESCRIPTION */
.footer-desc {
    font-size: clamp(14px, 2vw, 15px);
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* TITLES */
.footer-title {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

/* ===============================
   LINKS
================================= */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #CE0F2C;
    padding-left: 6px;
}

/* ===============================
   CONTACT
================================= */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact-item {
    font-size: 14px;
    margin-bottom: 10px;
    color: #94a3b8;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #CE0F2C;
}

/* ===============================
   SOCIAL
================================= */
.footer-socials {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-social-link {
    margin-top: 10px;
    width: 44px;
    height: 44px;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.footer-social-link:hover {
    transform: translateY(-6px) scale(1.1);
    background: #ffffff;
    box-shadow:
        0 10px 25px rgba(206,15,44,0.4),
        0 0 15px rgba(255,75,106,0.6);
}

/* BRAND COLORS */
.footer-social-link:hover .fa-facebook-f { color: #1877f2; }
.footer-social-link:hover .fa-x-twitter { color: #000; }
.footer-social-link:hover .fa-linkedin-in { color: #0a66c2; }
.footer-social-link:hover .fa-youtube { color: #ff0000; }
.footer-social-link:hover .fa-instagram { color: #e1306c; }

/* ===============================
   BOTTOM SECTION
================================= */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    background: #B40420;
    padding: 0 0;
}

.footer-bottom__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.footer-bottom__left { justify-self: start; }
.footer-bottom__right { justify-self: end; }

.footer-bottom__text {
    text-align: center;
    font-size: 14px;
    color: #ffffff;
}

/* MENU */
.footer-bottom__menu {
    list-style: none;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom__menu a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.footer-bottom__menu a:hover {
    color: #fff;
}

/* CREDIT */
.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.footer-credit img {
    height: 14px;
}

.footer-credit:hover {
    color: #fff;
}

/* ===============================
   FLOATING CTA (RIGHT CENTER)
================================= */
.footer-floating-cta { 
    position: fixed;
    right: clamp(5px, 2vw, 5px);
    top: 50%;
    transform: translateY(-50%);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(10px, 2vw, 14px) clamp(8px, 2vw, 12px);
    border-radius: 50px;

    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 600;

    color: #fff;
    text-decoration: none;

    background: linear-gradient(135deg, #CE0F2C, #ff4d6d);

    box-shadow:
        0 10px 30px rgba(206,15,44,0.4),
        inset 0 0 10px rgba(255,255,255,0.15);

    writing-mode: vertical-rl;
    text-orientation: mixed;

    z-index: 9999;
    overflow: hidden;

    transition: all 0.3s ease;
    animation: pulseGlow 2.5s infinite;
}

/* CTA Hover */
.footer-floating-cta:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ===============================
   WHATSAPP BUTTON
================================= */
.footer-whatsapp-cta {
    position: fixed;
    right: clamp(5px, 2vw, 5px);
    bottom: clamp(15px, 3vw, 25px);

    width: clamp(48px, 6vw, 56px);
    height: clamp(48px, 6vw, 56px);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #CE0F2C, #CE0F2C);
    color: #fff;

    font-size: clamp(20px, 2.5vw, 24px);

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(37,211,102,0.4),
        inset 0 0 10px rgba(255,255,255,0.2);

    z-index: 9999;

    transition: all 0.3s ease;
    animation: whatsappPulse 2.5s infinite;
}

.footer-whatsapp-cta:hover {
    transform: scale(1.15);
}

/* ===============================
   ANIMATIONS
================================= */
@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(206,15,44,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(206,15,44,0); }
    100% { box-shadow: 0 0 0 0 rgba(206,15,44,0); }
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(250, 5, 5, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1024px) {
    .footer-top .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .footer-top .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-bottom__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom__left,
    .footer-bottom__right {
        justify-self: center;
    }

    .footer-bottom__menu {
        justify-content: center;
    }
}

/* SMALL DEVICE */
@media (max-width: 480px) {

    .footer-logo { font-size: 20px; }
    .footer-desc { font-size: 14px; }
    .footer-title { font-size: 15px; }

    .footer-floating-cta {
        right: 5px;
        padding: 12px 8px;
    }

    .footer-whatsapp-cta {
        right: 5px;
        bottom: 15px;
    }
}