﻿/* ===================================================================
   OFERTASECUPONS.COM.BR – VERSÃO FINAL (V11)
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ------------------------- 1. VARIÁVEIS E BASE --------------------- */
:root {
    --cor-primaria: #d90429; /* Vermelho Principal */
    --cor-primaria-hover: #b00320; /* Vermelho Escuro */
    --cor-secundaria: #2d3142; /* Azul Escuro (Menus/Texto) */
    --cor-fundo: #f4f5f7; /* Cinza Suave (Background) */
    --cor-texto: #212529; /* Preto Suave */
    --cor-texto-claro: #6c757d; /* Cinza Médio */
    --cor-borda: #dee2e6;
    --radius: 12px;
    --shadow-suave: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transicao: 0.3s ease;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

main {
    flex: 1;
}

a {
    text-decoration: none;
    color: var(--cor-primaria);
    transition: 0.2s;
}

    a:hover {
        color: var(--cor-primaria-hover);
        text-decoration: none;
    }

/* ---------------------------- 2. HEADER ---------------------------- */
.header-principal {
    background-color: #fff;
    border-bottom: 1px solid var(--cor-borda);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-principal {
    max-height: 55px;
}

.barra-busca .form-control {
    border-radius: 50px 0 0 50px;
    border: 1px solid var(--cor-borda);
    border-right: 0;
    padding: 0.75rem 1rem;
}

    .barra-busca .form-control:focus {
        box-shadow: none;
        border-color: var(--cor-primaria);
    }

.barra-busca .btn-busca {
    background-color: var(--cor-primaria);
    color: #fff;
    border: 1px solid var(--cor-primaria);
    border-radius: 0 50px 50px 0;
    padding: 0 1.5rem;
}

    .barra-busca .btn-busca:hover {
        background-color: var(--cor-primaria-hover);
        border-color: var(--cor-primaria-hover);
    }

/* MENU */
.menu-principal {
    background-color: var(--cor-secundaria);
}

    .menu-principal .nav-link {
        color: rgba(255,255,255,0.9) !important;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
        border-bottom: 3px solid transparent;
        transition: var(--transicao);
    }

        .menu-principal .nav-link:hover,
        .menu-principal .nav-item.active .nav-link {
            color: #fff !important;
            background-color: rgba(255, 255, 255, 0.1);
            border-bottom-color: var(--cor-primaria);
        }

/* ------------------------- 3. HERO BANNER -------------------------- */
.hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--cor-primaria) 0%, var(--cor-secundaria) 100%);
    border-radius: 16px;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(217, 4, 41, 0.2);
    margin-bottom: 2rem;
}

    .hero-banner::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
    }

/* ---------------------- 4. CARD DE PRODUTO (PREMIUM GENÉRICO) -------------------- */

.oferta-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(0,0,0,0.08);
    transition: all .25s ease;
    position: relative;
    height: 100%;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

    .oferta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.12);
        border-color: var(--cor-borda);
    }

.card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Container de Imagem */
.oferta-img-wrapper {
    width: 100%;
    height: 220px; /* Altura fixa para alinhar grid */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    position: relative;
}

    .oferta-img-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.oferta-card:hover .oferta-img-wrapper img {
    transform: scale(1.05);
}

/* Badges */
.oferta-store-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    z-index: 2;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .oferta-store-badge img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.oferta-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--cor-primaria); /* Usa o vermelho do site */
    color: #fff;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Corpo do Card */
.oferta-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.oferta-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cor-texto);
    height: 2.8em; /* Altura para 2 linhas */
    overflow: hidden;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 10px;
}

.oferta-preco-box {
    margin-top: auto; /* Empurra para baixo */
    margin-bottom: 10px;
}

.oferta-old {
    font-size: 0.85rem;
    color: var(--cor-texto-claro);
    text-decoration: line-through;
    margin-right: 6px;
    display: block;
}

.oferta-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--cor-primaria);
    display: block;
}

/* Botão */
.oferta-btn {
    width: 100%;
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: background .2s;
    text-transform: uppercase;
}

    .oferta-btn:hover {
        background: var(--cor-primaria-hover);
    }

/* -------------------------- 5. CARD DE CUPOM (CORRIGIDO) ----------------------- */
.coupon-card-v2 {
    display: flex;
    background: #fff;
    border: 1px solid var(--cor-borda);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transicao);
    height: 100%;
    min-height: 140px; /* Garante altura mínima */
}

    .coupon-card-v2:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-suave);
        border-color: var(--cor-primaria);
    }

