@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --azul-marinho: #0a2342;
    --amarelo-forte: #ffd700;
    --preto: #000;
    --cinza-escuro: #333;
    --cinza-claro: #f0f0f0;
    --branco: #fff;
    --cor-destaque: #e63946;
    --cor-texto-principal: #1d3557;
    --verde-whatsapp: #25D366;
}

/* Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: var(--cinza-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 30px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 50px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}

.header {
    position: fixed;
    top: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 2rem;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 65px;
    width: auto;
}

.navbar {
    display: flex;
    gap: 1rem;
}

.navbar a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--preto);
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.navbar a i {
    font-size: 1.2rem;
}

.navbar a span {
    font-size: 0.8rem;
}

.navbar a:hover {
    color: var(--amarelo-forte);
    transform: translateY(-2px);
}

.header-right .btn-favoritos {
    background-color: var(--azul-marinho);
    color: var(--branco);
    padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(0.8rem, 2.5vw, 1.2rem);
    border-radius: 10px;
    font-weight: 600;
    font-size: clamp(0.8rem, 2vw, 1rem);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
}

.header-right .btn-favoritos:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(10, 35, 66, 0.2);
    background-color: var(--amarelo-forte);
    color: var(--preto);
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--amarelo-forte);
}

/* =================================
   NOVO MENU DROPDOWN (HAMBÚRGUER)
   ================================= */
.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Container principal do menu dropdown */
.mobile-dropdown-menu {
    position: fixed;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(233, 231, 231, 0.95);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.98);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

/* Estado ativo do menu */
.mobile-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Cabeçalho do menu (logo e botão de fechar) */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-logo {
    height: 80px;
    width: auto;
}

.close-menu-icon {
    font-size: 1.8rem;
    color: var(--cinza-escuro);
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

.close-menu-icon:hover {
    color: var(--cor-destaque);
    transform: rotate(90deg);
}

/* Navegação dentro do menu */
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu-nav a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--cor-texto-principal);
    transition: background-color 0.3s, padding-left 0.3s, color 0.3s;
}

.menu-nav a:hover {
    background-color: var(--azul-marinho);
    color: var(--amarelo-forte);
    padding-left: 1.5rem;
}

.menu-nav a:hover i {
    color: var(--amarelo-forte);
}

.menu-nav a i {
    font-size: 1.2rem;
    color: var(--azul-marinho);
    width: 20px;
    text-align: center;
    transition: color 0.3s;
}

@media (max-width: 990px) {

    .navbar,
    .header-right {
        display: none;
    }

    .mobile-menu-icon {
        display: block;
    }

    .sidebar {
        width: 70%;
        height: 80vh;
    }
}

