:root {
  --vh: 1vh;
}


   /*CSS da NAVBAR*/
    
    @media (max-width: 768px) {

  .navbar {

    position: relative;

  }

  .nav-links {

    top: 100%;

    left: 0;

    right: 0;

    width: 100vw;

    background-color: #111;

    z-index: 1001;

  }

  .nav-links li {

    padding: 10px 0;

    text-align: center;

  }

}
      
 #header, 

#Header1, 

#menu, 

#main-menu, 

.mobile-menu, 

.header-bar, 

.menu-toggle {

  display: none !important;

}
      body {

  margin: 0;
  font-family: 'Times New Roman', Times, serif;

  padding: 0;

  overflow-x: hidden;

}
      
      /* MENU GERAL */
header {
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 999;
  width: 100%;
}

.navbar {
      position: relative;
      z-index: 1001;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5vw;/* padding: 10px 5vw;*/
  max-width: 100%;/*max-width: 1400px;*/
  margin: 0 auto;
  box-sizing: border-box;
}


.logo img {
  height: 50px;
}

/* LINKS: padrão é escondido no mobile */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.nav-links li a:hover {
  color: #FFD700;
}

/* HAMBURGUER escondido por padrão */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: white;
  border-radius: 2px;
}
/* 1920x1080 (FULL HD - Desktop grande) */
@media (max-width: 1920px) {
  .nav-links li a {
    font-size: 20px;
  }
}

/* 1680x1050 */
@media (max-width: 1680px) {
  .nav-links li a {
    font-size: 19px;
  }
}

/* 1600x900 */
@media (max-width: 1600px) {
  .nav-links li a {
    font-size: 18px;
  }
}

/* 1440x900 */
@media (max-width: 1440px) {
  .navbar {
    padding: 10px 4vw;
  }
  .nav-links {
    gap: 25px;
  }
}

/* 1400x1050 */
@media (max-width: 1400px) {
  .nav-links li a {
    font-size: 17px;
  }
}

/* 1366x768 */
@media (max-width: 1366px) {
  .nav-links {
    gap: 20px;
  }
  .logo img {
    height: 45px;
  }
}

/* 1360x768 */
@media (max-width: 1360px) {
  .nav-links li a {
    font-size: 16px;
  }
}

/* 1280x1024 */
@media (max-width: 1280px) {
  .nav-links li a {
    font-size: 15px;
  }
  .logo img {
    height: 40px;
  }
}

/* 1152x864 */
@media (max-width: 1152px) {
  .navbar {
    padding: 10px 3vw;
  }
  .nav-links {
    gap: 15px;
  }
}

/* 1024x768 (TABLET Paisagem) */
@media (max-width: 1024px) {
  .nav-links {
    gap: 10px;
  }
  .nav-links li a {
    font-size: 14px;
  }
}

/* 900px até 768px (TABLET e MOBILE grande) */
@media (max-width: 900px) {
  .logo img {
    height: 35px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #111;
    flex-direction: column;
    width: 100%;
    display: none;
    padding: 20px;
      z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
      .hamburger-menu-container {

  display: none !important;

}
      
      /* Desbloquear visibilidade do menu */

.sticky, 

.sticky .widget.Header h1, 

#page_list_top .widget.PageList .overflowable-contents {

  overflow: visible !important;

}

/* Garantir que o novo menu hambúrguer apareça por cima */

.menu-hamburguer {

  position: absolute;

  top: 0;

  right: 0;

  z-index: 9999;

}
      
      .sidebar-invisible {
  display: none !important;
} /*FINAL DO CSS DA NAVBAR*/


/*Inicio Banner*/
  .content-box {
    position: relative;
    width: 100%;
    padding: 0;
    background: #f9f9f9;
  }

  .slideshow-container {
    position: relative;
    width: 100%;
      height: 80vh; 
     overflow: hidden;
  }

  .static-image {
    width: 100%;
    height: 80vh;
    object-fit: cover;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    background: rgba(106, 14, 14, 0.3);
    z-index: 5;
  }


  .overlay-text {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    max-width: 400px;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
    text-align: center;
  }

  .overlay-text h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
  }

  .overlay-text p {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .btn-overlay {
    display: inline-block;
    padding: 10px 25px;
    background-color: #0c9;
    
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
  }

  .btn-overlay:hover {
    background-color: #07a;
  }
  /* ============================= */
/* INÍCIO BANNER */
/* ============================= */
/*.content-box {
  position: relative;
  width: 100%;
  padding: 0;
  background: #000; 
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 80vh; 
  max-height: 900px; 
  overflow: hidden;
}

.static-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0; 
  background: rgba(106, 14, 14, 0.3);
  z-index: 5;
}

.overlay-text {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%); 
  color: white;
  max-width: 600px;
  padding: 0 20px; 
  z-index: 10;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
  text-align: center;
}

.overlay-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.overlay-text p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.btn-overlay {
  display: inline-block;
  padding: 12px 28px;
  background-color: #0c9;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.btn-overlay:hover {
  background-color: #07a;
}

@media (max-width: 1024px) {
  .overlay-text h1 {
    font-size: 2rem;
  }
  .overlay-text p {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .overlay-text h1 {
    font-size: 1.6rem;
  }
  .overlay-text p {
    font-size: 0.9rem;
  }
  .btn-overlay {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}*/

/*Final do Banner*/



/*INICIO Do CSS DO SLIDESHOW*/
.sobre-nos {
    background: #fff;
    padding: 80px 5vw;
  }

  .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
  }

  .texto {
    flex: 1;
    min-width: 320px;
    max-width: 600px;
  }

  .texto h2 {
    font-size: 56px;
    margin-bottom: 20px;
    color: #111;
  }

  .texto p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
  }

  .btn {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
  }

  .btn:hover {
    background: #ffc107;
    color: #000;
  }

  .slideshow {
    position: relative;
    flex: 1;
    min-width: 320px;
    max-width: 700px;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .slides {
    width: 100%;
    height: 100%;
  }

  .slide {
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .slide.active {
    display: block;
  }
  
  .dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
  }

  .dots span {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background 0.3s;
  }

  .dots span.active {
    background: #111;
  }
@media (min-width: 1600px) {
  .sobre-nos .container {
      justify-content: center; /* centraliza elementos no meio */
      gap: 80px;               /* controla espaçamento */
  }

  .sobre-nos .texto,
  .sobre-nos .slideshow {
      max-width: 900px;        /* largura máxima dos blocos */
  }
}
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .slideshow {
      width: 100%;
      height: 300px;
      margin-top: 30px;
    }

    .slide {
      height: 100%;
    }
  }
  /*FINAL DO CSS DO SLIDESHOW*/

