/* ==========================================================
   UNIÃO MADEIRAS — CSS DO FOOTER (style_footer.css)
   Estruturado, limpo e preparado para expansão
   ========================================================== */


/* ==========================================================
   FOOTER — ESTILO GERAL
========================================================== */

.um-footer {
    background: #006626;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
}

.um-footer a {
    color: #ffffff;
    text-decoration: none;
}

.um-footer a:hover {
    color: #f3b14d;
}


/* ==========================================================
   NAV SUPERIOR DO FOOTER
========================================================== */

.um-footer-nav {
    background: #00461b;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.um-footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    text-align: center;
}

.um-footer-nav-list li {
    display: inline-block;
    margin: 0 10px;
}

.um-footer-nav-list li a {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: .08em;
}


/* ==========================================================
   GRID PRINCIPAL DO FOOTER
========================================================== */

.footer-blocks {
    padding: 36px 0 32px;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.um-footer-box {
    padding: 10px 10px 0;
}

.um-footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 6px;
}


/* ==========================================================
   PARCEIROS
========================================================== */

.um-footer-partner-card {
    background: rgba(0,0,0,0.12);
    padding: 16px;
    border-radius: 14px;
    text-align: center;
}

.um-footer-partner-img {
    max-width: 260px;
    width: 100%;
    border-radius: 10px;
}


/* ==========================================================
   LISTA DE CIDADES
========================================================== */

.um-footer-cidades-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px; /* ajusta o alinhamento */
}

.um-footer-cidades-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 22px;
}

.um-footer-cidades-list li {
    margin-bottom: 4px;
    line-height: 1.28;
}

.um-footer-cidades-list a {
    font-size: 12px;
    color: #c8fbd4; /* verde suave */
    transition: .2s ease;
}

.um-footer-cidades-list a:hover {
    color: #ffffff;
}

.footer-cidades-empty {
    opacity: .6;
    font-size: 12px;
}


/* ==========================================================
   BOTÃO "VEJA ONDE COMPRAR"
========================================================== */

.footer-revendas-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 7px 18px;
    background: #004d1a;
    color: #c8fbd4;
    font-size: 13px;
    border-radius: 30px;
    border: 1px solid #0f7a36;
    text-decoration: none;
    transition: .2s ease;
    width: fit-content;
}

.footer-revendas-btn:hover {
    background: #0f7a36;
    color: #fff;
}


/* ==========================================================
   CONTATO
========================================================== */

.um-footer-contact p {
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.um-footer-contact p i {
    color: #25D366;
    width: 18px;
}

.um-footer-contact a {
    font-weight: 600;
}

.um-footer-contact a:hover {
    color: #f3b14d !important;
}


/* ==========================================================
   NEWSLETTER
========================================================== */

.um-footer-newsletter input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.um-footer-newsletter button {
    width: 100%;
    padding: 8px 18px;
    background: #004d1a;
    color: #fff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: .2s;
}

.um-footer-newsletter button:hover {
    background: #0f7a36;
}


/* ==========================================================
   LINKS INFERIORES (BRANDS)
========================================================== */

.um-footer-brands {
    background: #003815;
    text-align: center;
    padding: 8px 0;
    font-size: 11px;
    color: rgba(255,255,255,0.55);
    letter-spacing: .4px;
}

.um-footer-brands a {
    color: rgba(255,255,255,0.70);
    transition: .2s;
}

.um-footer-brands a:hover {
    color: #f3b14d;
}


/* ==========================================================
   COPYRIGHT
========================================================== */

.um-footer-copy {
    background: #003815;
    padding: 12px 0;
    font-size: 13px;
}



/* ==========================================================
   WHATSAPP FLUTUANTE
========================================================== */

.um-whatsapp-floating {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.um-whatsapp-link {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(7,94,84,.96);
    border-radius: 999px;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.35);
    transition: .15s ease;
}

.um-whatsapp-link:hover {
    transform: translateY(-2px);
    background: rgba(7,94,84,1);
}

.um-whatsapp-link i {
    color: #25D366;
    font-size: 18px;
}


/* ==========================================================
   RESPONSIVO
========================================================== */

@media (max-width: 768px) {
    .um-footer-cidades-list {
        columns: 1;
    }

    .footer-col {
        min-width: 100%;
    }

    .um-whatsapp-floating {
        right: 12px;
        bottom: 18px;
    }
}

/* ==========================================================
   AJUSTES FINOS – FOOTER
========================================================== */

/* 1 — Corrige a falta de margem lateral no footer */
.um-footer .wrapper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 18px; /* folga lateral no mobile */
}

