/* Variáveis de Cores */
:root {
    --primary-color: #07453a;
    --secondary-color: #007bff; /* Cor azul similar ao original */
    --white: #ffffff;
    --light-grey: #f8f8f8;
    --text-color: #333;
}

/* Base e Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Botões Reutilizáveis */
.btn-pedido, .btn-produtos, .btn-farmaceutico, .btn-fazer-pedido {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    text-align: center;
}

.header-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.header-btn:hover {
    background-color: #05332c; /* Tonalidade mais escura */
}

.btn-produtos {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 25px;
    border: none;
}

.btn-produtos:hover {
    background-color: #05332c;
}

.large-btn {
    padding: 15px 30px;
    font-size: 1.1em;
}

.btn-farmaceutico {
    background-color: #25D366; /* Cor do WhatsApp */
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    margin-top: 20px;
    font-size: 1.1em;
}

.btn-fazer-pedido {
    background-color: #25D366;
    color: var(--white);
    font-size: 0.9em;
    padding: 10px 15px; /* Aumentei um pouco */
    margin-top: 10px;
    display: block; 
    border: none; /* Garante que não haja bordas inesperadas */
}

.btn-fazer-pedido:hover {
    background-color: #25D366;
}

/* 1. CABEÇALHO / NAVBAR */
.header {
    background-color: var(--primary-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

/* No style.css, linha 82 */
.logo img {
    height: 60px; /* **NOVO VALOR SUGERIDO** */
    width: auto; /* Adiciona isso para garantir a proporção */
}

/* Telas de Celular (Max-width: 600px) */
@media (max-width: 600px) {
    /* ... (código omitido) */

    /* Linha 427 */
    .logo img {
        height: 50px; /* Tente 50px para maior clareza */
    }

    /* ... (código omitido) */
}
.nav-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-menu ul li {
    margin-left: 25px;
}

.nav-menu ul li a {
    color: var(--light-grey);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu ul li a:hover {
    color: #25D366;
}

.nav-menu .header-btn {
    margin-left: 20px;
}


/* 2. SEÇÃO DESTAQUE / CARROSSEL */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-container {
    /* Não precisa de display: flex aqui, pois os slides são absolutos */
    position: relative; /* Adiciona este */
    width: 100%; /* Adiciona este */
    height: 500px; /* Adiciona a altura do slide container */
}

.carousel-slide {
    position: absolute; /* MUITO IMPORTANTE: Coloca um slide em cima do outro */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10%;
    color: var(--white);
    z-index: 1; /* Para o conteúdo do slide */
    
    /* Regras de Opacidade e Transição */
    opacity: 0; 
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2; /* Garante que o slide ativo esteja em cima */
}
/* ... restante do CSS do carrossel ... */

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2); 
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: left;
}

.hero-content h1 {
    font-size: 3.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

.hero-content h1 strong {
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.3); 
    padding: 5px 10px;
    line-height: 1.2;
}

.hero-content .subtitle {
    font-size: 1.8em;
    margin-bottom: 15px;
    font-weight: 300;
}

.hero-content .description {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-weight: 500;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--primary-color);
    border: none;
    padding: 15px;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    font-size: 1.5em;
    transition: background-color 0.3s;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
    background-color: var(--white);
}

/* === BOLINHAS DO CARROSSEL === */
.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.carousel-dots button.active {
  background-color: #25D366;
  transform: scale(1.2);
}



/* 3. SEÇÃO ICONES DE VANTAGENS */
.vantagens {
    padding: 50px 0;
    background-color: var(--light-grey);
    text-align: center;
}

.vantagens .container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.vantagem-item {
    flex-basis: 25%;
    padding: 20px;
}

.vantagem-item i {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vantagem-item h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.btn-farmaceutico-container {
    text-align: center;
    margin-top: 30px;
}

/* 4. SEÇÃO REMÉDIOS DIA A DIA */
.remedios-dia-a-dia {
    padding: 50px 0;
    text-align: center;
}

.remedios-dia-a-dia h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.produtos-grid {
    /* 1. USANDO CSS GRID */
    display: grid;
    /* 2. 4 colunas de largura igual (1fr) - PADRÃO DESKTOP */
    grid-template-columns: repeat(4, 1fr);
    /* 3. Espaçamento entre todos os cards */
    gap: 20px;
}

.produto-card {
    background-color: var(--white);
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);

    /* 4. FLEXBOX INTERNO para garantir que o conteúdo fique esticado */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-card img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    margin: 0 auto 15px;
    display: block;
}