/*Inicio CTA*/
  /* Resetando margens e padding globais */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    width: 100%;
    overflow-x: hidden; /* Evita scroll horizontal */
  }

  .cta-section {
    background: linear-gradient(to right, #000, #333);
    padding: 40px 5vw 40px; /* Ajustado para reduzir espaçamento inferior */
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .cta-section h2 {
    font-size: 3em;
    margin-bottom: 20px;
  }

  .cta-section p {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .cta-buttons a {
    padding: 15px 30px;
    font-size: 1.2em;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
  }

  .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
  }

  .btn-agendar {
    background-color: #FFD700;
    color: #000;
  }

  /* Responsividade para telas muito grandes */
  @media screen and (min-width: 1600px) {
    .cta-section {
      padding: 60px 10vw 30px;
    }

    .cta-section h2 {
      font-size: 3em;
    }

    .cta-section p {
      font-size: 1.4em;
    }

    .cta-buttons a {
      font-size: 1.5em;
      padding: 20px 40px;
    }
  }

  /* Responsividade tablets */
  @media screen and (max-width: 1024px) {
    .cta-section {
      padding: 50px 8vw 25px;
    }

    .cta-section h2 {
      font-size: 2.2em;
    }

    .cta-section p {
      font-size: 1.3em;
    }

    .cta-buttons a {
      font-size: 1.3em;
      padding: 18px 35px;
    }
  }

  /* Responsividade celulares */
  @media screen and (max-width: 768px) {
    .cta-section {
      padding: 40px 5vw 20px;
    }

    .cta-section h2 {
      font-size: 2em;
    }

    .cta-section p {
      font-size: 1.2em;
    }

    .cta-buttons a {
      font-size: 1.1em;
      padding: 15px 30px;
    }
  }

  /* Formulário */
  #formulario-agendamento {
    display: none;
    margin-top: 20px;
  }
#formulario-agendamento h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 36px;
}

  form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  form input,
  form textarea {
    padding: 15px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: #000;
  }

  form button {
    padding: 15px;
    font-size: 1.2em;
    background-color: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
/*Final CTA*/

  /*INICIO DO CSS SERVIÇOS*/
.section.parte-amarela {
  background-color: #FFD700;
  padding: 60px 2vw; /* 60px em cima e embaixo, 2vw nas laterais */
  text-align: center;
}

section.parte-amarela h2 {
  font-size: clamp(32px, 4vw, 64px);
  font-weight: bold;
  color: #000;
  /*color: #fff;*/
  margin-bottom: 2vw;
}

section.parte-amarela ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

section.parte-amarela li {
  margin: 0;
}

section.parte-amarela a {
  font-size: clamp(18px, 2.5vw, 36px);
  color: #000;
    /*color: #fff;*/
  text-decoration: none;
  transition: color 0.3s ease, transform 0.2s ease;
}

section.parte-amarela a:hover {
  color: #333;
    /*color: #ddd;*/
  transform: scale(1.05);
}

/* Telas muito grandes (ex: 4K) */
@media (min-width: 2560px) {
  section.parte-amarela {
    padding: 80px 100px;
  }
  section.parte-amarela ul {
    gap: 40px;
  }
}

/* Tablets e celulares */
@media (max-width: 768px) {
  section.parte-amarela ul {
    gap: 20px;
  }
  section.parte-amarela {
    padding: 30px 20px;
  }
}
/*FINAL DO CSS SERVIÇOS*/

/*GALERIA DE IMAGENS*/
  .galeria-instagram {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
  }

  .galeria-instagram h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: #000;
    margin-bottom: 30px;
  }

  .grid-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
  }

  @media (max-width: 1024px) {
    .grid-fotos {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .grid-fotos {
      grid-template-columns: 1fr;
    }
  }

  .grid-fotos img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .grid-fotos img:hover {
    transform: scale(1.03);
  }

  .botao-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.botao-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/*FINAL DE GALERIA DE IMAGENS*/
/*Botao do Instagram*/
.botao-instagram {
  position: fixed;
  bottom: 90px; /* acima do WhatsApp */
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.botao-instagram:hover {
  transform: scale(1.1);
}

.instagram-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
/*Final do Botão do Instagram*/
/*FAQ*/
.faq-section {
  background: linear-gradient(135deg, #fefefe, #f4f4f4);
padding: 40px 5vw;
  margin: 0 auto; 
  color: #333;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}
.faq-container {
  max-width: 900px;
  margin: auto;
}
details.faq-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 25px;
  padding: 24px;
  transition: all 0.4s ease;
  border-left: 6px solid #FFC107;
}

details.faq-box:hover {
  transform: scale(1.01);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

details.faq-box[open] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

details.faq-box summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 20px;
  position: relative;
  list-style: none;
  padding-right: 30px;
}

details.faq-box summary:focus {
  outline: none;
}

details.faq-box summary::-webkit-details-marker {
  display: none;
}

details.faq-box summary::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 24px;
  color: #FFC107;
  transition: transform 0.3s ease;
}

details.faq-box[open] summary::after {
  content: '-';
  transform: rotate(180deg);
}

details.faq-box p {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 16px;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-button-wrapper {
  text-align: right;
  margin-top: 15px;
}

.faq-button {
  display: inline-block;
  background-color: #FFC107;
  color: #000;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.faq-button:hover {
  background-color: #e6b800;
  transform: scale(1.03);
}

/* Responsivo */
@media (max-width: 768px) {
  section.faq-section {
    padding: 50px 10px;
  }

  .faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  details.faq-box {
    padding: 16px;
    margin-bottom: 15px;
  }

  details.faq-box summary {
    font-size: 18px;
  }

  details.faq-box p {
    font-size: 14px;
  }

  .faq-button-wrapper {
    text-align: center;
    padding-right: 0;
  }

  .faq-button {
    font-size: 12px;
    padding: 8px 12px;
  }
}

@media (min-width: 1200px) {
  section.faq-section {
    padding: 50px 40px;
  }
  .faq-container {
    width: 80%;
    max-width: 1800px;
  }
}

/*@media (min-width: 1400px) {
  section.faq-section {
    padding: 50px 40px;
  }
  .faq-container {
    width: 80%;
    max-width: 1400px;
  }
}*/



/*FINAL DO FAQ*/

/*INICIO DO RODAPÈ FOOTER*/
/* ===== Footer ===== */
/*footer {
  background-color: #f1f1f1;
  padding: 40px 20px;
  font-family: sans-serif;
  color: #333;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

footer h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #002B7F;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

footer ul li {
  display: inline-block;
  margin: 0 10px;
}

footer ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

footer ul li a:hover {
  color: #FFD700;
}

footer p {
  margin: 5px 0;
  font-size: 14px;
}

footer p a {
  color: #002B7F;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}*/


footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

footer h3 {
  margin-bottom: 20px;
  color: white;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #ccc;
}

footer p {
  font-size: 14px;
  color: white;
  margin: 5px 0;
}
/*footer p a {
  color: #002B7F;
  text-decoration: none;
}

footer p a:hover {
  text-decoration: underline;
}*/
/*FINAL DO RODAPÈ FOOTER*/

.secao-titulo {
  font-size: 56px;
  font-weight: bold;
  color: white; 
  text-align: center;
  display: block; 
  margin-bottom: 16px;
}
.secao-titulo-black {
  font-size: 56px;
  /*font-weight: bold;*/
  color: black; 
  text-align: center;
  display: block; 
  margin-bottom: 16px;
}
.faq-section h2 {
     font-size: 42px;
  /*font-weight: bold;*/
  color: black; 
  text-align: center;
  display: block; 
  margin-bottom: 16px;
  }
  .faq-section h1 {
     font-size: 42px;
  /*font-weight: bold;*/
  color: black; 
  text-align: center;
  display: block; 
  margin-bottom: 16px;
  }
.secao-subtitulo {
 font-size: 1.2em;
    margin-bottom: 20px;
}

.titulo {
      font-family: 'Luckiest Guy', cursive;
           font-size: 48px; 
      /*color: #002B7F; *//*#d61c59 rosa forte */
      color: white;      
    } 

     .seccao-cartoes {
  display: flex;
  flex-direction: column;
   background: black;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}
.seccao-cartoes h2 {
  font-size: 56px;
  font-weight: bold;
  color: white;
  text-align: center;
  display: block;
  margin: 0 auto;
}


.lista-cartoes {
  display: flex;
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
  flex-wrap: wrap;
}

.cartao-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  /*flex-direction: column; *//* texto acima da imagem */
  flex-direction: column-reverse; /* texto acima da imagem */
  align-items: center;
  gap: 50px;
  min-width: 260px;
  flex: 1 1 260px;
  text-align: center; /* centraliza texto */
    justify-content: space-between; /* ou 'center' para centralizar tudo */

}
.cartao-item img {
  width: 300px;
  height: 400px;
  object-fit: cover; /* mantém proporção sem distorcer */
  display: block;
  margin: 0 auto; /* centraliza horizontalmente */
}
.cartao-item h3 {
  font-size: clamp(24px, 5vw, 36px);
}

.cartao-item p {
  font-size: clamp(20px, 4vw, 32px);
}



.container-galeria {
  display: flex;
   background: black;
  flex-direction: column; /* empilha verticalmente */
  align-items: center;    /* centraliza horizontalmente */
  width: 100%;
}


/*Botão de Atendimento2 usando keywords*/
/* Botão de atendimento (usado para todos os chats) */
.chat-toggle-btn {
  background-color: #002B7F;
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s;
}
.chat-toggle-btn:hover {
  background-color: #0041b3;
}

/* Container do botão */
.chat-button-container {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.chat-toggle-wrapper {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

/* Janela do chat (estilo comum para qualquer chat) */
.chat-window {
  width: 100%;
  position: fixed;
  bottom: 80px; /* Acima do botão */
  max-width: 600px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  border-left: 6px solid #FFC107;
  margin: 0 auto;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
   display: none; /* Visível ao ativar via JavaScript */
}

/* Cabeçalho do chat */
.chat-header {
  background-color: #002B7F;
  color: white;
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Conteúdo do chat */
.chat-content {
  padding: 20px;
  height: 250px;
  overflow-y: auto;
  background-color: white;
  display: flex;
  flex-direction: column;
}

/* Mensagens */
.bot-msg {
  align-self: flex-start;
  background-color: #F1F0F0;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 10px;
  max-width: 70%;
}

.user-msg {
  align-self: flex-end;
  background-color: #DCF8C6;
  padding: 8px 12px;
  margin-top: 10px;
  border-radius: 10px;
  max-width: 70%;
}

/* Área de input */
.chat-input-area {
  display: flex;
  padding: 10px;
  background-color: #eee;
}

.chat-input-area input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  color: #333;
  background-color: #fff;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 14px;
}

.chat-input-area button {
  background-color: #002B7F;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

.chat-input-area button:hover {
  background-color: #0041b3;
}

.message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  /*font-family: sans-serif;*/
  line-height: 1.4;
  margin-bottom: 4px;
}

.message.bot {
  background-color: #f0f0f0;
  color: #333;
  align-self: flex-start;
}

.message.user {
  background-color: #dcf8c6;
  color: #000;
  align-self: flex-end;
}

.quem-somos-section {
  padding: 20px;
  background-color: #f0f0f0;
}

.titulo {
  font-family: 'Luckiest Guy', cursive;
  font-size: 48px; 
  color: white;      
}

/*.seccao-cartoes {
  display: flex;
  flex-direction: column;
  background: black;
  justify-content: space-between;
  align-items: center;
  width: 100%;  
  padding: 20px 40px;
  box-sizing: border-box;
  gap: 40px;
}*/

.lista-cartoes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* melhora centralização responsiva */
  margin-bottom: 20px;
  gap: 30px;
  flex: 1;
}

.cartao-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column-reverse; /* texto acima da imagem */
  align-items: center;
  gap: 50px;
  flex: 1 1 260px;     /* responsivo */
  max-width: 400px;     /* impede que cresça demais */
  text-align: center;
  justify-content: space-between;
}

.cartao-item img {
  width: 100%;              /* torna a imagem responsiva dentro do card */
  height: 400px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.container-galeria {
  display: flex;
  background: black;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
/* 1920x1080 (Full HD e acima) */
@media (min-width: 1920px) {
  .seccao-cartoes h2 { font-size: 64px; }
  .cartao-item h3 { font-size: 40px; }
  .cartao-item p { font-size: 32px; }
  .cartao-item img { height: 450px; }
  .lista-cartoes { gap: 40px; }
}

/* 1680x1050 */
@media (max-width: 1680px) {
  .seccao-cartoes h2 { font-size: 58px; }
  .cartao-item img { height: 420px; }
}

/* 1600x900 */
@media (max-width: 1600px) {
  .seccao-cartoes h2 { font-size: 54px; }
  .cartao-item h3 { font-size: 34px; }
  .cartao-item p { font-size: 28px; }
}

/* 1440x900 */
@media (max-width: 1440px) {
  .seccao-cartoes h2 { font-size: 50px; }
  .cartao-item img { height: 380px; }
  .lista-cartoes { gap: 25px; }
}

/* 1400x1050 */
@media (max-width: 1400px) {
  .seccao-cartoes h2 { font-size: 48px; }
  .cartao-item h3 { font-size: 32px; }
  .cartao-item p { font-size: 26px; }
}

/* 1366x768 */
@media (max-width: 1366px) {
  .seccao-cartoes h2 { font-size: 46px; }
  .cartao-item img { height: 360px; }
}

/* 1360x768 */
@media (max-width: 1360px) {
  .cartao-item h3 { font-size: 30px; }
  .cartao-item p { font-size: 24px; }
}

/* 1280px (cobre 1280x1024, 1280x960, 1280x800, 1280x768, 1280x720, 1280x600) */
@media (max-width: 1280px) {
  .cartao-item {
    flex: 1 1 calc(40% - 30px); /* duas colunas fixas */
    max-width: calc(40% - 30px);
  }
  .seccao-cartoes h2 { font-size: 42px; }
  .cartao-item img { height: 340px; }
  .lista-cartoes { gap: 20px; }
}

/* 1152x864 */
@media (max-width: 1152px) {
  .cartao-item {
    flex: 1 1 calc(50% - 30px); /* duas colunas fixas */
    max-width: calc(50% - 30px);
  }
  .seccao-cartoes h2 { font-size: 38px; }
  .cartao-item h3 { font-size: 26px; }
  .cartao-item img { height: 350px; }
}

/* 1024x768 */
@media (max-width: 1024px) {
  .cartao-item {
    flex: 1 1 calc(50% - 30px); /* duas colunas fixas */
    max-width: calc(50% - 30px);
  }
  .seccao-cartoes h2 { font-size: 34px; }
  .cartao-item p { font-size: 20px; }
  .cartao-item img { height: 320px; }
}

/* 800x600 */
@media (max-width: 800px) {
  .seccao-cartoes h2 { font-size: 30px; }
  .cartao-item { max-width: 90%; }
  .cartao-item img { height: auto; max-height: 250px; }
}
/* 🔽 Media query para telas menores que 768px (ex: celulares) */
@media (max-width: 768px) {
  .cartao-item {
    max-width: 90%; /* ocupa mais espaço no mobile */
  }

  .cartao-item img {
    height: auto;
    max-height: 300px; /* reduz altura da imagem se necessário */
  }
}

.quem-somos-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
}
.quem-somos-section1 {
  padding: 40px 20px;
  background-color: #f9f9f9;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
  color: #333;
  max-width: 100%;
  margin: 0 auto;
}

.quem-somos-section h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #222;
  text-align: center;
}

.quem-somos-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.servicos-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 0 30px;
}

.servico {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  max-width: 1500px;  /* aumenta o tamanho da caixa */
  margin: 0 auto;    /* centraliza a caixa se couber só uma por linha*/
  padding: 35px 30px; /* mais espaçamento interno */
  border-radius: 15px; /* deixa um pouco mais arredondado */
}

.servico:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.servico img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 18px;
  object-fit: cover;
}

