:root {
    /* Novo esquema de cores da EDGE - Verde Institucional */
    --primary-color: #096fce;
    /* Verde forte de segurança */
    --secondary-color: #2d2d2d;
    --btn-hover-color: #074e91;
    /* Tom mais escuro para hover */
    --accent-color: #e9e9e9;
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f4fcf6;
    /* Fundo levemente esverdeado/clean */
    --font-family: "Montserrat", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: var(--font-family);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    color: var(--text-dark);
    font-size: 16px;
    position: relative;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    height: 70px;
    /* Aumentei um pouco para caber o logo */
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 1000;
    background-color: #ffffffef;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo {
    width: 130px;
    /* Ajuste conforme a proporção do seu novo logo */
    height: auto;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--btn-hover-color);
    font-weight: 800;
}

.whatsapp-link i {
    font-size: 24px;
}

.whatsapp-link span {
    font-size: 16px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: var(--btn-hover-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

section[id] {
    scroll-margin-top: 70px;
}

/* HERO SECTION */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    /* Alinhado a esquerda para leitura */
    align-items: center;
    text-align: left;
    padding: 60px;
    color: var(--text-light);
    position: relative;
    background-position: center;
    background-size: cover;
    /* Adicionei um fundo padrão caso a imagem demore */
    background-color: #333;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Gradiente esverdeado escuro para dar contraste ao texto branco */
    background-image: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.1) 100%), url('background-hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    max-width: 650px;
    z-index: 3;
    margin-top: 0;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-content p {
    max-width: 500px;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* ANIMAÇÕES */
@keyframes fadeInSlideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1,
.hero-content p,
.hero-content a.btn {
    opacity: 0;
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

.hero-content h1 {
    animation-delay: 0.3s;
}

.hero-content p {
    animation-delay: 0.6s;
}

.hero-content a.btn {
    animation-delay: 0.9s;
}

.btn {
    font-size: 1rem;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    /* Botão mais arredondado moderno */
    border: none;
    color: var(--text-light);
    background-color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 104, 55, 0.3);
}

.btn:hover {
    background-color: var(--btn-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 104, 55, 0.4);
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SEÇÕES GERAIS */
.services-section,
.purpose-section,
.address-section,
.contact-section {
    padding: 80px 30px;
    text-align: center;
}

.services-section {
    background-color: #ffffff;
}

.services-section h2,
.purpose-section h2,
.address-section h2,
.contact-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Detalhe visual abaixo do titulo */
.services-section h2::after,
.purpose-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

/* CARDS DE SERVIÇOS */
.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.service-card {
    background-color: var(--background-light);
    border-radius: 12px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 104, 55, 0.15);
    border-color: var(--primary-color);
}

.service-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.service-icon {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    color: #555;
}

/* SOBRE */
.about-us-section {
    padding: 80px 30px;
    background-color: var(--background-light);
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-us-content {
    flex: 1;
    max-width: 600px;
    text-align: center;
}

.about-us-logo {
    width: 250px;
    height: auto;
    margin-bottom: 25px;
}

.about-us-image {
    flex: 1;
    max-width: 600px;
    height: auto;
    border-radius: 20px;
    box-shadow: 10px 10px 0px var(--primary-color);
}

.about-us-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

/* PROPÓSITO (MISSÃO/VISÃO/VALORES) */
.purpose-section {
    background-color: #fff;
}

.purpose-section p {
    margin-bottom: 50px;
}

.purpose-cards-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.purpose-card {
    background-color: var(--background-light);
    border: 1px solid #eee;
    width: 100%;
    max-width: 350px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.purpose-card-content {
    padding: 35px 30px;
    text-align: center;
}

.purpose-icon {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.purpose-title {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.purpose-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* ENDEREÇO */
.address-section {
    background-color: var(--background-light);
}

.address-unit h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.address-unit a {
    font-size: 1.2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
}

.address-section p {
    margin-bottom: 50px;
}

.address-unit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}


/* CONTATO */
.contact-section {
    background-color: #fff;
}

.contact-section p {
    margin-bottom: 30px;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    padding: 40px;
    border-radius: 15px;
    background-color: var(--background-light);
    width: 100%;
    max-width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-card h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.contact-card h3 i {
    color: var(--text-dark);
    margin-right: 8px;
}

.contact-card p {
    margin-bottom: 25px;
    font-size: 1rem;
    font-weight: 600;
}

/* SOCIAL BAR */
.social-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    color: #fff;
    font-size: 35px;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

.social-bar a[href*="wa.me"] {
    background-color: #25D366;
    animation: pulse 2s infinite;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #128C7E;
    animation-play-state: paused;
    transform: scale(1.1);
}

/* FOOTER */
footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #1a1a1a;
    /* Footer escuro para contraste profissional */
    color: #ccc;
}

.footer-links {
    margin-bottom: 30px;
}

footer .footer-links a,
footer .footer-link-email {
    color: #fff;
    margin: 0 10px;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: var(--primary-color);
}

footer p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

footer span#current-year {
    color: #fff;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    /* Sombra suave para cima */
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    /* Espaçamento interno equilibrado */
    padding: 15px 40px;
    z-index: 2000;

    /* Flexbox para alinhar texto e botão lado a lado */
    display: flex;
    justify-content: center;
    /* Centraliza o conteúdo na tela */
    align-items: center;
    gap: 30px;
    /* Distância entre texto e botão */

    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    font-size: 0.9rem;
    /* Fonte um pouco menor para ser discreto */
    line-height: 1.5;
    color: var(--text-dark);
    max-width: 800px;
    /* Limita a largura para o texto não esticar até as bordas */
    margin: 0;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
    cursor: pointer;
    transition: color 0.3s ease;
}

.consent-text a:hover {
    color: var(--secondary-color);
}

/* Estilo específico para reduzir o botão SÓ no banner */
#accept-consent-btn {
    font-size: 0.85rem;
    /* Texto menor */
    padding: 10px 25px;
    /* Padding reduzido (era 15px 35px) */
    white-space: nowrap;
    /* Garante que o texto do botão não quebre linha */
    flex-shrink: 0;
    /* Garante que o botão não seja "esmagado" */
    height: auto;
    border-radius: 50px;
    /* Borda um pouco menos redonda para diferenciar (opcional) */
    box-shadow: none;
    /* Remove a sombra forte do botão padrão */
    background-color: #25D366;
    color: #000000;
}

/* Hover específico do botão do banner */
#accept-consent-btn:hover {
    background-color: var(--btn-hover-color);
    transform: translateY(-2px);
}

.legal-page-content {
    max-width: 800px;
    margin: 0 auto;
    /* Padding superior alto para compensar o header fixo */
    padding: 120px 20px 60px 20px;
    text-align: left;
}

.legal-page-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Estilo para a data de atualização (o texto em itálico logo abaixo do título) */
.legal-page-content>p:first-of-type em {
    display: block;
    margin-bottom: 30px;
    color: #666;
    font-size: 0.9rem;
}

.legal-page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    /* Linha suave para separar seções */
}

.legal-page-content p {
    font-size: 1rem;
    line-height: 1.8;
    /* Espaçamento bom para leitura */
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
    /* Texto justificado fica mais formal */
}

.legal-page-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-page-content li {
    list-style-type: disc;
    /* Bolinhas na lista */
    margin-bottom: 10px;
    line-height: 1.6;
    color: #444;
}

.legal-page-content strong {
    color: var(--primary-color);
}

.unit-block {
    max-width: 1100px;
    /* Largura maior para acomodar foto e mapa lado a lado */
    margin: 0 auto 50px auto;
    text-align: left;
    margin-bottom: 70px;
    /* Títulos alinhados à esquerda ficam mais elegantes nesse layout */
}

.unit-block h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 5px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

.address-link {
    display: inline-block;
    font-size: 1.1rem;
    color: #555;
    text-decoration: none;
    margin-bottom: 25px;
    padding-left: 20px;
    /* Alinhado visualmente com o texto do H3 */
    font-weight: 600;
    transition: color 0.3s;
}

.address-link:hover {
    color: var(--primary-color);
}

/* Container Flex para Imagem e Mapa */
.unit-content-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
    /* Garante que tenham a mesma altura */
    height: 350px;
    /* Altura fixa para manter padrão */
}

