 /*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;
  max-width: 1400px;
  margin: 0 auto;

 
}


.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;
}

/* 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*/

/*Sobre mim*/
 * {
        box-sizing: border-box;
        max-width: 100%;
         
    }

    .content-box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        padding: 60px 5vw;
        background: #f9f9f9;
        
    }

    .text-content {
        flex: 1;
        min-width: 320px;
        max-width: 600px;
  color: white;
    }

    .text-content h2 {
        font-size: 2.8em;
        margin-bottom: 20px;
        color: #111;
    }

    .text-content p {
        font-size: 1.1em;
        color: #444;
        line-height: 1.6;
    }

    .btn-saiba-mais {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 24px;
        background-color: #111;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

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

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

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

  .slide {
    display: none;
    width: 100%;
    height: 100%;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /*.overlay-text {
    position: absolute;
    top: 10%;
    left: 50%;
    color: white;
    max-width: 400px;
    z-index: 10;
    text-shadow: 0 0 10px rgba(0,0,0,0.8);
  }*/
  .overlay-text {
  position: absolute;
  top: 10%;
  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.5em;
    margin-bottom: 10px;
  }

  .overlay-text p {
    font-size: 1.2em;
    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;
  }

  /* Fade animation */
  .fade {
    animation-name: fadeEffect;
    animation-duration: 1.5s;
  }

  @keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
  }

/*Sobre mim*/


/* ==========================
   RESET GLOBAL
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden; /* Evita overflow horizontal */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #fff;
 
}

/* ==========================
   PERFIL SOBRE
========================== */
.perfil-sobre {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 5vw;
  background: #f9f9f9;
}

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

.perfil-conteudo h2 {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #111;
}

.perfil-conteudo p {
  font-size: 1.1em;
  color: #444;
  line-height: 1.6;
}

.perfil-btn-saiba-mais {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #111;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.perfil-btn-saiba-mais:hover {
  background-color: #ffc107;
  color: #000;
}

.perfil-slideshow-container {
  flex: 1;
  min-width: 300px;
  max-width: 800px;
  height: 450px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.perfil-slide {
  display: none;
  width: 100%;
  height: 100%;
}

.perfil-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.perfil-fade {
  animation: perfilFadeEffect 1s ease-in-out;
}

@keyframes perfilFadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVIDADE PERFIL SOBRE */
@media (max-width: 768px) {
  .perfil-sobre {
    flex-direction: column;
    text-align: center;
  }

  .perfil-slideshow-container {
    order: 1;
    max-width: 100%;
    height: 350px;
  }

  .perfil-conteudo {
    order: 2;
  }
}

/* ==========================
   PARTE AMARELA
========================== */
.parte-amarela {
  background-color: #FFD700;
  padding: 4vw 2vw;
  text-align: center;
}

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

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

.parte-amarela li {
  margin: 0;
}

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

.parte-amarela a:hover, .parte-amarela c:hover {
  color: #333;
  transform: scale(1.05);
}

.btn-amarela-saiba-mais {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-amarela-saiba-mais:hover {
  background-color: #FFC107;
  color: #000;
}

/* Responsividade Parte Amarela - Telas muito grandes */
@media (min-width: 2560px) {
  .parte-amarela {
    padding: 80px 100px;
  }

  .parte-amarela ul {
    gap: 40px;
  }
}

/* Responsividade Parte Amarela - Tablets e Celulares */
@media (max-width: 768px) {
  .parte-amarela ul {
    gap: 20px;
  }

  .parte-amarela {
    padding: 30px 20px;
  }
}

/* ==========================
   CTA SECTION
========================== */
.cta-section {
  background: linear-gradient(to right, #000, #333);
  padding: 60px 5vw;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

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

.cta-section p {
  font-size: 1.1em;
  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 CTA - telas imensas */
@media screen and (min-width: 1600px) {
  .cta-section {
    padding: 60px 10vw;
  }

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

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

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

/* Responsividade CTA - telas médias (tablet) */
@media screen and (max-width: 1024px) {
  .cta-section {
    padding: 50px 8vw;
  }

  .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 CTA - telas pequenas (celulares) */
@media screen and (max-width: 768px) {
  .cta-section {
    padding: 40px 5vw;
  }

  .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 agendamento - escondido por padrão */
#formulario-agendamento {
  display: none;
  margin-top: 20px;
}

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;
}

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;
}

/* ==========================
   VIDEO EXPLICATIVO / VIDEO SEÇÃO
========================== */
.video-explicativo, .video-secao {
  text-align: center;
  padding: 5vw 3vw;
  background-color: #121212;
  color: #f0f0f0;
}

.video-explicativo h2, .video-secao h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 2.5vw;
  color: #FFD700;
}

.video-container {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border-radius: 8px;
}

/* ==========================
   SEÇÃO SERVIÇOS
========================== */
.btn-container1 {
  text-align: right;
  margin-top: 15px;
}

.btn-amarela-saiba-mais {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #FFD700;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-amarela-saiba-mais:hover {
  background-color: #FFC107;
  color: #000;
}

.imagem-pequena {
  width: 80vw;
  height: auto;
}

@media (max-width: 768px) {
  .imagem-pequena {
    width: 80vw;
  }
}

.secao-ilustracoes {
  background-color: #121212;
   /*background-color: #FFD700;*/
  color: #f0f0f0;
  padding: 5vw 3vw;
  text-align: center;
}

.secao-ilustracoes h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 3rem;
  color: #fff;
}

.secao-ilustracoes p {
  color: #ddd;
  margin-bottom: 3rem;
   font-size: clamp(20px, 4vw, 24px);
}

.grid-ilustracoes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.ilustracao-card {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  max-width: 100%;
}

.ilustracao-card:hover {
  transform: translateY(-5px);
}

.ilustracao-card img {
  max-width: 80px;
  margin-bottom: 1rem;
}

.ilustracao-card h3 {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
}

.ilustracao-card p {
  font-size: 0.95rem;
  color: #fff;
}
.ilustracao-btn-saiba-mais {
  display: inline-block;
  /*margin-top: 20px;*/
  padding: 12px 24px;
  background-color: #FFC107;
  color: black;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.ilustracao-btn-saiba-mais:hover {
  background-color: #FFD700;
  color: #000;
}

/* Responsividade cartões ilustrativos */
@media (max-width: 768px) {
  .ilustracao-card {
    padding: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
}

@media (max-width: 480px) {
  .ilustracao-card {
    padding: 0.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
  }
}

/* ==========================
   FAQ SECTION
========================== */
.faq-section {
 /* background: linear-gradient(135deg, #fefefe, #f4f4f4);*/
  padding: 40px 5vw;
  margin: 0 auto;
  color: #333;
  max-width: 900px;
}

.faq-section h2, .faq-section h1 {
  font-size: 42px;
  color: black;
  text-align: center;
  margin-bottom: 16px;
}

.secao-subtitulo {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.faq-container {
  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);
}

/* Responsividade FAQ */
@media (max-width: 768px) {
  .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) {
  .faq-section {
    padding: 50px 40px;
  }
}

/* ==========================
   FOOTER
========================== */
footer {
  background-color: #333;
  color: white;
  padding: 40px 20px;
  font-size: 24px; /* Base maior para todo o footer */
  text-align: center;
}

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

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

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

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

footer a:hover {
  color: #FFC105;
}

footer p {
  font-size: 24px;
  color: white;
  margin: 5px 0;
}

/* Responsividade Footer */
@media (max-width: 768px) {
  footer {
    font-size: 18px;
    padding: 30px 10px;
  }

  footer ul {
    gap: 15px;
  }

  footer a {
    font-size: 18px;
  }
}


/*Estilo das paginas */

  .imagem-quem-somos {
  width: 35%;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
    
  }
  .laudos-escuro {
    padding: 5vw 3vw;
    background-color: #121212;
    color: #f0f0f0;
    text-align: center;
  }

  .laudos-escuro h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 2.5vw;
    color: #ffffff;
  }

  .laudos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .laudo-card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .laudo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.05);
  }

  .laudo-card h3 {
    font-size: 20px;
    margin-bottom: 0.6rem;
    color: #FFD700;
  }

  .laudo-card p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.6;
  }

  @media (max-width: 600px) {
    .laudo-card {
      padding: 1.5rem;
    }
  }
  /*Estilo das paginas*/

  /*Whatsapp*/
  .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;
}/*Whtsapp*/