@media (max-width: 405px) {
    .menu-footer {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .social-links-menu a {
        margin-left: 0.8rem;
    }
}

/* Rodapé do menu (localização e redes sociais) */
.menu-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.mobile-dropdown-menu .menu-footer .btn-agendar-reuniao-mobile {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    color: var(--azul-marinho);
    /* Cor de texto escura */
    border-radius: 10px;
    border: 2px solid var(--azul-marinho);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.mobile-dropdown-menu .menu-footer .btn-agendar-reuniao-mobile:hover {
    background-color: var(--azul-marinho);
    color: var(--branco);
    /* Muda a cor do texto para branco ao passar o mouse */
}

.mobile-dropdown-menu .menu-footer .btn-agendar-reuniao-mobile i {
    margin-right: 8px;
    font-size: 1.2rem;
    color: #25D366;
    /* Cor do WhatsApp */
}

.social-links-menu a {
    font-size: 1.5rem;
    color: var(--cor-texto-principal);
    background-color: #e9ecef;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--cor-texto-principal);
    margin: 0 0.3rem;
    box-shadow: 0 4px 0 #adb5bd;
    position: relative;
    top: 0;
    transition: top 0.15s ease, box-shadow 0.15s ease, background-color 0.3s, color 0.3s;
}

.social-links-menu {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.social-links-menu a:hover {
    color: var(--amarelo-forte);
    background-color: var(--azul-marinho);
    top: 2px;
    box-shadow: 0 2px 0 #adb5bd;
    border: 2px solid var(--amarelo-forte);
}

/* Main Content (Home) */
.home-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: brightness(0.8);
}

/* Main Content (Home) */
.main-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    background-attachment: fixed;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content-box {
    text-align: center;
    max-width: 1300px;
    position: relative;
    z-index: 1;
}

.content-box h1 {
    font-size: 3.5rem;
    color: var(--branco);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
    .content-box h1 {
        font-size: 2.5rem !important;
    }
}

.content-box h1 span {
    font-weight: 700;
    color: var(--amarelo-forte);
}

.content-box p {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--cinza-claro);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.icon-btn {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--azul-marinho);
    transition: all 0.3s ease;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 2px solid var(--azul-marinho);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.icon-btn:hover {
    color: var(--amarelo-forte);
    border: 2px solid var(--amarelo-forte);
    background: var(--azul-marinho);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}


.filtros-container {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.filtros-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.filtros-header h2 {
    margin: 0;
}

#imovel-contador {
    font-size: 1rem;
    font-weight: 500;
    background: #f0f0f0;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.filtros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.filtro-grupo h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filtro-grupo input[type="number"],
.filtro-grupo select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.filtro-opcoes {
    display: flex;
    gap: 0.5rem;
}

.filtro-opcoes button {
    flex: 1;
    padding: 0.6rem;
    border: 1px solid #ddd;
    background: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.filtro-opcoes button:hover,
.filtro-opcoes button.active {
    background: #0a2342;
    color: #fff;
    border-color: #0a2342;
}

.preco-valor {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 500;
    color: #333;
}

.area-inputs {
    display: flex;
    gap: 0.5rem;
}

.filtros-botoes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-filtrar,
.btn-limpar {
    min-width: 140px;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    border: 2px solid #0a2342;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-filtrar:hover {
    background: #0a2342;
    color: #fff;
}

.btn-limpar {
    border-color: #e63946;
}

.btn-limpar:hover {
    background: #e63946;
    color: #fff;
}

.imoveis-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    background: #fff;
}

@media (max-width: 900px) {
    .imoveis-grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .imoveis-grid-container {
        grid-template-columns: 1fr;
        padding-left: 10px;
        padding-right: 10px;
    }

    .filtros-container {
        margin-left: 0;
        margin-right: 0;
        padding: 1rem;
    }

    .card-imovel {
        margin-left: 4px;
        margin-right: 4px;
    }
}

.card-imovel {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9eef5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.card-imovel-imagem {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.card-imovel-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.card-imovel-imagem:hover img {
    transform: scale(1.05);
}

.card-imovel-imagem.video-container {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
}

.card-imovel-imagem.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* igual às imagens, se houver */
}

.card-imovel-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-imovel-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.card-imovel-localizacao,
.card-imovel-cep {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 10px 0;
}

.card-imovel-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    margin: 1rem 0;
}

.card-imovel-comodidades {
    margin: 0.5rem 0 1rem 0;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    align-items: center;
}

.card-imovel-comodidades i {
    color: #ffd700;
    margin-right: 0.3rem;
}

.btn-saiba-mais {
    display: inline-block;
    background: #0a2342;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-saiba-mais:hover {
    background: #ffd700;
    color: #0a2342;
}




/* ================================================== */
/* ================= SEÇÃO BLOG ===================== */
/* ================================================== */
.blog-promo-section {
    /* Removemos o padding lateral daqui para permitir conteúdo de ponta a ponta */
    padding: 6rem 0;
    background-color: #fff;
}

.blog-promo-content {
    /* O container agora tem um padding para o conteúdo não colar nas bordas */
    padding: 0 2vw;
    margin: 0 auto;
}

.blog-promo-header {
    text-align: left;
    margin-bottom: 3rem;
}

.blog-promo-header .section-title {
    text-align: left;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
}

.blog-promo-header .section-subtitle {
    text-align: left;
    margin: 1rem 0 0 0;
}

.blog-grid-promo {
    display: grid;
    /* Força 2 colunas, cada uma ocupando metade do espaço disponível */
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* Espaçamento entre os cards */
}

.blog-card-promo {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9ecef;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card-promo:hover .blog-card-image img {
    transform: scale(1.05);
}

.image-cta-button {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.726);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.image-cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1) rotate(45deg);
}

.blog-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    display: inline-block;
    background-color: #f8f9fa;
    color: #555;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
}

/* Responsividade */
@media (max-width: 900px) {
    .blog-grid-promo {
        /* Em telas menores, os cards empilham */
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-promo-header {
        text-align: center;
    }

    .blog-promo-header .section-subtitle {
        text-align: center;
        margin: 1rem auto 0 auto;
    }

    .blog-promo-header .section-title {
        text-align: center;
    }
}


/* section indicação*/
.indicacao-ananindeua-section {
    max-width: 1400px;
    margin: 64px auto 48px auto;
    padding: 0 4vw;
}

.indicacao-ananindeua-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a2236;
    margin-bottom: 32px;
    text-align: center;
}

.indicacao-ananindeua-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.indicacao-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e9eef5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-width: clamp(240px, 30vw, 320px);
    max-width: 350px;
    flex: 1 1 clamp(240px, 30vw, 320px);
    margin: 0;
    transition: box-shadow 0.2s;
}

