/* ========================================
   Header Top Bar
   ======================================== */

.header-topbar {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.40);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding: 7px 0;
}

.header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-topbar__social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-topbar__social a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1;
    transition: color 0.3s ease;
    text-decoration: none;
}

.header-topbar__social a:hover {
    color: var(--main-color);
}

/* ========================================
   Language Switcher (visual)
   ======================================== */

.header-topbar__lang {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-topbar__lang-item {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.55);
    padding: 3px 9px;
    border-radius: 3px;
    cursor: pointer;
    letter-spacing: 0.5px;
    font-family: var(--font-family-Poppins);
    transition: color 0.3s ease, background 0.3s ease;
    user-select: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.header-topbar__lang-item .fi {
    width: 18px;
    height: 13px;
    border-radius: 2px;
    flex-shrink: 0;
}

.header-topbar__lang-item.active,
.header-topbar__lang-item:hover {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.12);
}

.header-topbar__lang-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    user-select: none;
}

/* Ocultar topbar en sticky header */
.fixed_menu .header-topbar {
    display: none;
}

/* ========================================
   Google Translate — ocultar UI por defecto,
   se controla con los banderines ES | EN | PT
   ======================================== */

iframe.goog-te-banner-frame,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
body > .skiptranslate,
body > .skiptranslate > iframe,
iframe.skiptranslate,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
}

html body {
    top: 0px !important;
    position: static !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ========================================
   Header CTA Button (Cotizar)
   ======================================== */

.header-cta-btn {
    padding: 10px 24px !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}

/* Override la regla que oculta btn-style-two en header transparente */
.header:not(.header_style_two) .other_elements_wrapper .header-cta-btn {
    display: inline-block !important;
}

/* ========================================
   Hero Banner — Botones CTA
   ======================================== */

.banner-one_buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.banner-one_buttons .btn-style-two {
    padding: 14px 32px;
}

.banner-one_buttons .btn-style-one {
    padding: 14px 32px;
    border-color: rgba(255, 255, 255, 0.75);
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    color: #fff !important;
    transform: scale(1.10);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.50);
}

.whatsapp-float i {
    line-height: 1;
}

@media screen and (max-width: 575px) {
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 60px;
        right: 14px;
    }

    .banner-one_buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Footer Redesign
   ======================================== */

.footer-redesign {
    background-color: var(--color-two);
    padding: 0;
}

.footer-redesign__upper {
    padding: 70px 0 50px;
}

.footer-redesign__col {
    margin-bottom: 40px;
}

.footer-redesign__logo {
    margin-bottom: 22px;
}

.footer-redesign__logo img {
    max-height: 64px;
    width: auto;
}

.footer-redesign__desc {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 26px;
}

.footer-redesign__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--main-color);
    color: #fff !important;
    padding: 11px 24px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
    text-decoration: none !important;
}

.footer-redesign__cta:hover {
    background: #3a82bb;
}

.footer-redesign__heading {
    color: var(--white-color);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-family-Poppins);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    padding-bottom: 12px;
}

.footer-redesign__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-redesign__links li {
    margin-bottom: 11px;
}

.footer-redesign__links li a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-redesign__links li a i {
    font-size: 9px;
    color: var(--main-color);
    flex-shrink: 0;
}

.footer-redesign__links li a:hover {
    color: var(--white-color);
    padding-left: 4px;
}

.footer-redesign__social {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-redesign__social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.70) !important;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-redesign__social-link:hover {
    border-color: var(--main-color);
    background: var(--main-color);
    color: #fff !important;
}

.footer-redesign__social-link--wa:hover {
    border-color: #25D366;
    background: #25D366;
}

.footer-redesign__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-redesign__contact-item i {
    color: var(--main-color);
    font-size: 14px;
    width: 16px;
    flex-shrink: 0;
}

.footer-redesign__contact-item a,
.footer-redesign__contact-item span {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-redesign__contact-item a:hover {
    color: var(--white-color);
}

/* Sellos */
.footer-redesign__sellos {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-redesign__sellos-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.footer-redesign__sello {
    max-height: 84px;
    width: auto;
    opacity: 0.80;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-redesign__sello:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Barra inferior */
.footer-redesign__bottom {
    padding: 22px 0;
}

.footer-redesign__copyright {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

.footer-redesign__legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.footer-redesign__legal li {
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-redesign__legal li:first-child {
    padding-left: 0;
}

.footer-redesign__legal li:last-child {
    border-right: none;
    padding-right: 0;
}

.footer-redesign__legal li a {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
    transition: color 0.3s;
    text-decoration: none;
}

.footer-redesign__legal li a:hover {
    color: var(--white-color);
}

@media screen and (max-width: 767px) {
    .footer-redesign__upper {
        padding: 50px 0 20px;
    }

    .footer-redesign__sellos-inner {
        gap: 28px;
    }

    .footer-redesign__sello {
        max-height: 64px;
    }

    .footer-redesign__bottom .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .footer-redesign__legal {
        justify-content: center;
    }

    .footer-redesign__legal li:first-child {
        padding-left: 14px;
    }
}
