/* ===== VARIÁVEIS GLOBAIS ===== */
:root {
  --amarelo-principal: #ffc801;
  --azul-letra: #3977d8;
  --branco: #fff;
  --preto: #000;
}

/* ===== RESET GERAL ===== */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ===== HEADER FIXO ===== */
header {
  background-color: var(--preto);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ===== CONTAINER DO HEADER ===== */
.container_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}

/* ===== LOGO ===== */
.logo {
  height: 80px;
  padding-left: 3rem;
}

/* ===== LINKS DESKTOP ===== */
.nav_links {
  display: flex;
  gap: 2rem;
  margin-right: 3rem;
}

.nav_links a {
  text-decoration: none;
  color: var(--branco);
  font-weight: 500;
  font-size: 20px;
}

/* ===== MENU TOGGLE (BOTÃO HAMBÚRGUER) ===== */
.menu_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 30px;
  height: 25px;
  justify-content: space-between;
}

.menu_toggle span {
  height: 3px;
  width: 100%;
  background: var(--preto);
  transition: all 0.3s ease;
}

/* ===== ANIMAÇÃO DE X NO TOGGLE ATIVO ===== */
.menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu_toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* !!!! =============== BANNER INICIO =================== */
/* !!!! ================================================== */
.container_bannerinicio {
  width: 100vw;
  background-image: url(./assets/banner_inicio.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.box_inicio {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box_inicio h1 {
  padding: 1rem 30vw;
  text-align: center;
  font-size: 30px;
  color: var(--branco);
}
.box_inicio a {
  text-decoration: none;
  color: var(--preto);
  background-color: var(--amarelo-principal);
  padding: 1.5rem 3rem;
  font-size: 24px;
  border-radius: 16px;
}

/* !!!========================== CONTAINER SOBRE NOS ========================== */
/* !!!=========================================================================== */
.container_sobrenos {
  margin-top: 3rem;
  display: flex;
  background-image: url(./assets/banner_quemsomos.png);
  background-size: cover;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}
.sobrenos_col1 {
  width: 40vw;
}
.sobrenos_col1 img {
  width: 30vw;
}
.sobrenos_col2 {
  display: flex;
  flex-direction: column;
  width: 40vw;
}
.sobrenos_title {
  color: var(--branco);
  font-size: 32px;
}
.sobrenos_text {
  color: var(--branco);
  font-size: 24px;
  text-align: justify;
}
.sobrenos_col2 a {
  font-size: 26px;
  font-weight: bold;
}
/* !!!========================== CONTAINER DIFERENCIAL ========================== */
/* !!!=========================================================================== */
.container_diferencial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: var(--preto);
  color: var(--branco);
  padding: 2rem 0;
}
.diferencial_titulo {
  font-size: 30px;
  text-align: center;
  font-weight: bold;
}
.diferencial_subtitulo {
  font-size: 22px;
  font-weight: lighter;
}
.diferencial_box {
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  align-items: end;
}
.diferencial_box_col1 {
  display: flex;
  flex-direction: column;
}
.diferencial_box_col1 img {
  width: 25vw;
}
.diferencial_box_col2 {
  display: flex;
  flex-direction: column;
}
.col2_linha {
  display: flex;
  align-items: center;
  column-gap: 1rem;
  width: 30vw;
}
.col2_linha img {
  height: 60px;
}
.linha_text_title {
  font-size: 18x;
  font-weight: bolder;
}
.linha_text_subtitle {
  font-size: 14px;
}
.btn_diferencial_contato {
  text-decoration: none;
  background-color: var(--amarelo-principal);
  text-align: center;
  padding: 1rem 0;
  color: var(--preto);
}

/* !!!========================== CONTAINER SERVIÇOS CARD ========================== */
/* !!!=========================================================================== */
.container_servicos {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  background-color: #7a7a73;
  padding: 2rem 0;
}
.servicos_chamada {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.servicos_chamada_titulo {
  color: var(--amarelo-principal);
  font-size: 32px;
  font-weight: bold;
}
.servicos_chamada_subtitulo {
  color: var(--branco);
  font-size: 22px;
  width: 70vw;
}
.box_cards {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  justify-content: center;
  row-gap: 2rem;
}
.card_individual {
  display: flex;
  flex-direction: column;
  justify-content: baseline;
}
.card_col1 img {
  width: 30vw;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.card_col2 {
  display: flex;
  flex-direction: column;
  background-color: var(--branco);
  width: 30vw;
  margin-top: -1rem;
  align-items: center;
}
.card_titulo {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  padding-top: 1rem;
}
.card_titulo img {
  width: 30px;
}
.card_titulo p {
  font-size: 20px;
  color: var(--azul-letra);
  font-weight: bold;
}
.card_texto {
  font-size: 16px;
  padding: 0 2rem;
  height: 150px;
  text-align: center;
}
.btn_card_contato {
  background-color: var(--amarelo-principal);
  padding: 1rem 3rem;
  text-decoration: none;
  color: var(--preto);
  font-size: 18px;
  margin-bottom: -1rem;
}

/* !!! =========================== CONTAINER EXEMPLOS IMAGENS =========== */
/* !!! ================================================================== */
.container_exemplos {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
}
.exemplos_title {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: bold;
}
.exemplos_subtitle {
  font-size: 24px;
}
.exemplos_imagens {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
}
.exemplos_imagens img {
  width: 20vw;
}
.btn_exemplos_contato {
  text-decoration: none;
  background-color: var(--amarelo-principal);
  color: var(--preto);
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 24px;
}
/* !!!! ============================ CONTAINER AVALIACOES ============ */
/* !!! ============================================================ */
/* ==================== REVIEWS WIDGET ==================== */
.container_avaliacoes {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.container_avaliacoes p {
  width: 40vw;
  font-size: 20px;
}
.container_avaliacoes a{
  text-decoration: none;
  background-color: var(--amarelo-principal);
  color: var(--preto);
  padding: 1rem 2rem;
  font-size: 22px;
}
#tt-review-widget-one {
  max-width: 700px;
  margin: 3rem auto;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#tt-review-widget-one > img {
  display: block;
  max-width: 160px;
  margin: 0 auto 15px;
}

#tt-dynamic {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}


.tt-left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.tt-right {
  flex: 1;
}

.tt-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.tt-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tt-stars img {
  width: 20px;
  height: 20px;
}

.tt-stars span {
  font-size: 0.9rem;
  color: #777;
}

#tt-review-widget-one p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
  color: #333;
}

#tt-review-widget-one a {
  display: inline-block;
  margin-top: 10px;
  color: #ff6a00;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

#tt-review-widget-one a:hover {
  color: #cc5200;
}




/* !!! =========================== FORMULÁRIO ========================== */
/* !!! ================================================================= */
.container_formulario {
  max-width: 650px;
  margin: 2rem auto;
  padding: 3.5rem;
  background: rgba(0, 0, 0, 0.85);
  border-radius: 10px;
}

.container_formulario h2 {
  color: #f9c80e;
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.container_formulario p {
  text-align: center;
  font-size: 15px;
  margin-bottom: 25px;
  color: var(--branco);
}

.container_formulario label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: var(--branco);
}

.container_formulario input,
.container_formulario textarea {
  width: 100%;              /* 🔹 ocupa toda a largura disponível */
  max-width: 100%;          /* 🔹 impede de ultrapassar */
  padding: 12px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  background: #f9f9f9;
  font-size: 14px;
}

.container_formulario textarea {
  resize: none;
  height: 120px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background-color: #f9c80e;
  border: none;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background-color: #e0b70d;
}

/* 🔹 Ajustes responsivos */
@media (max-width: 768px) {
  .container_formulario {
    padding: 1rem;
  }

  .container_formulario h2 {
    font-size: 22px;
  }

  .container_formulario p {
    font-size: 14px;
  }

  .btn-submit {
    font-size: 15px;
    padding: 12px;
  }
}


/* !!! =========================== FOOTER ========================== */
/* !!! ================================================================= */

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

.footer a {
  color: #ccc;
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 100%;
  margin: 0 auto;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.footer-column p,
.footer .addr {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

.footer .addr {
  font-style: normal;
}

.footer-logo {
  margin-top: 18px;
  max-width: 160px;
  height: auto;
}

/* --- Mapa responsivo --- */
.map-embed {
  margin-top: 12px;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Social icons */
.socials {
  display: flex;
  gap: 12px;
  margin: 10px 0;
}
.socials a {
  font-size: 22px;
  color: #f5c518; /* amarelo */
  transition: 0.3s;
}
.socials a:hover {
  color: #fff;
}

.reviews {
  margin-top: 8px;
  color: #f5c518;
  font-size: 14px;
}






/* ===== MOBILE (ATÉ 768px) ===== */
@media (max-width: 768px) {
  /* Redefine corpo pra evitar scroll lateral */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Header com altura fixa e padding */
  .container_header {
    height: 80px;
    padding: 0 1rem;
  }
  /* ===== LOGO ===== */
  .logo {
    height: 50px;
    padding-left: 3rem;
  }
  nav {
    position: relative;
  }

  /* MENU MOBILE DROPDOWN */
  .nav_links {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #807e7e;
    position: fixed;
    top: 80px;
    left: 0;
    margin: 0;
    width: 100vw;
    padding: 1rem 0;
    gap: 1rem;
    z-index: 999;
  }

  /* Quando toggle ativado, mostra o menu */
  .nav_links.active {
    display: flex;
  }

  .nav_links a {
    color: var(--branco);
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.8rem;
    width: 100%;
    text-align: center;
    background-color: transparent;
    transition: background 0.2s;
  }

  .nav_links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  /* Ativa o botão hamburguer no mobile */
  .menu_toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
  }

  .menu_toggle span {
    height: 3px;
    width: 100%;
    background: var(--branco);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .menu_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  .menu_toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  /* !!!! =============== BANNER INICIO =================== */
  /* !!!! ================================================== */
  .container_bannerinicio {
    width: 100vw;
    background-image: url(./assets/banner_inicio.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .box_inicio {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .box_inicio h1 {
    padding: 1rem 20vw;
    text-align: center;
    font-size: 22px;
    color: var(--branco);
  }
  .box_inicio a {
    text-decoration: none;
    color: var(--preto);
    background-color: var(--amarelo-principal);
    padding: 1rem 2rem;
    font-size: 18px;
    border-radius: 16px;
  }

  /* !!!========================== CONTAINER DIFERENCIAL ========================== */
  /* !!!=========================================================================== */
  .container_diferencial {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: var(--preto);
    color: var(--branco);
    padding: 2rem 0;
  }
  .diferencial_titulo {
    font-size: 22px;
    text-align: center;
    font-weight: bold;
    text-align: center;
    padding: 0 2rem;
  }
  .diferencial_subtitulo {
    font-size: 18px;
    font-weight: lighter;
    padding: 0 2rem;
    text-align: center;
  }
  .diferencial_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    column-gap: 2rem;
    align-items: end;
  }
  .diferencial_box_col1 {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    
  }
  .diferencial_box_col1 img {
    width: 40vw;
  }
  .diferencial_box_col2 {
    display: flex;
    flex-direction: column;
  }
  .col2_linha {
    display: flex;
    align-items: center;
    column-gap: 1rem;
    width: 80vw;
  }
  .col2_linha img {
    height: 30px;
  }
  .linha_text_title {
    font-size: 16x;
    font-weight: bolder;
  }
  .linha_text_subtitle {
    font-size: 12px;
  }
  .btn_diferencial_contato {
    text-decoration: none;
    background-color: var(--amarelo-principal);
    text-align: center;
    padding: 1rem 0;
    color: var(--preto);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 1rem;
  }
  /* !!!========================== CONTAINER SOBRE NOS ========================== */
  /* !!!=========================================================================== */
  .container_sobrenos {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    background-image: url(./assets/banner_quemsomos.png);
    background-size: cover;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
  }
  .sobrenos_col1 {
    width: 30vw;
  }
  .sobrenos_col1 img {
    width: 30vw;
  }
  .sobrenos_col2 {
    display: flex;
    flex-direction: column;
    width: 80vw;
  }
  .sobrenos_title {
    color: var(--branco);
    font-size: 26px;
    text-align: center;
  }
  .sobrenos_text {
    color: var(--branco);
    font-size: 20px;
    text-align: justify;
  }
  .sobrenos_col2 a {
    font-size: 22px;
    font-weight: bold;
  }
  /* !!!========================== CONTAINER SERVIÇOS CARD ========================== */
  /* !!!=========================================================================== */
  .container_servicos {
    display: flex;
    flex-direction: column;
    width: 100vw;
    align-items: center;
    background-color: #7a7a73;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
  .servicos_chamada {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .servicos_chamada_titulo {
    color: var(--amarelo-principal);
    font-size: 30px;
    font-weight: bold;
  }
  .servicos_chamada_subtitulo {
    color: var(--branco);
    font-size: 18px;
    width: 90vw;
  }
  .box_cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2rem;
    justify-content: center;
    row-gap: 2rem;
  }
  .card_individual {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: center;
  }
  .card_col1 img {
    width: 80vw;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .card_col2 {
    display: flex;
    flex-direction: column;
    background-color: var(--branco);
    width: 80vw;
    margin-top: -1rem;
    align-items: center;
    
  }
  .card_titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 1rem;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .card_titulo img {
    width: 25px;
    
  }
  .card_titulo p {
    font-size: 18px;
    color: var(--azul-letra);
    font-weight: bold;
    text-align: center;
    
  }
  .card_texto {
    font-size: 16px;
    padding-bottom: 2rem;
    height: 160px;
    text-align: center;
  }
  .btn_card_contato {
    background-color: var(--amarelo-principal);
    padding: 1rem 3rem;
    text-decoration: none;
    color: var(--preto);
    font-size: 18px;
    margin-bottom: -1rem;
  }


  /* !!! =========================== CONTAINER EXEMPLOS IMAGENS =========== */
/* !!! ================================================================== */
.container_exemplos {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  justify-content: center;
}
.exemplos_title {
  font-size: 26px;
  text-transform: uppercase;
  font-weight: bold;
}
.exemplos_subtitle {
  font-size: 20px;
  width: 50vw;
  text-align: center;
}
.exemplos_imagens {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10vw;
  flex-wrap: wrap;
  row-gap: 2rem;
}
.exemplos_imagens img {
  width: 30vw;
}
.btn_exemplos_contato {
  text-decoration: none;
  background-color: var(--amarelo-principal);
  color: var(--preto);
  margin-top: 2rem;
  padding: 1rem 2rem;
  font-size: 24px;
}
  /* !!!! ============================ CONTAINER AVALIACOES ============ */
/* !!! ============================================================ */
/* ==================== REVIEWS WIDGET ==================== */
.container_avaliacoes {
  display: flex;
  flex-direction: column;
  align-items: center;

}
.container_avaliacoes p {
  width: 60vw;
  font-size: 20px;
}
.container_avaliacoes a{
  text-decoration: none;
  background-color: var(--amarelo-principal);
  color: var(--preto);
  padding: 1rem 2rem;
  font-size: 22px;
}
#tt-review-widget-one {
  max-width: 700px;
  margin: 3rem auto;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
  font-family: Arial, sans-serif;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

#tt-review-widget-one > img {
  display: block;
  max-width: 160px;
  margin: 0 auto 15px;
}

#tt-dynamic {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}


.tt-left img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.tt-right {
  flex: 1;
}

.tt-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.tt-stars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.tt-stars img {
  width: 20px;
  height: 20px;
}

.tt-stars span {
  font-size: 0.9rem;
  color: #777;
}

#tt-review-widget-one p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 10px 0;
  color: #333;
}

#tt-review-widget-one a {
  display: inline-block;
  margin-top: 10px;
  color: #ff6a00;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s;
}

#tt-review-widget-one a:hover {
  color: #cc5200;
}
  /* !!!========================== FORMULARIO           ========================== */
  /* !!!=========================================================================== */
   .container_formulario {
  max-width: 80vw;
 
}
.container_formulario input,
.container_formulario textarea {
  width: 100%;              /* 🔹 ocupa toda a largura disponível */
  max-width: 90%;          /* 🔹 impede de ultrapassar */
  
}
  .container_formulario {
    padding: 1rem;
  }

  .container_formulario h2 {
    font-size: 22px;
  }

  .container_formulario p {
    font-size: 14px;
  }

  .btn-submit {
    font-size: 15px;
    padding: 12px;
  }
  /* !!!========================== FOOTER ========================== */
  /* !!!=========================================================================== */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .socials {
    justify-content: center;
  }
}