/*pagina responsabilidade tecnica*/
.highlight-title {
    background-color: #FFEB3B;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin: 30px auto;
    max-width: 2000px;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.description,
.benefits-title,
.form-title,
.info-title {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
}

.features,
.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.feature-item,
.benefit-item {
    flex: 1;
    min-width: 250px;
    margin: 10px;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    text-align: center;
}

.feature-item i,
.benefit-item i {
    font-size: 2em;
    color: #4CAF50;
    margin-bottom: 10px;
}/*Responsabilidade tecnica*/



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

.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;*/
}


.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;
}

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

/*pagina sobre*/
.quem-somos-section {
    background: white;
    color: black;
    padding: 40px 20px;
    max-width: 100%;
    width: 100vw;
    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;
    }/*pagina sobre*/

/*Diferenciais*/
.diferenciais {
 /* background-color: #121212;*/
  background-color: white;
  color: black;
  padding: 5vw 3vw;
  text-align: center;
}

.diferenciais h2 {
  font-size: clamp(28px, 4vw, 40px);
  /*color: #FFD700;*/
   color: black;
  margin-bottom: 2rem;
}

.lista-diferenciais {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.lista-diferenciais li {
  font-size: 2.1rem;
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  /*color: #fff;*/
    color: black;
}

.lista-diferenciais li::before {
  content: "✅";
  position: absolute;
  left: 0;
  color: #00ff88;
  font-size: 1.2rem;
}/*diferenciais*/

.depoimentos {
  background-color: white;
  color: #f0f0f0;
  padding: 5vw 3vw;
  text-align: center;
}

.depoimentos h2 {
  font-size: clamp(28px, 4vw, 40px);
  color: #FFD700;
  margin-bottom: 2.5rem;
}

.depoimento-card {
  background-color: #121212;
  border-radius: 12px;
  padding: 2rem;
  margin: 0 auto 2rem auto;
  max-width: 700px;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
}

.depoimento-card p {
  font-size: 1.5rem;
  color: #eee;
  font-style: italic;
  margin-bottom: 1rem;
}

.depoimento-card span {
  display: block;
  text-align: right;
  font-weight: bold;
  color: #FFD700;
  font-size: 1.1rem;
}


/*sewção depoimentos*/