.indicacao-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4/6;
    overflow: hidden;
    flex-shrink: 0;
}

.indicacao-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    display: block;
}

.indicacao-card-img:hover img {
    transform: scale(1.05);
}

.indicacao-card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-end;
    min-height: 0;
}

.indicacao-card-info h3 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.indicacao-card-localizacao,
.indicacao-card-cep {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 10px 0;
}

.indicacao-card-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: #333;
    margin: 1rem 0;
}

.indicacao-card-comodidades {
    margin: 0.5rem 0 1rem 0;
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    align-items: center;
}

.indicacao-btn {
    display: inline-block;
    white-space: nowrap;
    background: none;
    color: #1a2236;
    border: 1.5px solid #1a2236;
    border-radius: 5px;
    padding: 8px clamp(18px, 8vw, 100px);
    font-size: clamp(0.95rem, 2vw, 1rem);
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s;
    margin-top: 8px;
}

.indicacao-btn:hover {
    background: #1a2236;
    color: #ffd700;
    border-color: #ffd700;
}



/*corretor de imoveis cta section*/
.cta-corretor-imoveis {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    padding: 64px 0 64px 0;
    text-align: center;
}

.cta-corretor-titulo {
    font-size: 2rem;
    font-weight: 700;
    color: #1a2236;
    margin-bottom: 36px;
    letter-spacing: 0.5px;
}

.cta-corretor-botoes {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-minimal-elegante {
    display: inline-block;
    background: #fff;
    color: #1a2236;
    border: 1.5px solid #1a2236;
    border-radius: 10px;
    padding: 14px 38px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px #0001;
}

.btn-minimal-elegante:hover {
    background: #1a2236;
    color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-2px) scale(1.04);
}

.btn-minimal-secundario {
    background: #1a2236;
    color: #fff;
    border: 2px solid var(--amarelo-forte);
}

.btn-minimal-secundario:hover {
    background: #ffd700;
    color: #1a2236;
    border: 2px solid var(--azul-marinho);
}

@media (max-width: 900px) {
    .apartamentos-ananindeua-cards {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .cta-corretor-titulo {
        font-size: 1.2rem;
    }
}



/*
=================================
    FOOTER INSTITUCIONAL
=================================
*/
.footer-main {
    background: linear-gradient(135deg, #0a2342, #0d2c54);
    color: var(--cinza-claro);
    padding: 3rem 0;
    width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-col .logo-footer-img {
    max-width: 100px;
}

.footer-col .tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--branco);
    margin-top: 0;
    margin-bottom: 1.5rem;
    cursor: default;
}

.footer-col-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 180px;
    /* Ajuste o tamanho conforme necessário */
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: var(--branco);
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 600;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--amarelo-forte);
}

.footer-col p,
.footer-col ul li {
    color: #ccc;
    line-height: 1.8;
    font-size: 0.95rem;
    cursor: pointer;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-col ul li a:hover {
    color: var(--amarelo-forte);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    width: 15px;
    text-align: center;
    color: var(--amarelo-forte);
}

.footer-col .contact-info li {
    transition: color 0.3s, padding-left 0.3s;
}

/* Aplica o efeito ao passar o mouse */
.footer-col .contact-info li:hover {
    color: var(--amarelo-forte);
    padding-left: 5px;
}


.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--branco);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.social-links a:hover {
    background-color: var(--amarelo-forte);
    color: var(--azul-marinho);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    /* Aumenta um pouco o padding superior */
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}