/* ==============================
   RESET & GLOBAL
   ============================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
    --primary-blue: #1a3aa1;
    --secondary-blue: #3b2178;
    --light-gray: #f8f9fa;
    --text-dark: #333;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ==============================
   BARRA DE ANÚNCIO
   ============================== */
.barra-anuncio {
  width: 100%;
  background-color: #d32f2f;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-sizing: border-box;
}

.barra-anuncio .telefone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 30px;
}

.barra-anuncio .telefone i {
  font-size: 1.2em;
  transform: scaleX(-1);
}

.barra-anuncio .telefone span {
  font-weight: bold; /* Deixa o texto em negrito */
  font-size: 1.2em;  /* Aumenta o tamanho do texto */
  margin-left: 10px;
}

.barra-anuncio .redes-sociais {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-right: 30px;
}

.barra-anuncio .redes-sociais a {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5em;
}

/* Ocultar a barra de anúncio em dispositivos móveis */
@media (max-width: 768px) {
  .barra-anuncio {
    display: none;
  }
}

/* ==============================
   HEADER
   ============================== */
.header {
  width: 100%;
  background: linear-gradient(90deg, #3b2178, #1a3aa1); /* Gradiente azul e roxo suaves */
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}

.header .logo img {
  height: 90px; /* Tamanho padrão */
  margin-left: 30px;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
  .header .logo img {
    height: 60px; /* Tamanho menor para celular */
  }
}




/* ==============================
   BANNER PROFISSIONAL
   ============================== */
/* ==============================
   BANNER SECTION
   ============================== */
.banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 400px;
  max-height: 700px;
  background: url('img/banner.webp') center/cover no-repeat; /* Resumido para performance */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)); /* Levemente mais claro para destacar a foto */
}

.banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.banner-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem); /* Ajuste no clamp para maior impacto */
  font-weight: 800; /* Mais peso para autoridade */
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.banner-content p {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.banner-content button {
  margin-top: 25px;
  padding: 16px 40px;
  background: #ff0000; /* Vermelho padrão para ação */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.banner-content button:hover {
  transform: translateY(-3px);
  background-color: #001dd9; /* Azul no hover conforme seu padrão */
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* ==============================
   CONTENT SECTION (Diferenciais)
   ============================== */
/* ==============================
   CONTENT SECTION - DESIGN PREMIUM
   ============================== */
.content-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.content-section h2 {
    color: #1a3aa1; /* Azul da sua marca */
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.content-section p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Container dos Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

/* Estilo Individual do Card */
.feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    border-bottom: 4px solid #1a3aa1; /* Detalhe com a cor da marca */
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Ícones */
.feature-card i {
    font-size: 2.5rem;
    color: #28a745; /* Verde para passar confiança e segurança */
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: #1a3aa1;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: #555;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-section {
        padding: 50px 5%;
    }
    .content-section h2 {
        font-size: 1.8rem;
    }
}
/* ==============================
   SERVICES SECTION (Cards)
   ============================== */
.services-section {
  text-align: center;
  padding: 80px 5%;
  background-color: #bdbdbd;
}

.services-section h2 {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #1a3aa1;
}

.services-container {
    display: grid;
    /* Força sempre 2 colunas em telas médias e 4 em telas grandes */
    grid-template-columns: repeat(2, 1fr); 
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Para telas bem grandes (Computadores), ficam os 4 alinhados em uma linha só */
@media (min-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Para celulares, fica 1 por linha para não esmagar o texto */
@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}

.service-box {
  background: #ffffff;
  border: none; /* Removida borda cinza para look moderno */
  border-radius: 12px;
  padding: 0 0 25px 0; /* Padding zero no topo para imagem encostar */
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-box img {
  width: 100%;
  height: 250px;
  object-fit: cover; /* Garante que a imagem não distorça */
  margin-bottom: 20px;
}

.service-box h3 {
  font-size: 1.3em;
  padding: 0 20px;
  margin-bottom: 15px;
  color: #1a3aa1;
}

.service-box p {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.service-box button {
  background: linear-gradient(359deg, #3b2178, #1a3aa1);
  color: #fff;
  border-radius: 5px;
  margin: 6 20px;
  width: calc(100% - 40px); /* Botão largo no card */
  font-weight: 700;
  font-size: 1.1rem;
}

/* Ajustes Responsivos */
@media (max-width: 768px) {
  .banner { height: 60vh; }
  .content-section { padding: 40px 5%; }
  .content-section h2 { font-size: 26px; }
}
/* ==============================
   BLUE SECTION
   ============================== */
.blue-section {
  background: linear-gradient(359deg, #3b2178, #1a3aa1);
  color: #ffffff;
  padding: 40px 5%;
  text-align: center;
}

.blue-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  margin-top: 0;    /* Remove espaço adicional */
}

.blue-section-content {
  display: flex;
  align-items: center; /* ALINHADO AO CENTRO PARA MELHOR RESULTADO VISUAL */
  justify-content: center;
  gap: 125px;
  flex-wrap: wrap;          /* Ajusta para telas menores */
}

.blue-section-content img {
  max-width: 30%;           /* LARGURA AUMENTADA (era 20%) */
  height: auto;
  max-height: 35vh;         /* ALTURA LIMITADA (pode precisar de ajuste) */
  border-radius: 10px;
  overflow: hidden;
  filter: brightness(85%);  /* IMAGEM MAIS ESCURA */
}

.blue-section-text {
  max-width: 50%;
  text-align: left;
  display: flex;
  flex-direction: column; /* Garante que o título e o texto fiquem empilhados */
}

.blue-section-text p {
  font-size: 1.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: left;
}

.blue-section-text button {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blue-section-text button:hover {
  background-color: #001dd9; 
}

.blue-section-text button i {
  margin-right: 10px;
}

/* Responsividade da blue-section */
@media (max-width: 768px) {
  .blue-section-content {
    flex-direction: column; 
    gap: 20px;
  }
  .blue-section-content img {
    max-width: 100%;
    max-height: none;      /* Remove o limite de altura em telas menores */
  }
  .blue-section-text {
    max-width: 100%;
    text-align: center;
  }
}

/* ==============================
   TESTIMONIALS SECTION
   ============================== */
.testimonials-section {
  text-align: center;
  padding: 40px 5%;
  background-color: #ffffff;
}

.testimonials-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333333;
}

.testimonials-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #666666;
  text-align: left;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 20px;
}

.testimonial-box {
  background-color: #f9f9f9;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.testimonial-box p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 15px;
  color: #333333;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #cccccc;
}

.testimonial-author div {
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
}

.testimonial-author strong {
  font-size: 1em;
  color: #007bff;
  margin-bottom: 5px; 
}

.testimonial-author span {
  font-size: 0.9em;
  color: #666666;
}

/* Responsividade dos depoimentos */
@media (max-width: 1024px) {
  .testimonials-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   FAQ SECTION
   ============================== */
.faq-section {
  text-align: center;
  padding: 40px 5%;
  background-color: #ffffff;
}

.faq-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
  color: #333333;
}

.faq-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #666666;
  text-align: left;
}

.faq-container {
  text-align: left;
}

.faq-item {
  margin-bottom: 10px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 15px;
  font-size: 1.1em;
  color: #007bff;
  border: none;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #e6e6e6;
}

.faq-answer {
  display: none; /* Esconde a resposta por padrão */
  padding: 15px;
  background-color: #ffffff;
  font-size: 1em;
  color: #555555;
}

.faq-answer p,
.faq-answer ul {
  margin: 0;
  padding: 0;
}

.faq-answer ul {
  list-style-type: disc;
  margin-left: 20px;
}

.faq-item.active .faq-answer {
  display: block; /* Exibe a resposta quando ativo */
}

/* ==============================
   CTA SECTION
   ============================== */
.cta-section {
  background-color: #ffffff; 
  padding: 40px 5%;
  text-align: center;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-text {
  max-width: 60%;
  text-align: left;
}

.cta-text h1 {
  font-size: 2.5em;
  color: #ff0000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.2em;
  color: #666666;
  margin-bottom: 20px;
}

.cta-text button {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-text button:hover {
  background-color: #001dd9;
}

.cta-text button i {
  margin-right: 10px;
}

.cta-image {
  max-width: 35%;
}

.cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

/* Ocultar a imagem somente no celular */
@media (max-width: 768px) {
  .cta-image img {
    display: none; 
  }

  .cta-content {
    flex-direction: column; 
    text-align: center;
  }

  .cta-text {
    max-width: 100%;
  }

  .cta-image {
    max-width: 100%;
  }
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  background: linear-gradient(90deg, #3b2178, #1a3aa1);
  color: #ffffff;
  padding: 50px 5%;
  text-align: center;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 30px;
  justify-content: center;
}

.footer-block {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.footer-logo {
  max-width: 80%;
  height: auto;
  margin: 0 auto 15px;
  display: block;
}

.footer-block h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
  text-align: center;
  color: #ffd700; 
}

.footer-block p {
  font-size: 0.9em;
  line-height: 1.6;
  color: #eeeeee;
}

.footer-block a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.footer-block a:hover {
  color: #ffffff; 
}

.footer-block button {
  background-color: #ffd700; 
  color: #1a3aa1; 
  border: none;
  padding: 6px 15px;
  margin: 10px 0;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  text-align: center;
}

.footer-block button:hover {
  background-color: #ffffff; 
  color: #1a3aa1;
}

.footer-bottom {
  font-size: 0.9em;
  color: #525252;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Responsividade do footer */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Unificação do footer-map */
.footer-map {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-map:hover {
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

/* ==============================
   REVIEW BUTTON
   ============================== */
.review-button {
  display: inline-block;
  background-color: #ffd700;
  color: #1a3aa1;
  padding: 10px 20px;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.review-button:hover {
  background-color: #ffffff;
  color: #1a3aa1;
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* ==============================
   WHATSAPP BUTTON
   ============================== */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-button img {
  width: 50%;
  height: 50%;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
}

/* ==============================
   SERVIÇOS BLOCO
   ============================== */
.servicos-bloco {
  background-color: transparent;
  text-align: center;
  padding: 50px 20px;
}

.servicos-bloco .subtitulo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  color: black;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.servicos-bloco .subtitulo .linha {
  display: inline-block;
  height: 2px;
  width: 50px;
  background-color: black;
}

.servicos-bloco h2 {
  font-size: 28px;
  font-weight: bold;
  color: #585858;
  margin: 0;
}

/* ==============================
   BLOCO-SERVIÇOS PROFISSIONAL
   ============================== */
.bloco-servicos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px; /* Garante uma altura imponente */
    padding: 80px 5%;
    background: url('img/banner.webp') no-repeat center center/cover;
    overflow: hidden;
}

/* Overlay Dinâmico: Mais escuro à esquerda para destacar o texto */
.bloco-servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 31, 100, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.bloco-servicos .conteudo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 40px;
    z-index: 2;
}

.bloco-servicos .texto {
    flex: 1;
    max-width: 600px;
    color: #ffffff;
    animation: fadeInSlide 0.8s ease-out;
}

.bloco-servicos .texto h2 {
    font-size: clamp(2rem, 5vw, 3rem); /* Fonte fluida */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.bloco-servicos .texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #ffcc00; /* Detalhe visual de destaque */
    padding-left: 20px;
}

.bloco-servicos .imagem {
    flex: 0 0 350px;
    display: flex;
    justify-content: center;
}

.bloco-servicos .imagem img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    filter: brightness(85%);
}

.bloco-servicos .imagem img:hover {
    transform: scale(1.03);
}

/* Animação de entrada */
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsividade Aprimorada */
@media (max-width: 992px) {
    .bloco-servicos .conteudo {
        flex-direction: column;
        text-align: center;
    }

    .bloco-servicos .texto {
        max-width: 100%;
    }

    .bloco-servicos .texto p {
        border-left: none;
        border-top: 3px solid #ffcc00;
        padding-left: 0;
        padding-top: 15px;
    }

    .bloco-servicos .imagem {
        flex: none;
        width: 100%;
    }
}
/* ==============================
   GALERIA
   ============================== */
/* Ajuste do padding da galeria em telas pequenas */
@media (max-width: 768px) {
  .gallery-container {
    padding: 10px 0; /* Se quiser reduzir mais, use 0 */
  }
}

.gallery-container {
    display: grid;
    /* Isso faz com que as colunas se ajustem sozinhas para preencher o espaço */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 15px;
    padding: 20px;
    background-color: #f4f4f4;
}

.gallery-item.hidden {
    display: none !important;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 200px; /* Você pode manter 150px ou usar 200px para aparecer mais a foto */
    object-fit: cover; /* ISSO É O SEGREDO: Corta a foto para preencher o espaço sem esticar */
    object-position: center; /* Mantém o centro da foto visível */
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.gallery-item img {
    /* ... suas regras anteriores (width, height, object-fit) ... */
    image-rendering: -webkit-optimize-contrast; /* Melhora a nitidez em navegadores Chrome/Edge */
    image-rendering: crisp-edges;               /* Ajuda a evitar o embaçado em alguns navegadores */
    transform: translateZ(0);                   /* Força a aceleração de hardware para suavizar o redimensionamento */
    backface-visibility: hidden;               /* Previne pequenos tremores ou "pulos" de pixel */
}

.gallery-item:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .cta-text h1 {
    font-size: 1.8em; /* ou outro valor menor */
    text-align: center; /* opcional, se quiser centralizar */
    word-wrap: break-word; /* garante quebra de linha se necessário */
  }
}



/* O Modal (fundo escuro) */
/* O Modal ocupa a tela toda e centraliza o conteúdo */
.modal {
    display: none; /* Alterado para 'flex' via JavaScript */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* O "Wrapper" é quem manda no posicionamento do X */


.modal-content-wrapper {
    position: relative;
    display: table; 
    margin: auto;
    max-width: 90%;
    /* Garante que cliques no wrapper passem para o modal se necessário */
    pointer-events: auto; 
}

.modal-content {
    /* Impede que o clique na imagem feche o modal */
    pointer-events: auto; 
}

/* Estilo da Imagem */
.modal-content {
    cursor: default;
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    border: 3px solid #fff; /* Moldura branca que você quer */
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* O botão X fixo na imagem */
.modal .close {
    position: absolute;
    /* Ajuste fino para ficar dentro da borda branca no canto */
    top: 10px; 
    right: 10px;
    
    background-color: rgba(255, 255, 255, 0.8); /* Fundo branco semi-transparente como no seu print */
    color: #333; /* Cor do X */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: background 0.3s ease;
}

.modal .close:hover {
    background-color: rgba(255, 255, 255, 1);
}

/* Ajuste específico para celular */
@media (max-width: 768px) {
    .modal .close {
        top: 5px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* ==============================
   LIGHTBOX CLOSE BUTTON
   ============================== */
.lb-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: white;
  color: black;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 1050;
}

.lb-close:hover {
  background-color: black;
  color: white;
}

/* Força o botão de fechar a aparecer dentro do lightbox */
.lightbox .lb-close {
  display: block !important;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: white;
  color: black;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-size: 16px;
  z-index: 1050;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.lightbox .lb-close:hover {
  background-color: black;
  color: white;
}

/* ==============================
   MODAL PARA EXIBIR IMAGEM
   ============================== */
/* Centraliza tudo */
.modal {
    display: none; /* Será alterado para flex pelo JS */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    cursor: zoom-out; /* Opcional: muda o cursor para indicar que fechará ao clicar */
}

/* O SEGREDO: 'display: table' faz o wrapper ter o tamanho exato da foto */
.modal-content-wrapper {
    position: relative;
    display: table; 
    margin: auto;
    max-width: 90%;
}

/* A imagem dita o tamanho do wrapper */
.modal-content {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* O X agora fica preso à quina da imagem */
.modal .close {
    position: absolute;
    top: 10px;    /* Ajuste para dentro da borda branca */
    right: 10px;  /* Ajuste para dentro da borda branca */
    
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2100;
}

.modal .close:hover {
  background: rgba(255, 255, 255, 1);
  color: #000;
}

/* ==============================
   FORM CONTAINER
   ============================== */
.form-container {
  max-width: 100%;
  margin: auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f1f1f1;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-top: 3%;
  margin-bottom: 3%;
}

.form-container h1 {
  text-align: center;
  font-size: 1.8em;
  color: #333;
  margin-bottom: 20px;
}

.form-container label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
  color: #333;
  text-align: left;
}

.form-container input,
.form-container textarea,
.form-container select,
.form-container button {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 1em;
}

.form-container textarea {
  resize: none;
  max-width: 100%;
  min-height: 100px;
}

.form-container button {
  background-color: #007BFF;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.form-container button:hover {
  background-color: #0056b3;
}

/* Seção para o serviço de montador */
.montador-section {
  display: none;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #eef5ff;
}

.montador-section p {
  margin: 0 0 10px;
  font-size: 0.95em;
  color: #333;
}

/* Seções de endereço */
.address-section {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.address-section h2 {
  margin-top: 0;
  font-size: 1.2em;
  color: #007BFF;
  text-transform: uppercase;
  text-align: left;
}

.address-section:hover {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* ==============================
   BLOCO-ORCAMENTO
   ============================== */
.bloco-orcamento {
  color: #4e4b4b;
  text-align: center;
  padding: 20px;
  font-family: Arial, sans-serif;
  margin-bottom: 20px;
}

.bloco-orcamento h1 {
  font-size: 2em;
  font-weight: bold;
  margin: 0;
  margin-top: 30px;
}

.bloco-orcamento p {
  font-size: 1em;
  background-color: #0439a9;
  color: #FFFFFF;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 9px;
  margin-top: 22px;
}

/* ==============================
   UNIFICAÇÃO DE H1, H2, H3 E P
   ============================== */
/* Se quiser que TODOS os h1, h2, h3 fiquem do mesmo tamanho,
   descomente a linha de font-size. 
   Caso contrário, eles manterão o tamanho definido acima,
   e apenas terão a mesma fonte e alinhamento. */

h1, h2, h3 {
  font-family: Arial, sans-serif;
  /* font-size: 2em;  Descomente se quiser todos do mesmo tamanho */
  text-align: center;  /* Alinha todos os títulos ao centro */
  margin: 0;
  margin-bottom: 0.5em;
  font-weight: bold;   /* Mantém estilo de negrito */
}

/* Parágrafos com fonte unificada e alinhados à esquerda */
p {
  font-family: Arial, sans-serif;
  /* font-size: 1em;  Se quiser forçar o mesmo tamanho em todos os <p> */
  text-align: left;
  margin: 0 0 1em 0;
}


.centralizado {
  text-align: center;
}



/* ==============================
   ESTILOS REPASSADOS DO INDEX (GOOGLE REVIEWS)
   ============================== */

.testimonials-section .subtitulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.testimonials-section .subtitulo .linha {
    display: inline-block;
    height: 2px;
    width: 50px;
    background-color: #333;
}

/* Container de Depoimentos - Grid de 3 colunas */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Box de Depoimento Estilo Google */
.testimonial-box {
    background: #ffffff;
    border: 1px solid #dadce0; 
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: box-shadow 0.2s;
    box-shadow: none; /* Resetando sombra do global se necessário */
}

.testimonial-box:hover {
    box-shadow: 0 1px 6px rgba(32,33,36,0.28);
    transform: none; /* Removendo o pulo do estilo antigo para manter fiel ao Google */
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.testimonial-header img:first-child {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.author-info strong {
    font-size: 14px;
    color: #3c4043;
}

.stars {
    color: #fbbc04; 
    font-size: 14px;
    text-align: left;
}

.stars small {
    color: #70757a;
    font-size: 12px;
    margin-left: 5px;
}

.local-guide {
    font-size: 12px;
    color: #70757a;
    display: block;
}

.google-icon {
    width: 18px;
    opacity: 0.6;
}

.testimonial-box p {
    font-size: 14px;
    color: #3c4043;
    line-height: 1.5;
    margin: 0;
    text-align: left; /* Garante alinhamento à esquerda */
}

.verified-tag {
    font-size: 11px;
    color: #70757a;
    display: flex;
    align-items: center;
    gap: 5px;
    border-top: 1px solid #f1f3f4;
    padding-top: 10px;
    margin-top: auto;
}

/* Botão "Ver Mais" Estilo Google */
.btn-google-container {
    text-align: center;
    margin-top: 40px;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a73e8; 
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s, box-shadow 0.3s;
    font-family: 'Roboto', Arial, sans-serif;
    border: none;
    cursor: pointer;
}

.btn-google:hover {
    background-color: #1557b0;
    box-shadow: 0 1px 3px rgba(60,64,67,0.3), 0 4px 8px rgba(60,64,67,0.15);
}

/* Lógica de ocultar itens para o JS */
.hidden {
    display: none !important;
}

/* Ajustes de Responsividade para Depoimentos */
@media (max-width: 1024px) {
    .testimonials-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}