/* 2 — Alinhar visual do bloco das cidades */
.um-footer-cidades-wrapper {
    padding: 0 10px;
}

.um-footer-cidades-list {
    margin-top: 6px;
}

/* Em mobile, deixar tudo centralizado e bonito */
@media (max-width: 768px) {
    .um-footer-cidades-wrapper {
        align-items: center;
        text-align: center;
    }

    .um-footer-cidades-list {
        columns: 1;
        width: 100%;
        text-align: center !important;
    }

    .um-footer-cidades-list li {
        margin-bottom: 6px;
    }

    .um-footer-cidades-wrapper a {
        display: inline-block;
    }
}

/* 3 — Botão “Veja onde comprar” melhor posicionado */
.footer-revendas-btn-box {
    margin-top: 10px;
    margin-bottom: 18px;
    text-align: center; /* centraliza */
}

@media (max-width: 768px) {
    .footer-revendas-btn-box {
        text-align: center; /* garantir no mobile */
        margin-top: 12px;
    }
}

.footer-revendas-btn {
    padding: 8px 20px;
    font-size: 13px;
}
/* ==========================================================
   AJUSTES FINOS – TITULAÇÃO DOS BLOCOS
========================================================== */

.um-footer-title {
    font-size: 16px; /* antes era 18px */
    padding-bottom: 6px;
    margin-bottom: 18px; /* mais espaço baixo */
}

/* mobile */
@media (max-width: 768px) {
    .um-footer-title {
        font-size: 15px;
        margin-bottom: 16px;
    }
}


/* ==========================================================
   AJUSTE DE CONTRASTE – FALE CONOSCO
========================================================== */

.um-footer-contact,
.um-footer-contact p,
.um-footer-contact span,
.um-footer-contact strong,
.um-footer-contact a {
    color: rgba(255,255,255,0.92) !important;
}

.um-footer-contact i {
    color: #25D366 !important;
}


/* ==========================================================
   ESPAÇAMENTO ENTRE OS BLOCOS
========================================================== */

.footer-col {
    margin-bottom: 32px; /* mais respiro */
}

/* no mobile pode ser ainda maior */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 42px;
    }
}


/* ==========================================================
   AJUSTE DO BLOCO DE CIDADES
========================================================== */

.um-footer-cidades-wrapper {
    margin-bottom: 20px; /* mais espaçamento da sessão seguinte */
}

.footer-revendas-btn-box {
    margin-top: 12px;
    margin-bottom: 20px;
}
/* ==========================================================
   AJUSTE — ESPAÇO ANTES DO BLOCO NEWSLETTER
========================================================== */

.um-footer-newsletter {
    margin-top: 26px; /* aumenta o espaço entre Fale Conosco → Newsletter */
}

/* Para mobile, deixamos ainda melhor */
@media (max-width: 768px) {
    .um-footer-newsletter {
        margin-top: 34px;
    }
}
/* ==========================================================
   PREMIUM — DIVISORES ENTRE SEÇÕES
========================================================== */

.um-footer-box {
    padding-top: 8px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 22px;
}

/* Remove borda da última coluna */
.footer-col:last-child .um-footer-box {
    border-bottom: none;
}


/* ==========================================================
   PREMIUM — ESPAÇAMENTO UNIFORME ENTRE BLOCOS
========================================================== */

.footer-col {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 48px;
    }
}


/* ==========================================================
   PREMIUM — BLOCO DAS CIDADES
========================================================== */

.um-footer-cidades-wrapper {
    margin-top: 6px;
    margin-bottom: 18px;
}

.um-footer-cidades-list {
    margin-bottom: 14px;
}


/* ==========================================================
   PREMIUM — NEWSLETTER (NOVO DESIGN)
========================================================== */

.um-footer-newsletter {
    margin-top: 32px;
}