.servico h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.servico p {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
}
/* Centraliza texto e ajusta espaçamentos */
.texto-principal, .texto-secundario {
  
  color: #222;
  max-width: 1000px; /* aumenta a largura máxima */
  margin: 0 auto;    /* centraliza o conteúdo */
  padding: 0 20px;   /* espaçamento lateral */
  text-align: justify; /* opcional: melhora a leitura */
}

/* Título principal bem grande */
#titulo-principal {
 font-size: 56px;  /* Título principal bem destacado */
    font-weight: bold;
    margin-bottom: 20px;
       text-align: center;
  color: black;

} 
.servicos-total {
  margin-top: 40px; /* ajuste conforme a altura da sua navbar */
}

/* Subtítulo grande, mas menor que o h1 */
#subtitulo-grande {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

/* Parágrafo com texto destacado e maior */
#descricao-destaque {
  font-size: 1.3rem;
  font-weight: 500;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Parágrafos comuns da primeira div */
.texto-principal p {
 font-size: 1.5em;
  text-align: center;
  display: block; 
    margin-bottom: 20px;
}
.texto-principal h1 {
      font-size: 56px;
  /*font-weight: bold;*/
  color: black; 
  text-align: center;
  display: block; 
  margin-bottom: 16px;
}


/*Formulário Página COntato*/
.contato-section {
    background: #fff;
    color: black;
    padding: 40px 20px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    text-align: center; /* Centraliza os textos */
    overflow-x: hidden;
}