/* Área da Imagem (Esquerda) */
.unit-image-container {
    flex: 1;
    /* Ocupa 50% */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.unit-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Garante que a foto preencha sem distorcer */
    transition: transform 0.5s ease;
}

.unit-image-container:hover .unit-img {
    transform: scale(1.05);
}

/* Área do Mapa (Direita) */
.unit-map-container {
    flex: 1;
    /* Ocupa 50% */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #eee;
}

/* Linha separadora entre unidades */
.unit-separator {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(0, 104, 55, 0.3), transparent);
    margin: 50px auto;
    max-width: 1200px;
}

.address-link i {
    color: var(--primary-color);
    margin-right: 8px;
}

.address-link {
    margin-bottom: 10px;
    /* Reduzi a margem pois agora tem o telefone embaixo */
    /* Garante que fique em linha própria */
}

/* Nova área de contatos da unidade */
.unit-contact-info {
    display: flex;
    gap: 25px;
    margin-bottom: 0px;
    padding-left: 15px;
    /* Alinhado com o título */
    flex-wrap: wrap;
    /* Se a tela for pequena, quebra linha */
}

.phone-item {
    font-size: 1.05rem;
    text-decoration: none;
    color: #444;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.phone-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.phone-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Destaque especial para o botão de WhatsApp */
.phone-item.whatsapp-highlight {
    background-color: #f0fff4;
    /* Fundo verde bem clarinho */
    border-color: var(--primary-color);
    color: var(--btn-hover-color);
}

.phone-item.whatsapp-highlight:hover {
    background-color: var(--btn-hover-color);
    color: #fff;
}

.phone-item.whatsapp-highlight:hover i {
    color: #fff;
}




.unit-header-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Alinha no topo */
    gap: 20px;
    margin-bottom: 25px;
    /* Espaço antes de chegar nas fotos/mapa */
}

