/* RESET BÁSICO */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff; /* Fica mais clean */
    line-height: 1.6;
  }
  
  /* CONTAINER PADRÃO */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* HEADER */
  header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }
  
  header .logo img {
    height: 50px;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  header nav ul li a:hover {
    color: #FF6600; /* Laranja principal */
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  
  .hamburger .line {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 5px;
  }
  
  /* HERO */
  .hero {
    /* Substitua a imagem de fundo caso queira */
    background: linear-gradient(
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.35)
      ),
      url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding-top: 120px; /* Para não ficar atrás do header fixo */
    padding-bottom: 100px;
    position: relative;
  }
  
  .hero-content {
    max-width: 700px; /* Limita a largura do conteúdo */
    margin: 0 auto;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }
  
  .hero h1 span {
    color: #FF6600; /* Destaque */
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
  
  /* Botão CTA do Hero */
  .btn-primary {
    display: inline-block;
    background-color: #FF6600;
    color: #fff;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
  }
  
  .btn-primary:hover {
    background-color: #e65a00;
    transform: scale(1.03);
  }
  
  /* SECTIONS GERAIS */
  .section {
    padding: 60px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
  }
  
  /* Linha de destaque abaixo do título */
  .section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FF6600;
    margin: 10px auto 0;
  }
  
  /* FUNDO CLARO */
  .bg-light {
    background-color: #f9f9f9;
  }
  
 /* Seção Quem Somos */
.about-us {
    background-color: #fff;
    padding: 60px 20px; 
    text-align: left;
  }
  
  .about-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Texto e imagem lado a lado */
    gap: 40px;
    align-items: center;
  }
  
  .section-title {
    margin-bottom: 20px; 
  }
  
  /* Texto */
  .about-us-text p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
  }
  
  /* Imagem */
  .about-us-image img {
    width: 100%;
    height: auto;
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .about-us-content {
      grid-template-columns: 1fr; /* Empilha o texto e a imagem no mobile */
      text-align: center;
    }
  
    .about-us-text p {
      text-align: justify;
    }
  }
  
  
  #quem-somos .content p {
    margin-bottom: 20px;
  }
  
  /* SEÇÃO CLIENTES */
  /* Seção dos Clientes */
.clients {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
  }
  
  .clients h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  
  /* Grade que acomoda as "cards" */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    justify-items: center;
  }
  
  /* Estilo de cada card */
  .client-card {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    max-width: 300px; /* Para não ficar muito largo */
  }
  
  .client-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Logo/imagem do cliente */
  .client-img {
    width: 80px;  /* Tamanho da imagem */
    height: auto;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;   /* Centraliza horizontalmente */
    margin-right: auto;
  }
  
  /* Título (nome do cliente) */
  .client-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  /* Texto descritivo */
  .client-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #555;
  }
  
  /* Seção de Depoimentos */
#depoimentos {
    text-align: center;
    padding: 60px 20px;
  }
  
  #depoimentos h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
  }
  
  /* Cartão de Depoimento */
  .testimonial {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
    text-align: left; 
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }
  
  /* Cabeçalho do Depoimento */
  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  /* Logo redonda */
  .testimonial-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;     /* Deixa a imagem em formato circular */
    object-fit: cover;      /* Garante que a imagem se ajuste ao espaço */
    border: 2px solid #eee; /* Bordinha sutil, se quiser */
  }
  
  /* Texto do Depoimento */
  .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
  }
  
  /* Autor do Depoimento */
  .testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
  }
  
  
  /* FOOTER */
  footer {
    background-color: #333;
    color: #fff;
    padding: 40px 20px;
    margin-top: 60px;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1); /* Logo em branco */
    max-width: 100%;
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
  }
  
  .footer-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
  }
  
  .footer-info .info-item i {
    font-size: 1.5rem;
    color: #FF6600;
  }
  
  .footer-info p {
    margin: 0;
    font-size: 0.95rem;
  }
  
  .footer-info p strong {
    font-weight: bold;
  }
  
  .footer-social {
    text-align: right;
  }
  
  .footer-social h4 {
    margin-bottom: 10px;
  }
  
  .footer-social .social-icon {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 1.3rem;
    transition: transform 0.3s, color 0.3s;
  }
  
  .footer-social .social-icon:hover {
    transform: scale(1.2);
    color: #FF6600;
  }
  
  .footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  
  .footer-bottom p {
    margin: 0;
  }
  
  /* RESPONSIVO */
  @media (max-width: 768px) {
    nav ul {
      position: absolute;
      top: 70px;
      right: 0;
      flex-direction: column;
      background-color: #fff;
      width: 200px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      transform: translateX(100%);
      transition: transform 0.3s ease-in-out;
      opacity: 0;
      visibility: hidden;
      padding: 15px 0;
      gap: 15px;
    }
  
    nav ul.open {
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
  
    nav ul li {
      text-align: center;
    }
  
    .hamburger {
      display: flex;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-info {
      align-items: center;
      text-align: center;
    }
  
    .footer-info .info-item {
      justify-content: center;
    }
  
    .footer-social {
      text-align: center;
    }
  }
  