/* Logo da Loja (Esquerda) */
.coupon-store-logo {
    width: 110px; /* Um pouco mais largo */
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-right: 2px dashed var(--cor-borda);
    position: relative;
}

    /* Bolinhas de Corte do Ticket */
    .coupon-store-logo::before, .coupon-store-logo::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 16px;
        background: var(--cor-fundo);
        border-radius: 50%;
        right: -8px;
        border: 1px solid var(--cor-borda);
        z-index: 2;
    }

    .coupon-store-logo::before {
        top: -9px;
        border-bottom-color: transparent;
    }

    .coupon-store-logo::after {
        bottom: -9px;
        border-top-color: transparent;
    }

    .coupon-store-logo img {
        max-width: 80px;
        max-height: 80px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

/* Detalhes (Centro) */
.coupon-details {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.coupon-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 5px;
    line-height: 1.3;
}

.coupon-description {
    font-size: 0.85rem;
    color: var(--cor-texto-claro);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Ação (Direita - CORRIGIDO) */
.coupon-action {
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    background: #fff;
    border-left: 1px solid #f0f0f0;
}

.btn-ver-cupom {
    display: block;
    width: 100%;
    background: var(--cor-primaria);
    color: #fff !important;
    text-align: center;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    text-transform: uppercase;
}

    .btn-ver-cupom:hover {
        background: var(--cor-primaria-hover);
    }

.coupon-code-wrapper {
    width: 100%;
}

/* -------------------------- 6. STORIES ----------------------------- */
.category-pill {
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
}

    .category-pill .icon-circle {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--cor-borda);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--cor-secundaria);
        margin: 0 auto 0.5rem;
        transition: var(--transicao);
        box-shadow: var(--shadow-suave);
    }

    .category-pill:hover .icon-circle {
        transform: scale(1.1);
        background: var(--cor-primaria);
        color: #fff;
        border-color: var(--cor-primaria);
    }

    .category-pill span {
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--cor-texto);
        display: block;
    }

/* -------------------------- 7. RODAPÉ DARK ------------------------- */
/* --- RODAPÉ (V2 ESTILIZADO) --- */
.footer-principal {
    background-color: var(--cor-secundaria);
    color: rgba(255,255,255,0.75);
    border-top: 4px solid var(--cor-primaria);
}

    .footer-principal h5 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: rgba(255,255,255,0.75);
    transition: 0.2s;
}

    .footer-list a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-copyright {
    background: rgba(0,0,0,0.2);
}

.social-btn {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: 0.3s;
}

    .social-btn:hover {
        background: var(--cor-primaria);
        transform: translateY(-3px);
    }

/* ------------------------ 8. EXTRAS E PLUGINS ---------------------- */

/* Swiper (Setas) */
.swiper-container {
    width: 100%;
    padding: 10px 5px;
    overflow: hidden;
}

.product-swiper {
    padding-bottom: 40px;
}

.swiper-button-next, .swiper-button-prev {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    color: var(--cor-secundaria);
}

    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 1.2rem;
        font-weight: 700;
    }

.swiper-pagination-bullet-active {
    background-color: var(--cor-primaria) !important;
}

/* Card Anúncio (Placeholder) */
.ad-card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 380px;
    border-radius: 14px;
    background: linear-gradient(45deg, var(--cor-secundaria), #4a4e69);
    color: white;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .ad-card-placeholder:hover {
        transform: translateY(-5px);
        color: white;
        border-color: #fff;
    }

    .ad-card-placeholder::after {
        content: 'Publicidade';
        font-weight: 700;
        font-size: 1.2rem;
    }

/* Pulse Animation */
.pulse-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(217, 4, 41, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(217, 4, 41, 0);
    }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    background: #212529;
    color: white;
    border-radius: 10px;
    padding: 1.5rem;
    z-index: 9999;
    border-left: 5px solid var(--cor-primaria);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-check-input.lgpd-check:checked {
    background-color: var(--cor-primaria);
    border-color: var(--cor-primaria);
}

/* GRID FIX */
.row {
    margin-right: -12px;
    margin-left: -12px;
}

[class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 2rem 1rem;
        text-align: center;
    }

    .section-header {
        flex-direction: row;
        align-items: center;
    }

    .lgpd-banner {
        bottom: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        border-left: none;
        border-top: 4px solid var(--cor-primaria);
    }

    /* Ajuste Cupom Mobile */
    .coupon-card-v2 {
        flex-direction: column;
        text-align: center;
    }

    .coupon-store-logo {
        width: 100%;
        border-right: none;
        border-bottom: 2px dashed var(--cor-borda);
        height: 80px;
    }

    .coupon-action {
        width: 100%;
        background: #f8f9fa;
        border-left: none;
        border-top: 1px solid var(--cor-borda);
    }
}

/* --- CARD DE CUPOM (AGORA PARECIDO COM O DE PRODUTO) --- */
.cupom-card-vertical {
    background: #fff;
    border: 1px dashed var(--cor-borda);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transicao);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

    .cupom-card-vertical:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
        border-color: var(--cor-primaria);
    }

.cupom-header {
    background: #fdfdfd;
    padding: 15px;
    border-bottom: 1px dashed var(--cor-borda);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

    .cupom-header img {
        max-height: 60px;
        max-width: 100px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

.cupom-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cupom-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 5px;
}

.cupom-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.cupom-btn {
    width: 100%;
    background: transparent;
    color: var(--cor-primaria);
    border: 2px dashed var(--cor-primaria);
    padding: 8px;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.2s;
}

    .cupom-btn:hover {
        background: var(--cor-primaria);
        color: #fff;
    }

/* --- LOJAS PARCEIRAS --- */
.partner-logos-section {
    background: #fff;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-suave);
}

.partner-logo {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    margin: 0 auto;
}

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }


/* --- CARD DE CUPOM (AGORA PARECIDO COM O DE PRODUTO) --- */
.cupom-card-vertical {
    background: #fff;
    border: 1px dashed var(--cor-borda);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transicao);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

    .cupom-card-vertical:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
        border-color: var(--cor-primaria);
    }

.cupom-header {
    background: #fdfdfd;
    padding: 15px;
    border-bottom: 1px dashed var(--cor-borda);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

    .cupom-header img {
        max-height: 60px;
        max-width: 100px;
        object-fit: contain;
        mix-blend-mode: multiply;
    }

.cupom-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.cupom-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-primaria);
    margin-bottom: 5px;
}

.cupom-desc {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}

.cupom-btn {
    width: 100%;
    background: transparent;
    color: var(--cor-primaria);
    border: 2px dashed var(--cor-primaria);
    padding: 8px;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.2s;
}

    .cupom-btn:hover {
        background: var(--cor-primaria);
        color: #fff;
    }

/* --- LOJAS PARCEIRAS --- */
.partner-logos-section {
    background: #fff;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-suave);
}

.partner-logo {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    margin: 0 auto;
}

    .partner-logo:hover {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

/* --- RODAPÉ (V2 ESTILIZADO) --- */
.footer-principal {
    background-color: var(--cor-secundaria);
    color: rgba(255,255,255,0.75);
    border-top: 4px solid var(--cor-primaria);
}

    .footer-principal h5 {
        color: #fff;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

.footer-list li {
    margin-bottom: 8px;
}

.footer-list a {
    color: rgba(255,255,255,0.75);
    transition: 0.2s;
}

    .footer-list a:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-copyright {
    background: rgba(0,0,0,0.2);
}

.social-btn {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    transition: 0.3s;
}

    .social-btn:hover {
        background: var(--cor-primaria);
        transform: translateY(-3px);
    }

/* --- STORIES --- */
.category-pill {
    display: block;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
}

    .category-pill .icon-circle {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--cor-borda);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: var(--cor-secundaria);
        margin: 0 auto 0.5rem;
        transition: var(--transicao);
        box-shadow: var(--shadow-suave);
    }

    .category-pill:hover .icon-circle {
        transform: scale(1.1);
        border-color: var(--cor-primaria);
        background: var(--cor-primaria);
        color: #fff;
    }

    .category-pill span {
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--cor-texto);
    }



/* --- AJUSTES ESPECÍFICOS PORTAL CUPONS --- */
.cupom-card-meliuz {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    height: 100%;
}

    .cupom-card-meliuz:hover {
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        border-color: #5e17eb;
        transform: translateY(-3px);
    }

    .cupom-card-meliuz::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: #5e17eb;
        opacity: 0;
        transition: 0.2s;
    }

    .cupom-card-meliuz:hover::before {
        opacity: 1;
    }

.cp-logo {
    width: 65px;
    height: 65px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    border-radius: 50%;
    border: 1px solid #f0f0f0;
    padding: 5px;
    background: #fff;
}

    .cp-logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.cp-content {
    flex-grow: 1;
    padding-right: 10px;
    overflow: hidden;
}

.cp-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.3;
}

.cp-desc {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0;
}

.btn-cp {
    background: #fff;
    color: #5e17eb;
    border: 1px solid #5e17eb;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    transition: 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cupom-card-meliuz:hover .btn-cp {
    background: #5e17eb;
    color: #fff;
}

.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.x-small {
    font-size: 0.7rem;
}

/* --- FOOTER MODERNO --- */
.footer-moderno {
    background: #111; /* Fundo escuro elegante */
    color: #e0e0e0;
    font-family: 'Montserrat', sans-serif;
    border-top: 5px solid #d90429; /* Linha de destaque no topo */
}

.footer-logo {
    max-height: 50px;
    filter: brightness(0) invert(1); /* Deixa o logo branco se for imagem */
    margin-bottom: 20px;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

    /* Linha decorativa abaixo dos títulos */
    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background-color: #d90429;
    }

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

    .footer-list a:hover {
        color: #d90429; /* Cor de destaque ao passar o mouse */
        padding-left: 5px; /* Efeito de movimento */
    }

/* Botões Sociais */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-btn:hover {
        background: #d90429;
        color: #fff;
        transform: translateY(-3px);
    }

/* Newsletter Input */
.footer-moderno input.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

    .footer-moderno input.form-control:focus {
        background: rgba(255,255,255,0.2);
        box-shadow: none;
        border-color: #d90429;
    }

    .footer-moderno input.form-control::placeholder {
        color: #aaa;
    }

/* Rodapé Inferior */
.footer-bottom {
    background: #080808; /* Tom mais escuro */
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #777;
}