@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
/* Estilização da barra de rolagem para navegadores baseados em Webkit (Chrome, Edge, Opera, Safari) */
/* Scrollbar Webkit - transparente e discreta */
::-webkit-scrollbar {
    width: 8px;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3); /* cor verde do Whats com transparência */
    border-radius: 10px;
    transition: background 0.3s ease;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.6);
  }
  
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
  }
  
/* Top Bar */
.top-bar {
    background-color: rgb(255, 102, 0);
    padding: 10px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 14px;
    flex-direction: row;
  }
  
  .social-icons a {
    color: rgb(255, 255, 255);
    margin-right: 10px;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
  }
  
  .social-icons a:hover {
    color: #ffffff;
  }
  
  .top-text {
    color: #ffffff;
  }
  
  /* Header principal */
  .main-header {
    background-color: rgb(12, 40, 97);
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.219);
  }
  
  .header-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(12, 40, 97);
  }
  
  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Navegação */
  .nav-menu {
    display: flex;
    gap: 25px;
  }
  
  .nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-menu a:hover {
    color: rgb(255, 102, 0);
  }
  
  /* Botão Login */
  .btn-login {
    background-color: rgb(0, 182, 24);
    color: #ffffff;
    border: none;
    padding: 8px 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn-login:hover {
    background-color: rgb(0, 116, 15);
  }
  
  /* ------------------ RESPONSIVO (Hamburger Menu) ------------------ */
  
/* Hambúrguer padrão */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
  }
  
  .hamburger span {
    height: 3px;
    background: #ffffff;
    border-radius: 5px;
    width: 100%;
    transition: all 0.3s ease;
  }
  
  
/* Animação para "X" */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Estilo mobile */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }
  
    .nav-menu {
      position: absolute;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: rgb(12, 40, 97);
      flex-direction: column;
      align-items: center;
      gap: 20px;
      padding: 20px 0;
      display: none;
      z-index: 1000;
    }
  
    .nav-menu.show {
      display: flex;
    }
  
    .header-buttons {
      display: none;
    }
  }
  
  /* ----------------------------------------------------- */

  /* Banner */
.hero-section {
  background-image: url('images/56\ -\ Copia.jpg'); /* substitua pelo caminho da imagem */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
}

.whatsapp-btn-h {
  display: inline-flex;
  align-items: center;
  background-color: #05a105;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-text .sub {
  margin-top: 10px;
  font-size: 14px;
  color: #ccc;
}