.contato-section address {
    margin: 20px auto;
      font-size: 22px;
}
.contato-section h1 {
    font-size: 42px;  /* Título principal bem destacado */
    font-weight: bold;
    margin-bottom: 20px;
       text-align: center;
}
.contato-section h4 {
    font-size: 42px;  /* Título principal bem destacado */
    font-weight: bold;
    margin-bottom: 20px;
      text-align: center;
}
.contato-section h2 {
    font-size: 32px;  /* Subtítulos maiores */
    font-weight: bold;
    margin-bottom: 16px;
}
.contato-section p {
    font-size: 22px;  /* Subtítulos maiores */
   /* font-weight: bold;*/
    margin-bottom: 16px;
}
/*.container-contato {
    background-color: #f7f7f7;
    border: 2px solid #000;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}*/

.form-container {
    background-color: #f7f7f7;  
    border: 2px solid #000;    
    border-radius: 15px;     
    padding: 40px;            
    max-width: 800px;         
    margin: 40px auto;         
     /*padding: 30px;*/
    /*border-radius: 10px;*/
    color: #000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}
.form-container label {
    font-weight: bold;
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
    text-align: left; /* Mantém o label alinhado à esquerda dentro do formulário */
}
/* Botão */
.form-container button {
    background-color: #FFC107;
    color: #000;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 22px;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background-color: #ddd;
}
/* Inputs e textarea com borda preta */
.form-container input,
.form-container textarea {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    border: 1px solid black; /* borda preta */
    margin-bottom: 16px;
    border-radius: 5px;
    /*font-weight: bold;*/
}

/* Telas grandes (acima de 1400px) */
@media (min-width: 1400px) {
  .form-container {
    width: 70%;
    max-width: 1000px;
  }
  form {
    width: 70%;
    max-width: 700px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

}

/* Telas muito grandes (acima de 1800px) */
@media (min-width: 1800px) {
  .form-container {
      width: 70%;
    max-width: 1200px;
  }
  form {
    width: 70%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.contato-item .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.contato-item a {
text-decoration: underline;         /* sublinhado */
  color: #0077cc !important;                     /* azul escuro bonito */
  color: #000;
    font-size: 20px;
}

.contato-item a:hover {
  /*text-decoration: underline;*/
  color: #004d99;                     /* tom mais escuro no hover */
  text-decoration: underline wavy;    /* sublinhado com ondinha no hover */
}
.contato-item .icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 8px;
}
.contato-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1px;
  margin-bottom: 10px;
  font-size: 20px;
}
.container-contato {
  /*background-color: #f7f7f7;*/
    background-color: #fff;
  /*border: 2px solid #000;*/
  border-radius: 15px;
  padding: 30px;
  max-width: 800px; /* mesma largura do form-container */
  margin: 30px auto;
  /*box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);*/
  text-align: left;

}
.contato-linha {
  display: flex;
  gap: 40px; /* espaçamento entre os dois itens */
  margin-bottom: 10px;
  flex-wrap: wrap; /* responsivo */
  
}
.redes-sociais {
  text-align: center;
  margin: 40px 0;
  padding: 20px;
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.redes-sociais h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #333;
}

.redes-sociais a {
  display: inline-block;
  margin: 0 12px;
  font-size: 1.2rem;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.redes-sociais a:hover {
  color: #0077cc;
}
@media (min-width: 1400px) {
  .container-contato {
    width: 70%;
    max-width: 1000px;
  }
 }

/* Telas muito grandes (acima de 1800px) */
@media (min-width: 1800px) {
  .container-contato {
      width: 70%;
    max-width: 1200px;
  }
 
}

/* Tablets (até 768px) */
@media (max-width: 768px) {
  .container-contato {
    padding: 20px;
    margin: 20px;
  }

  .contato-linha {
    flex-direction: column; /* empilha os itens */
    gap: 20px;
  }

  .contato-item {
    font-size: 18px;
  }

  .contato-item .icon {
    width: 20px;
    height: 20px;
  }

  .redes-sociais h2 {
    font-size: 1.5rem;
  }

  .redes-sociais a {
    font-size: 1rem;
    margin: 0 8px;
  }
}

/* Celulares (até 480px) */
@media (max-width: 480px) {
  .contato-item a {
    word-break: break-word;   /* quebra links longos */
    overflow-wrap: anywhere;  /* permite quebra até no meio */
    font-size: 16px;          /* já está ajustando fonte aqui */
  }
  .container-contato {
    padding: 15px;
    margin: 15px;
  }

  .contato-item {
    font-size: 16px;
    gap: 4px;
  }

  .contato-item .icon {
    width: 18px;
    height: 18px;
    margin-right: 6px;
  }

  .contato-linha {
    gap: 12px;
  }

  .redes-sociais {
    padding: 15px;
    margin: 20px 0;
  }

  .redes-sociais h2 {
    font-size: 1.3rem;
  }

  .redes-sociais a {
    font-size: 0.95rem;
    margin: 0 6px;
  }
}

/*Final Formulário Página Contato*/

/*Página Sobre*/
.quem-somos-section {
    background: white;
    color: black;
    padding: 40px 20px;
    /*max-width: 100%;
    width: 100vw;*/
    width: 90%;
    max-width: 100%;    
    margin: 0 auto;
    text-align: center; /* Centraliza os textos */
}

.quem-somos-section h1 {
    font-size: 42px;  /* Título principal bem destacado */
    font-weight: bold;
    margin-bottom: 20px;
}

.quem-somos-section h2 {
    font-size: 32px;  /* Subtítulos maiores */
    font-weight: bold;
    margin-bottom: 16px;
}
.quem-somos-section p {
    font-size: 22px;  /* Subtítulos maiores */
   /* font-weight: bold;*/
    margin-bottom: 16px;
    text-align: justify;
}
.quem-somos-section .valores-lista {
    list-style: none; /* Remove os marcadores padrão, se desejar */
    padding: 0;
    font-size: 22px;  /* Igual ao parágrafo */
    line-height: 1.6; /* Espaçamento entre linhas, igual ao do parágrafo */
    text-align: center; /* Centraliza, se quiser */
}

.quem-somos-section .valores-lista li {
    margin-bottom: 16px; /* Espaçamento entre os itens */
}

/*Final da Página Sobre*/

.quem-somos-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

/* Limita a largura do texto */
.quem-somos-section p,
.quem-somos-section h1,
.quem-somos-section h2,
.quem-somos-section .valores-lista {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    
}
.quem-somos-section .card {
    background-color: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px auto;
    max-width: 1100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quem-somos-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

@media (min-width: 1400px) {
  .quem-somos-section p,
  .quem-somos-section h1,
  .quem-somos-section h2,
  .quem-somos-section .valores-lista {
        width: min(90%, 1300px);
    margin: 0 auto;
    
  }
  .quem-somos-section img {
    width:80%;
    height: auto;
    max-width: 1300px;
    height: auto;
    margin-bottom: 30px;
}
  .quem-somos-section .card {
   width: 80%;       /* mesmo que a imagem */
    max-width: 1300px; /* limite máximo se a tela for muito grande */
    margin: 20px auto; /* centraliza */
  }
}

/* Ultra-wide */
@media (min-width: 1800px) {
  .quem-somos-section p,
  .quem-somos-section h1,
  .quem-somos-section h2,
  .quem-somos-section .valores-lista {
          width: 90%;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
  }
  .quem-somos-section .card {
     width: 80%;
      max-width: 1800px;
      margin: 20px auto;
  }
  .quem-somos-section img {
    width:80%;
    height: auto;
    /*max-width: 1800px;*/
    height: auto;
    margin-bottom: 30px;
}
}

/* Títulos */

/* ------------------------- */
/* 🟦 RESPONSIVO */
/* ------------------------- */
@media (max-width: 1024px) {
    .quem-somos-section h1 {
        font-size: 36px;
    }

    .quem-somos-section p,
    .quem-somos-section .valores-lista {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .quem-somos-section h1 {
        font-size: 30px;
    }

    .quem-somos-section p,
    .quem-somos-section .valores-lista {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .quem-somos-section h1 {
        font-size: 26px;
    }

    .quem-somos-section p,
    .quem-somos-section .valores-lista {
        font-size: 16px;
    }
}


/*paginas*/
/*.polimento-section {
  padding: 20px;
  background-color: #f0f0f0;
}*/
.polimento-section {
    background: white;
    color: black;
    /*padding: 40px 20px;*/
    max-width: 100%;
    width: 100vw;
   margin: 0 auto;
    text-align: center; /* Centraliza os textos */
}

.polimento-section h1 {
    font-size: 42px;  /* Título principal bem destacado */
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 40px; /* Ajuste o valor conforme quiser */

}

.polimento-section h2 {
    font-size: 42px;  /* Subtítulos maiores */
    font-weight: bold;
    margin-bottom: 16px;
}
.polimento-section p {
    font-size: 22px;  /* Subtítulos maiores */
   /* font-weight: bold;*/
    margin-bottom: 16px;
    text-align: justify;
}
.polimento-section .valores-lista {
    list-style: none; /* Remove os marcadores padrão, se desejar */
    padding: 0;
    font-size: 22px;  /* Igual ao parágrafo */
    line-height: 1.6; /* Espaçamento entre linhas, igual ao do parágrafo */
    text-align: center; /* Centraliza, se quiser */
}

.polimento-section .valores-lista li {
    margin-bottom: 16px; /* Espaçamento entre os itens */
}

/*Final da Página Sobre*/

/*.polimento-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}*/
.polimento-section img {
    width: 100%;
    max-width: 500px; /* Para 100% do container */
    height: auto;
    display: block;
    margin: 0 auto 30px; /* Centraliza e espaça */
    object-fit: contain; /* Mantém proporção mesmo se houver ajuste no container */
}

/* Limita a largura do texto */
.polimento-section p,
.polimento-section h1,
.polimento-section h2,
.polimento-section .valores-lista {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    
}
#pos-polimento {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

#pos-polimento h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

/* Container de Cards Pós-Polimento */
.pp-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

/* Cards individuais */
.pp-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pp-card h3 {
  margin-bottom: 12px;
  color: #222;
  font-size: 1.5rem;
}

/* Lista com ícones brilhantes */
.pp-card ul {
  list-style: none;
  padding-left: 0;
  color: #555;
  line-height: 1.6;
  font-size: 1.1rem;
}

.pp-card ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.pp-card ul li::before {
  /*content: "✨";*/ /* Ícone brilhante */
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFD700; /* amarelo */
}

/* ------------------------- */
/* 🟦 RESPONSIVO */
/* ------------------------- */
@media (max-width: 1024px) {
  #pos-polimento h2 {
    font-size: 1.8rem;
  }

  .pp-card h3 {
    font-size: 1.3rem;
  }

  .pp-card ul li {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  #pos-polimento h2 {
    font-size: 1.6rem;
  }

  .pp-card h3 {
    font-size: 1.2rem;
  }

  .pp-card ul li {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  #pos-polimento h2 {
    font-size: 1.4rem;
  }

  .pp-card h3 {
    font-size: 1.1rem;
  }

  .pp-card ul li {
    font-size: 0.9rem;
  }
}


/* Títulos */

/* ------------------------- */
/* 🟦 RESPONSIVO */
/* ------------------------- */
@media (max-width: 1024px) {
    .polimento-section h1 {
        font-size: 36px;
    }

    .polimento-section p,
    .polimento-section .valores-lista {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .polimento-section h1 {
        font-size: 30px;
    }

    .polimento-section p,
    .polimento-section .valores-lista {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
   .polimento-section h1 {
        font-size: 26px;
    }

    .polimento-section p,
    .polimento-section .valores-lista {
        font-size: 16px;
    }
}
.polimento-section .card {
    background-color: #f7f7f7;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px;
    margin: 20px auto;
    max-width: 1100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polimento-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/*CSS DA PAGINA SOBRE 1*/
  .sobre-section {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #FFD700;/*#8de1ff;*/
  gap: 40px;
}




.sobre-section img {
  width: 400px;
height:auto;
    
  border-radius: 20px;
}

.sobre-section .text-container {
  max-width: 800px;
  color: #444;
}
.sobre-section h1.titulo {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
.sobre-section h1.titulo1 {
  margin-top: 0; /* Remove espaço desnecessário no topo */
/*margin-bottom: 10px;*/
  line-height: 1.2; /* Compacta o texto */
}
/*FINAL DO CSS DA PAGINA SOBRE 1*/

/*CSS DA PAGINA SOBRE 2*/
  .sobre-section2 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: #fff;
  gap: 40px;
}

.sobre-section2 img {
  width: 400px;
  border-radius: 20px;
}

.sobre-section2 .text-container2 {
  max-width: 800px;
  color: #444;
}

@media (max-width: 1280px) {
  .sobre-section2 .text-container2 {
    order: 2;
  }
  .sobre-section2 .image-container3 {
    order: 1;
  }
}
/*FINAL DO CSS DA PAGINA SOBRE 2*/

/*CSS DA PAGINA SOBRE 3*/
  .sobre-section3 {
  display: flex;
  flex-wrap: wrap;
    padding: 40px 40px 40px 40px; /* Aumentamos o padding-top para 100px */
  align-items: center;
  justify-content: center;
  background-color: black;
  gap: 40px;
}

.sobre-section3 img {
  width: 400px;
  border-radius: 20px;
}

.sobre-section3 .text-container3 {
  max-width: 800px;
  color: white;
}
.section-title {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}
.section-title3 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-align: center;
  /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
}
.sobre-section p,
.sobre-section2 p,
.sobre-section3 p {
  font-size: 22px;
  text-align: justify;
  line-height: 1.6;
}

/*FINAL DO CSS DA PAGINA SOBRE 3*/

#contato {
  padding: 60px 5vw;
  background-color: #f9f9f9;
}
/*
.localizacao-texto {
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.localizacao-descricao {
  font-size: 20px;
  color: #555;
   max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}*/

#contato h2 {
  font-size: 56px;
  text-align: center;
  margin-bottom: 40px;
}

.contato-mapa-wrapper {
  width: 100%;
  max-width: 900px;
  height: 450px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contato-mapa-wrapper iframe {
  border: 0;
  width: 100%;
  height: 100%;
}
.contato-direcao-wrapper {
  text-align: center;
  margin-top: 20px;
}

.botao-direcao {
  display: inline-block;
  background-color: #FFD700;
  color: #002B7F;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #002B7F;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.botao-direcao:hover {
  background-color: #ffc400;
  transform: scale(1.03);
}

.info-direcao {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}
@media (min-width: 1200px) {
  .contato-mapa-wrapper {
    width: 80%;       /* ocupa 90% da largura da tela */
  max-width: 1800px; /* não passa disso em telas muito grandes */
  height: 600px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .botao-direcao:hover {
  background-color: #ffc400;
  transform: scale(1.1);
}

.info-direcao {
  font-size: 18px;
  color: #888;
  text-align: center;
  margin-top: 12px;
}
}

/*


.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;        
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col {
  flex: 1 1 200px;       
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #555;
  padding-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #1a73e8;         
}


.btn-maps {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #1a73e8;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-maps:hover {
  background: #1558b0;
}


.footer-bottom {
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.9rem;
  color: #ccc;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 20px;
  }
}*/
/* Seção Pós-Polimento */