/* Coluna da Esquerda (Endereço e Telefones) */
.unit-info-col {
    flex: 1;
    /* Ocupa o espaço disponível */
    max-width: 60%;
    /* Impede que o texto estique demais se o horário for pequeno */
}

/* Ajuste no container de botões para não quebrar linha cedo demais */
.unit-contact-info {
    justify-content: flex-start;
    padding-left: 0;
    margin-top: 15px;
}

/* Coluna da Direita (Box de Horários) */
.unit-hours-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    border-right: 4px solid var(--primary-color);
    /* Mudei para verde para combinar */
    padding: 15px 25px;
    min-width: 300px;
    /* Garante um tamanho mínimo bonito */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.unit-hours-box .hours-label {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unit-hours-box .hours-list li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 768px) {
    header {
        padding: 0 20px;
    }

    .logo {
        width: 140px;
    }

    header nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    header.open {
        background-color: #ffffff;
    }

    header.open nav {
        display: block;
    }

    header nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    header nav a {
        padding: 20px 20px;
        border-bottom: 1px solid #eee;
    }

    header nav ul {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
    }


    header nav ul li a {
        display: block;
        padding: 15px;
        width: 100%;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }

    header.open .menu-toggle span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    header.open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    header.open .menu-toggle span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    .hero-section {
        padding: 60px 20px;
        justify-content: center;
        text-align: center;
    }

    .hero-section::before {
        /* Gradiente mais forte para mobile para garantir legibilidade */
        background-image: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.6) 0%,
                rgba(0, 0, 0, 0.6) 50%,
                rgba(0, 0, 0, 0.6) 100%), url('background-hero.png');
        background-attachment: scroll;
    }

    .hero-content {
        width: 100%;
        margin-top: -200px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.3rem;
        line-height: 1.2;
        margin-bottom: 30px;
    }


    .about-us-section {
        flex-direction: column;
        text-align: center;
    }

    .about-us-image {
        width: 100%;
        margin-top: 30px;
        box-shadow: none;
        border-radius: 10px;
    }

    .about-us-content {
        text-align: center;
    }

    .social-bar {
        bottom: 15px;
        right: 15px;
    }

    .social-bar a {
        width: 55px;
        height: 55px;
        font-size: 30px;
    }

    #consent-banner {
        flex-direction: column;
        /* Um embaixo do outro */
        padding: 20px 20px;
        /* Menos padding nas laterais */
        gap: 15px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.85rem;
        max-width: 100%;
    }

    #accept-consent-btn {
        width: 100%;
        /* Botão largura total no celular para facilitar o clique */
        padding: 12px 0;
    }

    .legal-page-content {
        padding-top: 100px;
        /* Header mobile costuma ser menor ou precisa de ajuste */
    }

    .legal-page-content h1 {
        font-size: 2rem;
    }

    .legal-page-content h2 {
        font-size: 1.3rem;
    }

    .unit-content-row {
        flex-direction: column;
        /* Um embaixo do outro */
        height: auto;
        /* Altura automática */
    }

    .unit-image-container,
    .unit-map-container {
        width: 100%;
        height: 250px;
        /* Altura menor para celular */
    }

    .unit-block h3,
    .address-link {
        text-align: center;
        padding-left: 0;
        border-left: none;
        display: block;
    }

    .unit-contact-info {
        justify-content: center;
        /* Centraliza os botões no celular */
        padding-left: 0;
    }




    .unit-header-grid {
        flex-direction: column;
        /* Volta a ficar um embaixo do outro */
        gap: 20px;
    }

    .unit-info-col {
        max-width: 100%;
    }

    .unit-hours-box {
        width: 100%;
        /* No celular ocupa a largura total */
        border-left: none;
        border-top: 4px solid var(--primary-color);
        /* Borda em cima no mobile */
    }

}