.hero-image {
  flex: 1;
  text-align: right;
  min-width: 300px;
  margin-top: 20px;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

  
  /* Animation: common styles */
  .animate-left,
  .animate-right {
    opacity: 0;
    transition: all 0.8s ease-in-out;
  }
  
  .animate-left {
    transform: translateX(-200%);
  }
  
  .animate-right {
    transform: translateX(200%);
  }
  
  .animate-left.show,
  .animate-right.show {
    transform: translateX(0);
    opacity: 1;
  }
  /* ----------------------------------------------------- */

  .about-section {
    padding: 60px 20px;
    background: #fff;
  }
  
  .about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: auto;
  }
  
  .about-text {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease forwards;
    text-align: left;
  }
  
  .about-text .tag {
    background: rgb(255, 102, 0);
    color: #fff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 10px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    margin: 10px 0;
  }
  
  .about-text p {
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .whatsapp-btn {
    background: rgb(12, 40, 97);
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
  }
  
  .whatsapp-btn:hover {
    background: rgb(7, 25, 59);
  }
  
  .about-images {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    animation: fadeInRight 1s ease forwards;
  }
  
  .main-img {
    position: relative;
  }
  
  .main-img img {
    width: 100%;
    border-radius: 30px;
  }
  
  .overlay-card.top-card {
    position: absolute;
    top: 0;
    right: 0;
    background: rgb(12, 40, 97);
    color: #fff;
    padding: 20px;
    max-width: 60%;
  }
  
  .small-imgs {
    display: flex;
    gap: 10px;
    flex-direction: row;
  }
  
  .small-box {
    position: relative;
    flex: 1;
  }
  
  .small-box img {
    width: 100%;
  }
  
  .small-box .overlay-card {
    position: absolute;
    bottom: 0;
    background: rgb(255, 102, 0);
    color: #fff;
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
  }
   /* ----------------------------------------------------- */


  .servicos-section {
    background-image: url('images/56.webp'); /* substitua pelo caminho da imagem */
    background-size: cover;
    background-position: center;
    color: white;
  }
  
  .overlay {
    background-color: rgba(38, 58, 146, 0.774);
    padding: 80px 20px;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .tag {
    background: white;
    color: #263a92;
    font-weight: bold;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .title {
    font-size: 36px;
    font-weight: bold;
    margin: 0 0 10px;
  }
  
  .subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
  }
  
  .servicos-lista {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .servicos-lista li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
  }
  
  .check {
    color: #fff;
    background: rgb(255, 102, 0);
    border-radius: 50%;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    margin-right: 12px;
    font-weight: bold;
  }
  /* ----------------------------------------------------- */

  .servicos-grid {
    padding: 80px 20px;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
  }
  
  .topo-servicos {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  
  .tag {
    color: #263a92;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .titulo {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .descricao {
    max-width: 400px;
    font-size: 16px;
    color: #555;
  }
  
  .cards-servicos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
  }
  
  .card {
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33% - 20px);
    display: flex;
    flex-direction: column;
  }
  
  .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .card .conteudo {
    padding: 20px;
  }
  
  .card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .botao {
    background-color: rgb(12, 40, 97);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    width: 100%;
    justify-content: center;
  }
  
  .botao:hover {
    background-color: #1da851;
  }
  
  .botao i {
    font-size: 16px;
  }
/* ----------------------------------------------------- */

  .duvidas-section {
    padding: 20px;

  }
  
  .duvidas-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
  }
  
  .duvidas-form, .duvidas-mapa {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 30px;
  }
  
  .duvidas-form h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #111;
  }
  
  .duvidas-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .duvidas-form input,
  .duvidas-form textarea {
    padding: 12px 15px;
    border: 1px solid #ccc;
    font-size: 14px;
  }
  
  .duvidas-form textarea {
    resize: vertical;
  }
  
  .duvidas-form button {
    background-color: rgb(255, 102, 0);
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .duvidas-form button:hover {
    background-color: rgb(224, 90, 0);
  }
  
  .duvidas-mapa {
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
  }
  /* ----------------------------------------------------- */

  .orcamento {
    background-color: rgb(12, 40, 97);
    padding: 40px 20px;
    text-align: center;
  }
  
  .orcamento-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .orcamento-texto h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: rgb(255, 102, 0);
  }
  
  .orcamento-texto p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
  }
  
  .btn-whatsapp {
    display: inline-block;
    background-color: rgb(0, 182, 24);
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .btn-whatsapp:hover {
    background-color: #1ebe5d;
  }

/* ----------------------------------------------------- */


/* ----------------------------------------------------- */

  .footer {
    background-color: #111827;
    color: #ffffff;
    padding: 40px 20px;
    font-size: 16px;
  }
  
  .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-container img{
    width: 80%;
    height: auto;
  }
  
  .footer-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: rgb(255, 102, 0);
  }
  
  .footer-contato h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: rgb(255, 102, 0);
  }
  
  .footer p {
    margin: 4px 0;
    line-height: 1.6;
    color: #ccc;
  }

  .footer-credito {
    background-color: #0e111a;
    color: #aaa;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
    border-top: 1px solid #222;
  }
  
  .footer-credito a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-weight: bold;
  }
  
  .footer-credito a:hover {
    text-decoration: underline;
  }
  
  
  
  @media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
    }
    
    .banner-overlay {
        height: auto;
        flex-direction: column;
    }
    
    .animate-left.show, .animate-right.show {
        width: 100%;
        text-align: center;
    }
    .banner-text h1 {
        font-size: 25px;
        text-align: center;
    }
    .banner-text h4 {
        text-align: center;
    }
    
    .about-text p {
        margin-bottom: 20px;
        line-height: 1.6;
        text-align: justify;
    }
    
    .about-text {
        text-align: center;
    }
    .title {
        font-size: 24px;
    }
    .small-imgs {
        flex-direction: column;
    }
    .overlay {
        text-align: center;
    }
    
    .topo-servicos {
        text-align: center;
    }
    .cards-servicos {
        flex-direction: column;
    }
    
    .footer-container {
    flex-direction: column;
      justify-content: space-between;
      align-items: flex-start;
    }

    .hero-text h1 {
    font-size: 33px;
}

.hero-text p {
    font-size: 16px;
}

.hero-text{
text-align: center;
}
    
  }
  
  