/* ==============================
   RESET & GLOBAL
   ============================== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==============================
   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 */
  }
}

/* Menu principal (desktop) */
.header .menu {
  display: flex;
  gap: 15px;
  margin-right: 30px;
}

.header .menu button {
  background-color: #ffd700; /* Amarelo dourado */
  color: #1a3aa1;            /* Texto azul para contraste */
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header .menu button:hover {
  background-color: #ffffff; /* Branco ao hover */
  color: #1a3aa1;
}

/* Ícone hambúrguer (mobile) */
.hamburger {
  display: none; /* Escondido em telas grandes */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 5px;
  margin-right: 25px;
}

/* Menu responsivo (mobile) */
@media (max-width: 768px) {
  .header .menu {
    display: none; /* Esconde o menu em telas pequenas */
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: #007bff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .header .menu.active {
    display: flex; /* Mostra o menu quando ativado */
  }

  .hamburger {
    display: flex; /* Mostra o hambúrguer em telas pequenas */
  }
}

/* ==============================
   MENU LATERAL (SIDE MENU)
   ============================== */
.side-menu {
  position: fixed;
  top: 0;
  left: -100%; /* Escondido fora da tela */
  width: 80%;  /* Largura do menu lateral */
  height: 100%;
  background-color: #ffffff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0; /* Mostra o menu */
}

.side-menu button {
  background: none;
  border: none;
  font-size: 1.2em;
  color: #000;
  text-align: left;
  cursor: pointer;
}

.side-menu button:hover {
  color: #007bff;
}

.close-menu {
  align-self: flex-end;
  background-color: transparent;
  border: none;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  color: #000;
}

/* Esconde o menu lateral no desktop */
@media (min-width: 769px) {
  .side-menu {
    display: none;
  }
}

/* ==============================
   BANNER
   ============================== */
.banner {
  position: relative;
  width: 100%;
  height: 550px;
  background-image: url('img/banner.webp'); /* Imagem do banner */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fundo preto com opacidade */
}

.banner-content {
  position: relative;
  color: #ffffff;
  text-align: center;
  z-index: 1;
}

.banner-content h1 {
  font-size: 2.5em;
  margin: 0;
  margin-top: 40px;
}

.banner-content p {
  font-size: 1.2em;
  margin: 17px 10px;
}

.banner-content button {
  background-color: #001dd9;
  color: #ffffff;
  border: none;
  padding: 16px 38px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 26px;
}

.banner-content button:hover {
  background-color: #ff0000;
}

/* ==============================
   CONTENT SECTION
   ============================== */
.content-section {
  text-align: center;
  padding: 40px 150px;
  color: #555555;
  border-radius: 10px; /* Bordas arredondadas */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra suave */
}

@media (max-width: 768px) {
  .content-section {
    padding: 40px 5%;
  }
}

.content-section h2 {
  font-size: 28px; /* Tamanho do título */
  margin-bottom: 20px; /* Espaçamento abaixo do título */
}

.content-section p {
  font-size: 18px; /* Tamanho do texto */
  margin-bottom: 15px; /* Espaçamento entre parágrafos */
  text-align: left;
}

.content-section ul {
  text-align: left;     /* Alinha os itens à esquerda */
  display: inline-block;/* Centraliza a lista dentro do bloco */
  list-style-type: none;/* Remove os marcadores padrão */
  padding: 0;
  margin: 20px 0;
}

.content-section ul li {
  font-size: 18px;      /* Tamanho maior para os itens */
  margin-bottom: 10px;  /* Espaçamento entre os itens */
  padding-left: 30px;   /* Espaçamento à esquerda para os ícones */
  position: relative;   /* Permite usar ícones como marcadores */
}

.content-section ul li::before {
  content: "\f058";               /* Ícone (Font Awesome) */
  font-family: "Font Awesome 6 Free"; /* Biblioteca de ícones */
  font-weight: 900;
  color: #007bff; /* Cor do ícone */
  position: absolute;
  left: 0; 
  top: 0;
}

/* ==============================
   SERVICES SECTION
   ============================== */
.services-section {
  text-align: center;
  padding: 30px 5%;
  background-color: #f9f9f9;
}

.services-section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #333333;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 blocos por linha */
  gap: 20px; /* Espaçamento entre os blocos */
}

.service-box {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.15);
}

.service-box img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
}

.service-box h3 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #007bff;
}

.service-box p {
  font-size: 1em;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
}

.service-box button {
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.service-box button:hover {
  background-color: #001dd9;
}

/* Responsividade dos serviços */
@media (max-width: 1024px) {
  .services-container {
    grid-template-columns: repeat(2, 1fr); /* 2 blocos por linha */
  }
}

@media (max-width: 600px) {
  .services-container {
    grid-template-columns: 1fr; /* 1 bloco por linha */
  }
}

@media (max-width: 768px) {
  .services-intro {
    text-align: left;
  }
}

/* ==============================
   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: flex-start; /* Alinha itens ao topo */
  justify-content: center;
  gap: 125px;
  flex-wrap: wrap;         /* Ajusta para telas menores */
}

.blue-section-content img {
  max-width: 40%; 
  height: auto;
  border-radius: 10px;
}

.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%;
  }
  .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
   ============================== */
.bloco-servicos {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px;
  background-image: url('img/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.bloco-servicos .conteudo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding: 20px;
  z-index: 1;
}

.bloco-servicos .texto {
  max-width: 50%;
  color: white;
  margin-left: 100px;
}

.bloco-servicos .texto h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
}

.bloco-servicos .texto p {
  font-size: 18px;
  line-height: 1.5;
}

.bloco-servicos .imagem {
  margin-right: 100px;
}

.bloco-servicos .imagem img {
  width: 300px;
  border-radius: 10px;
  object-fit: cover;
}

/* Fundo escurecido para destaque do texto */
.bloco-servicos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

/* Responsividade do bloco-servicos */
@media (max-width: 768px) {
  .bloco-servicos {
    flex-direction: column;
    padding: 30px 5%;
    text-align: center;
  }

  .bloco-servicos .conteudo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0px;
    gap: 15px;
  }

  .bloco-servicos .texto {
    max-width: 100%;
    margin: 0;
    padding: 10px;
  }

  .bloco-servicos .texto h2 {
    font-size: 28px;
  }

  .bloco-servicos .texto p {
    font-size: 16px;
    text-align: left;
  }

  .bloco-servicos .imagem {
    margin: 0;
  }

  .bloco-servicos .imagem img {
    width: 90%;
    max-width: 300px;
  }
}

/* ==============================
   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;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  padding: 20px;
  background-color: #f4f4f4;
}

.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: 150px; 
  object-fit: cover;
  transition: transform 0.3s ease;
}

.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 */
  }
}

/* ==============================
   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
   ============================== */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  width: 60%;
  height: auto;
  max-width: 600px;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  margin-top: 16%;
  margin-bottom: 16%;
}

.modal-content:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.modal .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.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;
}