.produto-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.produto-card p {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 10px;
    min-height: 80px;
    /* 5. Faz o parágrafo crescer para empurrar o botão para baixo */
    flex-grow: 1; 
}

.rating {
    color: orange;
    margin-bottom: 15px;
    font-size: 0.9em;
}

/* --- RESPONSIVIDADE --- */

/* Ajuste para TELAS MÉDIAS (ex: Tablets - até 1024px) */
@media (max-width: 1024px) {
    .produtos-grid {
        /* Passa de 4 para 2 colunas */
        grid-template-columns: repeat(2, 1fr);
        /* Aumenta o espaçamento para melhor visualização */
        gap: 30px;
        padding: 0 15px; /* Adiciona padding lateral */
    }

    .remedios-dia-a-dia h2 {
        font-size: 1.8em;
    }
}

/* Ajuste para TELAS PEQUENAS (ex: Smartphones - até 600px) */
@media (max-width: 600px) {
    .produtos-grid {
        /* Passa de 2 para 1 coluna */
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .remedios-dia-a-dia {
        padding: 30px 0;
    }

    .produto-card img {
        max-height: 120px; /* Reduz um pouco o tamanho da imagem no mobile */
    }

    .produto-card p {
        min-height: auto; /* Permite que o parágrafo tenha altura automática */
    }
}

/* 5. SEÇÃO DESTAQUE ENTREGA (MOTO) */
.destaque-entrega {
    background-color: #e9f5f5; 
    padding: 0px 0;
    overflow: hidden;
}

.entrega-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.entrega-content .text-content {
    max-width: 50%;
}

.entrega-content .text-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.entrega-content .text-content h2 strong {
    font-weight: 700;
}

.entrega-content .text-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.entrega-content .image-content {
    max-width: 45%;
    text-align: right;
}

.entrega-content .image-content img {
    max-width: 100%;
    height: auto;
}


/* 6. SEÇÃO SOBRE NÓS E DEPOIMENTOS */
.nossa-historia {
    padding: 60px 0;
}

.historia-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.image-side {
    flex-basis: 40%;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.text-side {
    flex-basis: 60%;
}

.text-side h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-side p {
    margin-bottom: 15px;
}

.text-side .highlight {
    font-weight: bold;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 15px;
}

/* Depoimentos */
.depoimentos-section {
    text-align: center;
}

.depoimentos-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.depoimentos-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.depoimento-card {
    flex-basis: 32%;
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-info h4 {
    font-size: 1.1em;
    color: var(--primary-color);
}

.depoimento-card p {
    font-style: italic;
    color: #555;
    font-size: 0.95em;
}

/* 8. SEÇÃO VENHA NOS CONHECER (MAPA) */
.venha-conhecer {
    padding: 60px 0;
    text-align: center;
    background-color: #f0fafa; 
}

.venha-conhecer h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.map-container {
    max-width: 800px;
    margin: 0 auto 30px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.map-placeholder {
    height: 400px;
}

.map-placeholder img {
    filter: grayscale(100%); 
}

.map-details {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--white);
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.map-details p {
    margin: 0 0 5px;
    font-weight: bold;
    color: var(--text-color);
}

.map-details a {
    color: var(--secondary-color);
    font-size: 0.9em;
}

.convite {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.convite-2 {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 30px;
}

.convite-2 strong {
    color: var(--primary-color);
}

/* 7. SEÇÃO NOSSAS UNIDADES */
/* 7. SEÇÃO NOSSAS UNIDADES */
.nossas-unidades {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9; 
}

.nossas-unidades h2 {
    font-size: 2em;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.unidades-grid {
    /* Mantenha o Flexbox para alinhar os cards lado a lado */
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch; /* ESTE É O PONTO CHAVE: Garante que os itens tenham a mesma altura */
}

.unidade-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    
    /* 1. FLEXBOX INTERNO: Garante que o conteúdo se alinhe verticalmente */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Empurra o botão para o final */
    
    /* 2. LARGURA FIXA PARA 2 CARDS: */
    flex-basis: 45%; 
    max-width: 400px; /* Limita o crescimento em telas grandes */
    text-align: center;
    transition: transform 0.3s ease;
}

.unidade-card:hover {
    transform: translateY(-5px);
}

.unidade-card i {
    font-size: 2.5em;
    /* Usando a cor primária para os ícones */
    color: var(--primary-color); 
    margin-bottom: 15px;
}

.unidade-card h3 {
    font-size: 1.5em;
    /* Usando a cor primária para os títulos */
    color: var(--primary-color); 
    margin-bottom: 20px;
}

.unidade-card p {
    margin-bottom: 8px;
    color: #555;
}

.unidade-card .horario-titulo {
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #333;
}

/* Garante que o endereço/horário ocupe o espaço para alinhar o botão */
.unidade-card .cidade {
    /* Isso garante que este parágrafo, que é o último antes do bloco de horário,
       cresça, empurrando o restante do conteúdo para o final */
    flex-grow: 1; 
    margin-bottom: 10px;
}


.unidade-card .btn-mapa {
    display: block; /* Ocupa a largura total do card */
    width: 100%;
    
    /* Cor do botão de pedido que você usou na imagem */
    background-color: var(--primary-color); 
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.unidade-card .btn-mapa:hover {
    background-color: #05332c;
}

/* Responsividade para telas menores: Faz os cards ficarem um abaixo do outro */
@media (max-width: 768px) {
    .unidades-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .unidade-card {
        flex-basis: 90%;
        max-width: 90%;
    }
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
    .unidades-grid {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .unidade-card {
        flex-basis: 90%;
        max-width: 100%;
    }
}

/* 10. RODAPÉ / FOOTER */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding-top: 40px;
    font-size: 0.9em;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-item {
    flex-basis: 25%;
}

.logo-footer img {
    height: 40px; 
    
}

.footer-item h4 {
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-item p {
    margin-bottom: 8px;
}

.footer-item i {
    margin-right: 8px;
}

.redes-sociais-footer a {
    color: var(--white);
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s;
}

.redes-sociais-footer a:hover {
    color: #92e0df; 
}

.footer-bottom {
    background-color: #05332c; 
    padding: 15px 0;
}

.footer-bottom .container {
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.8em;
}

.footer-bottom .links-footer a {
    color: var(--white);
    margin: 0 10px;
}

.disclaimer {
    font-size: 0.7em;
    text-align: left;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* =======================================
   RESPONSIVIDADE (MEDIA QUERIES)
   ======================================= */

/* Telas de Tablet (Max-width: 992px) */
@media (max-width: 992px) {
    
    /* 1. CABEÇALHO */
    .nav-menu ul li {
        margin-left: 15px;
    }
    .nav-menu ul li:last-child { /* Oculta o "Fazer Pedido" do header em telas menores */
        display: none; 
    }

    /* Telas de Celular (Max-width: 600px) */
@media (max-width: 600px) {
    /* ... (código omitido) */

    /* Linha 427 */
    .logo img {
        height: 50px; /* Tente 50px para maior clareza */
    }

    /* ... (código omitido) */
}

    /* 2. CARROSSEL */
    .carousel-slide {
        height: 400px;
        padding-left: 5%;
    }
    .hero-content h1 {
        font-size: 2.5em;
    }
    .hero-content .subtitle {
        font-size: 1.5em;
    }

    /* 3. VANTAGENS */
    .vantagens .container {
        flex-wrap: wrap; /* Quebra em duas linhas */
    }
    .vantagem-item {
        flex-basis: 48%; /* Duas colunas */
        margin-bottom: 20px;
    }

    /* 4. PRODUTOS GRIDS */
    .produtos-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .produto-card {
        flex-basis: 48%; /* Duas colunas */
        margin-bottom: 20px;
    }

    /* 5. DESTAQUE ENTREGA */
    .entrega-content {
        flex-direction: column;
        text-align: center;
    }
    .entrega-content .text-content,
    .entrega-content .image-content {
        max-width: 100%;
    }
    .entrega-content .image-content img {
        max-width: 80%;
    }

    /* 7. NOSSA HISTÓRIA */
    .historia-content {
        flex-direction: column;
    }
    .image-side, .text-side {
        flex-basis: 100%;
        max-width: 100%;
        text-align: center;
    }
    .text-side .highlight {
        text-align: left;
        display: inline-block;
    }

    /* 7. DEPOIMENTOS */
    .depoimentos-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .depoimento-card {
        flex-basis: 48%;
        margin-bottom: 20px;
    }

    /* 9. RODAPÉ */
    .footer-content {
        flex-wrap: wrap;
        text-align: center;
    }
    .footer-item {
        flex-basis: 50%;
        margin-bottom: 30px;
    }
    .logo-footer {
        flex-basis: 100%;
    }
    .logo-footer img {
        margin: 0 auto 20px;
    }
}

/* Telas de Celular (Max-width: 600px) */
@media (max-width: 600px) {
    
    .container {
        padding: 0 10px;
    }

    /* 1. CABEÇALHO */
    .nav-content {
        flex-direction: column;
        text-align: center;
    }
    .nav-menu {
        margin-top: 10px;
        width: 100%;
    }
    .nav-menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-menu ul li {
        margin: 5px 10px;
    }
    .logo img {
        height: 50px;
    }


    /* 2. CARROSSEL */
    .carousel-slide {
        height: 350px;
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content .subtitle {
        font-size: 1.2em;
    }
    .prev, .next {
        padding: 10px;
        font-size: 1.2em;
    }

    /* 3. VANTAGENS */
    .vantagens .container {
        flex-direction: column;
    }
    .vantagem-item {
        flex-basis: 100%;
        padding: 15px 0;
    }

    /* 4. PRODUTOS GRIDS */
    .produtos-grid {
        flex-direction: column;
    }
    .produto-card {
        flex-basis: 100%;
        max-width: 300px; /* Limita a largura do card no celular */
        margin: 0 auto 20px;
    }
    .produto-card p {
        min-height: 50px; /* Reduz o min-height para telas menores */
    }

    /* 5. DESTAQUE ENTREGA */
    .entrega-content .text-content h2 {
        font-size: 1.8em;
    }

    /* 7. NOSSA HISTÓRIA */
    .text-side h2 {
        font-size: 2em;
    }

    /* 7. DEPOIMENTOS */
    .depoimentos-grid {
        flex-direction: column;
    }
    .depoimento-card {
        flex-basis: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }

    /* 8. MAPA */
    .map-placeholder {
        height: 250px;
    }
    .map-details {
        position: static;
        margin: 10px 0;
        text-align: center;
    }

    /* 9. RODAPÉ */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-item {
        flex-basis: 100%;
        margin-bottom: 20px;
    }
}

/* FLOATING BUTTONS */
.botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.botao-whatsapp a {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.botao-whatsapp a.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.botao-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

section:last-of-type {
  padding-bottom: 0;
}

footer {
  margin-top: 0;
}

section {
  padding: 40px 0; /* em vez de 60px */
}

.forQuery {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .forQuery {
        padding: 60px 0;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .forQuery {
        padding: 100px 0;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .forQuery {
        padding: 100px 0;
    }
}

@media (min-width: 1200px) and (max-width: 1500px) {
    .forQuery {
        padding: 30px 0;
    }
}

.forQuery .Query_border {
    border: 1px solid #BABABA;
    padding: 38px 50px;
    text-align: center;
}

@media (max-width: 767px) {
    .forQuery .Query_border {
        padding: 20px;
    }
}

.forQuery .Query_border .Query_text {
    text-align: center;
}

.forQuery .Query_border p {
    font-size: 30px;
    color: #1F1F1F;
    font-weight: 400;
    margin-bottom: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .forQuery .Query_border p {
        font-size: 18px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .forQuery .Query_border p {
        font-size: 18px;
    }
}

.forQuery .Query_border .phone_num {
    text-align: center;
}

.forQuery .Query_border .phone_num a {
    background: #009DFF;
    color: #fff;
    padding: 12px 53px;
    border-radius: 30px;
    display: inline-block;
    font-size: 18px;
    border: 1px solid transparent;
    text-align: center;
}

.forQuery .Query_border .phone_num a:hover {
    color: #009DFF;
    border: 1px solid #009DFF;
    background: #fff;
}

/* Garante que o container do banner tenha bordas arredondadas */
.banner-wrapper {
    /* Define o raio de arredondamento. Ajuste o valor (ex: 15px, 20px) conforme sua preferência. */
    border-radius: 20px; 
    
    /* ESSENCIAL: Garante que a imagem interna (banner-img) seja recortada (clipped) pelos cantos arredondados. */
    overflow: hidden; 
    
    /* Opcional: Garante que o elemento ocupe o espaço corretamente (Pode já estar definido) */
    display: block; 
}

/* Garante que a imagem dentro do wrapper preencha 100% da área, sem sobras */
.banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* MODAL WHATSAPP */
.whatsapp-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.whatsapp-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 0.3s ease-in-out;
}

.whatsapp-modal-content h3 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #333;
}

.whatsapp-option {
  display: block;
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.whatsapp-option:hover {
  background: #1ebe57;
}

.close-modal {
  background: #ccc;
  border: none;
  color: #333;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