.um-footer-newsletter h4 {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.um-footer-newsletter .mc-field-group input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border-radius: 40px;
    border: none;
    outline: none;
    font-size: 14px;
    color: #333;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.um-footer-newsletter button {
    width: 100%;
    padding: 10px 16px;
    background: #004d1a;
    border-radius: 40px;
    color: #ffffff;
    border: 1px solid #0f7a36;
    font-size: 14px;
    margin-top: 10px;
    transition: .25s ease;
}

.um-footer-newsletter button:hover {
    background: #0f7a36;
}

/* Garantir espaçamento extra no mobile */
@media (max-width: 768px) {
    .um-footer-newsletter {
        margin-top: 40px;
    }

    .um-footer-newsletter button {
        padding: 12px;
        font-size: 15px;
    }
}
/* ==========================================================
   PREMIUM MODE – CARDS + TITLES + ICONS + HIERARQUIA
========================================================== */

/* ----- CARDS ----- */
.um-footer-box {
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 18px 18px 22px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ----- TITULAÇÃO PREMIUM ----- */
.um-footer-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: #ffffff;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ----- ÍCONES SVG INLINE (Premium) ----- */
.um-footer-title svg {
    width: 16px;
    height: 16px;
    fill: #c8fbd4;
    opacity: 0.85;
}

/* ----- DESTAQUE “Atendemos em todo o Brasil” ----- */
.um-footer-cidades-wrapper .um-footer-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

.um-footer-cidades-wrapper .um-footer-title::after {
    content: "";
    display: block;
    height: 2px;
    width: 40%;
    background: #c8fbd4;
    margin-top: 6px;
    border-radius: 4px;
    opacity: 0.7;
}

/* ----- LISTA DE CIDADES PREMIUM ----- */
.um-footer-cidades-list {
    columns: 2;
    column-gap: 24px;
    padding-left: 4px;
}

.um-footer-cidades-list a {
    font-size: 12px;
    color: #c8fbd4;
    transition: .2s ease;
}

.um-footer-cidades-list a:hover {
    color: #ffffff;
}

/* ----- BOTÃO PREMIUM ----- */
.footer-revendas-btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 13px;
    background: linear-gradient(135deg, #004d1a, #036f29);
    border-radius: 30px;
    border: none;
    color: #eaffef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.footer-revendas-btn:hover {
    background: linear-gradient(135deg, #0a7a34, #0c933f);
    color: #ffffff;
}

/* ----- BLOCO FALE CONOSCO PREMIUM ----- */
.um-footer-contact p {
    margin: 7px 0;
}

.um-footer-contact a {
    font-weight: 600;
    color: #c8fbd4 !important;
}

.um-footer-contact a:hover {
    color: #ffffff !important;
}

/* ----- ÍCONES PREMIUM (Contatos) ----- */
.um-footer-contact i {
    color: #35e27d !important;
}

/* ----- NEWSLETTER PREMIUM ----- */
.um-footer-newsletter input[type="email"] {
    border-radius: 40px;
    padding: 12px 16px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.um-footer-newsletter button {
    border-radius: 40px;
    padding: 12px 16px;
    background: linear-gradient(135deg,#004d1a,#036f29);
    border: 0;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.um-footer-newsletter button:hover {
    background: linear-gradient(135deg,#0d8b3b,#0fa94b);
}

/* ----- RESPONSIVO PREMIUM ----- */
@media (max-width: 768px) {
    .um-footer-cidades-list {
        columns: 1;
        text-align: center;
    }

    .um-footer-box {
        padding: 16px;
        margin-bottom: 36px;
    }

    .footer-revendas-btn {
        margin-bottom: 14px;
    }
}
/* ==========================================================
   PREMIUM MODE – CARDS + TITLES + ICONS + HIERARQUIA
========================================================== */

/* ----- CARDS ----- */
.um-footer-box {
    background: rgba(255,255,255,0.03);
    border-radius: 14px;
    padding: 18px 18px 22px;
    margin-bottom: 28px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.06);
}

/* ----- TITULAÇÃO PREMIUM ----- */
.um-footer-title {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    color: #ffffff;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ----- ÍCONES SVG INLINE (Premium) ----- */
.um-footer-title svg {
    width: 16px;
    height: 16px;
    fill: #c8fbd4;
    opacity: 0.85;
}

/* ----- DESTAQUE “Atendemos em todo o Brasil” ----- */
.um-footer-cidades-wrapper .um-footer-title {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
}

.um-footer-cidades-wrapper .um-footer-title::after {
    content: "";
    display: block;
    height: 2px;
    width: 40%;
    background: #c8fbd4;
    margin-top: 6px;
    border-radius: 4px;
    opacity: 0.7;
}

/* ----- LISTA DE CIDADES PREMIUM ----- */
.um-footer-cidades-list {
    columns: 2;
    column-gap: 24px;
    padding-left: 4px;
}

.um-footer-cidades-list a {
    font-size: 12px;
    color: #c8fbd4;
    transition: .2s ease;
}

.um-footer-cidades-list a:hover {
    color: #ffffff;
}

/* ----- BOTÃO PREMIUM ----- */
.footer-revendas-btn {
    display: inline-block;
    padding: 9px 22px;
    font-size: 13px;
    background: linear-gradient(135deg, #004d1a, #036f29);
    border-radius: 30px;
    border: none;
    color: #eaffef;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.footer-revendas-btn:hover {
    background: linear-gradient(135deg, #0a7a34, #0c933f);
    color: #ffffff;
}

/* ----- BLOCO FALE CONOSCO PREMIUM ----- */
.um-footer-contact p {
    margin: 7px 0;
}

.um-footer-contact a {
    font-weight: 600;
    color: #c8fbd4 !important;
}

.um-footer-contact a:hover {
    color: #ffffff !important;
}

/* ----- ÍCONES PREMIUM (Contatos) ----- */
.um-footer-contact i {
    color: #35e27d !important;
}

/* ----- NEWSLETTER PREMIUM ----- */
.um-footer-newsletter input[type="email"] {
    border-radius: 40px;
    padding: 12px 16px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.um-footer-newsletter button {
    border-radius: 40px;
    padding: 12px 16px;
    background: linear-gradient(135deg,#004d1a,#036f29);
    border: 0;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.um-footer-newsletter button:hover {
    background: linear-gradient(135deg,#0d8b3b,#0fa94b);
}

/* ----- RESPONSIVO PREMIUM ----- */
@media (max-width: 768px) {
    .um-footer-cidades-list {
        columns: 1;
        text-align: center;
    }

    .um-footer-box {
        padding: 16px;
        margin-bottom: 36px;
    }

    .footer-revendas-btn {
        margin-bottom: 14px;
    }
}
/* ==========================================================
   FOOTER – MAPA DO SITE PREMIUM
========================================================== */

.um-footer-sitemap {
    margin-top: 26px;
    margin-bottom: 10px;
    padding: 10px 0 20px;
    text-align: center;
}

.um-footer-sitemap-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.um-footer-sitemap-list li {
    display: inline-block;
    margin: 0 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

.um-footer-sitemap-list a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: .2s ease;
}

.um-footer-sitemap-list a:hover {
    color: #f3b14d;
}

/* Separadores nos submenus */
.um-footer-sitemap-list li {
    white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {

    .um-footer-sitemap-list li {
        display: block;
        margin: 6px 0;
        text-align: center;
    }

    .um-footer-sitemap-list li a {
        display: inline-block;
        margin: 0 3px;
    }
}
/* ===============================
   FOOTER – MENU SIMPLES EM LINHA
=============================== */

.um-footer-simple-nav {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 12px;
    padding: 12px 0;       /* ← AQUI! adicionando respiro interno */
    font-size: 13px;
    line-height: 1.9;
}


.um-footer-simple-nav a {
    color: rgba(255,255,255,0.90);
    text-decoration: none;
    margin: 0 4px;
    transition: .2s ease;
}

.um-footer-simple-nav a:hover {
    color: #f3b14d;
}

.um-footer-simple-nav .sep {
    margin: 0 6px;
    color: rgba(255,255,255,0.45);
}

/* MOBILE — tudo alinhado sem quebrar feio */
@media (max-width: 768px) {
    .um-footer-simple-nav {
        font-size: 12px;
        padding: 0 10px;
        line-height: 1.6;
    }
}
