@import url('https://fonts.cdnfonts.com/css/sf-pro-display');

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }
  body{
    width: 100%;
    background-color: #111111;
  }
  .main-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    
  }

  .btn-client-area{
    background: #005f53;
    padding: 8px 15px;
    border-radius: 8px;
  }

  .title{
    color: #98C4BB;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
    font-family: 'SF Pro Display', sans-serif;
  }

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 30px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

  body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    height: 100%;
  }
  
  header {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 20px 26px;
    z-index: 10;
  }
  
  .navbar {
    background: rgb(0 0 0 / 11%);
    backdrop-filter: blur(3px);
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
  }
  
  .logo {
    height: 30px;
  }
  .logo-footer{
    width:30%;
    margin-left: 20px;
    float: right;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 50px;
    overflow: hidden;
  }
  
  #hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'SF Pro Display', sans-serif;
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    font-weight: 300;
    
  }
  
  .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
  }
  
  .hero-content p {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #cfcfcf;
    font-family: 'Sora';
  }
  
  .cta-button {
    background-color: #003B31;
    color: #ffffff;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
    width: fit-content;
    font-family: 'Sora';
    
  }
  
  .cta-button:hover {
    background-color: #005f53;
  }

  /* segunda sessao */

  .clientes {
    background-color: #111111;
    padding: 60px 0;
    text-align: center;
    overflow: hidden;
  }
  
  .clientes-header .subtitulo {
    color: #98C4BB;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }
  
  .clientes-header h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: "Sora", sans-serif;
  }
  
  .carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .carousel-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
  }

  .carousel-track img {
    
        width: 198px;
        height: 70PX;
    filter: brightness(0) invert(1);
    transition: transform 0.3s;
  }
  
  .carousel-track img:hover {
    transform: scale(1.05);
    opacity: 1;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(20%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* terceira sessao */

  .servicos {
    background-color: #111111;
    padding: 60px 20px;
    color: #fff;
    
  }
  
  .servicos-header {
    text-align: left;
    max-width: 1200px;
    margin: 0 auto 40px;
  }

  .card5 {
    grid-column: span 2;
  }
  
  .servicos-header .subtitulo {
    color: #98C4BB;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
  }
  
  .servicos-header h2 {
    font-size: 2rem;
    letter-spacing: 1.5px;
    line-height: 15px;
    font-weight: bold;
    font-family: "Sora", sans-serif;
  }
  
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-column: 3;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 10px !important;
  }
  .servicos-grid1 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-column: 2;
    margin-right: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .servicos-grid2{
    margin-top: 10px !important;
  }
  
  .servico-card {
    background-color: #1c1c1c;
    border-radius: 12px;
    padding: 20px 40px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-right: 10px;
    min-height: 35vh;
    font-family: "Sora", sans-serif !important;
  }

  .servico-card:hover{
    background: rgba(227, 227, 227, 0.08);
    border: 1px solid rgba(227, 227, 227, 0.08);
  }
  
  .servico-card span.material-icons {
    font-size: 28px;
    color: #f7faf9;
  }
  
  .servico-citacao {
    background-color: #003b3b;
    color: #fff;
    text-align: center;
    padding: 60px 20px !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('/img/elements/card.png');
    background-size: 100% 100%;
    margin-right: 10px;
    font-family: "Sora", sans-serif !important;
}
  
  .servico-citacao blockquote {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 12px 0;
    font-family: "Sora", sans-serif !important;
  }
  
  .servico-citacao cite {
    font-size: 12px;
    color: #e0e0e0;
    text-align: center;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-areas:
      "card1 card2 card3"
      "card4 card5 card6"
      "card7 card8 .";
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .card1 { grid-area: card1; }
  .card2 { grid-area: card2; }
  .card3 { grid-area: card3; }

  /* quarta sessao */

  .equipe {
    text-align: center;
    padding: 60px 20px;
    background-color: #0f0f0f;
    color: #fff;
  }
  
  .subtitulo {
    color: #98C4BB;
    font-size: 1.3rem;
    font-weight:400;
  }
  
  .titulo {
    font-size: 2rem;
    line-height: 25px;
    margin-bottom: 40px;
    font-weight:900;
    font-family: 'Sora';
  }
  
  .cards-equipe {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .card-membro {
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: fit-content;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: left;
    transition: 1s;
  }
  .membros-container{
    display: flex;
    gap: 10px;
  }
  .card-membro-descricao{
    padding: 15px;
  }
  .card-membro-descricao > h3{
    font-size: 1.5rem;
    font-family: "Sora", sans-serif;
    /* font-family: "Funnel Sans", sans-serif; */
    margin-bottom: 5px;
  }
  .card-equipe-description{
    display: none;
    /* font-family: "Funnel Sans", sans-serif; */
    font-family: 'Sora';
  }
  .card-membro img {
    width: 400px;
    height: 450px;
  }
  .card-membro-descricao > .title{
    font-size: .6rem;

  }
  .card-membro-descricao > h3{
    display: flex;
    gap: 5px;
  } 
  .card-membro-descricao > h3 > a{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-membro-descricao1 > h3{
    display: flex;
    gap: 5px;
    font-family: 'Sora';
  } 
  .card-membro-descricao1 > h3 > a{
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* ------------------------- */
  .card-membro1 {
    background-color: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 400px;
    height: fit-content;
    transition: 1s;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    text-align: left;
  }
  .card-membro-descricao1{
    padding: 15px;
  }
  .card-membro-descricao1 > h3{
    font-size: 1.5rem;
    /* font-family: "Sora", sans-serif; */
    /* font-family: "Funnel Sans", sans-serif; */
    margin-bottom: 5px;
  }
  .card-equipe-description1{
    display: none;
    /* font-family: "Funnel Sans", sans-serif; */
    font-family: 'Sora';
  }
  .card-membro1 img {
    width: 400px;
    height: 450px;
  }
  .card-membro-descricao1 > .title{
    font-size: .7rem;
  }
/*   

  
  .card-membro .info {
    padding: 16px;
    background-color: #111;
    min-height: 90px;
  }
  
  .card-membro .info h4 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
  }
  
  .card-membro .info p {
    margin: 0;
    font-size: 14px;
    color: #ccc;
  } */
  
  
  /* ----------------------------------- */
  
  .botao-container {
    text-align: center;
  }
  
  .botao-conversa {
    background-color: #007f6e;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: 'Sora';
  }
  
  .botao-conversa:hover {
    background-color: #009e89;
  }

  /* quinta sessao */

  .diferenciais {
    padding: 60px 20px;
    background-color: #0f0f0f;
    color: white;
    overflow: hidden;
  }
  .frame-29{
    background-image: url('/img/elements/frame-29.png');
    background-size: 100% 100%;
  }

  .frame-30{
    background-image: url('/img/elements/frame-30.png');
    background-size: 100% 100%;
  }

  .frame-31{
    background-image: url('/img/elements/frame-31.png');
    background-size: 100% 100%;
  }
  .frame-32{
    background-image: url('/img/elements/frame-32.png');
    background-size: 100% 100%;
  }
  .frame-33{
    background-image: url('/img/elements/frame-33.png');
    background-size: 100% 100%;
  }
  
  .header-diferenciais {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
  
  }

  .header-diferenciais h2 {
    font-size: 2rem;
    letter-spacing: 1.2px;
    margin: 5px 0 0;
    font-family: 'Sora';
  }
  
  .botao-beneficios {
    background-color: #007f6e;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .botao-beneficios:hover {
    background-color: #009e89;
  }
  
  .carrossel-beneficios {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    padding: 0px 50px;
  }
  
  .carrossel-beneficios::-webkit-scrollbar {
    height: 6px;
  }
  
  .carrossel-beneficios::-webkit-scrollbar-thumb {
    background: #2bd4c4;
    border-radius: 4px;
  }
  
  .carrossel-beneficios-card {
    min-width: 250px;
    max-width: 300px;
    height: 350px;
    display: flex;
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 16px;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    color: white;
    font-weight: 800;
  }

  .carrossel-beneficios-card > p{
    font-size: 1.1rem;
    font-family: "Funnel Sans", sans-serif;
  }
  
  .icone {
    font-size: 24px;
    margin-bottom: 12px;
  }

  /* sexta sessao */

  .contato {
    background-color: #0f0f0f;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    
    margin: 0 auto;
  }

  .form-contato{
    width: 80%;
    background: #1c1c1c;
    background-color: #121212;
    border-radius: 12px;
    padding: 20px 80px;
    margin-bottom: 40px;
    border: 1px solid rgba(92, 92, 92, 0.19);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  .form-div-form{
    padding: 0px 200px;
    
  }
  
  .contato h3 {
    color: #2bd4c4;
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .contato h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Sora';
  }
  
  .contato p {
    color: #aaa;
    font-size: 16px;
    margin-bottom: 40px;
    font-family: 'Sora';
  }
  
  .formulario-contato {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .formulario-contato label {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
  }
  
  .formulario-contato input {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 8px;
    color: white;
    font-size: 16px;
  }
  
  .formulario-contato input::placeholder {
    color: #777;
  }
  
  .formulario-contato label.erro input {
    border-color: #ff5c5c;
  }
  
  .formulario-contato .mensagem-erro {
    color: #ff5c5c;
    font-size: 12px;
    margin-top: 4px;
    display: block;
  }
  
  .formulario-contato button {
    background-color: #007f6e;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .formulario-contato button:hover {
    background-color: #009e89;
  }

  /* footer */

footer {
    
    background-color: #003B31;
    color: #ffffff;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}

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

.footer-section {
    flex: 1;
    max-width: 190px;
    margin-bottom: 20px;
    padding: 0 15px;
}
.footer-section:nth-child(3){
  min-width: 50%;

}
.footer-navigation-text{
  font-size: 0.8rem !important;
  color: rgb(216, 216, 216);
}

.footer-section h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #FFF;
    font-family: 'Sora';
}

.footer-section p, .footer-section li {
    margin-bottom: 8px;
    font-size: 11px !important;
    line-height: 1.5;
    font-family: 'Sora';
}
.footer-navigation{
  display: flex;
  
}

.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul div{
  display: flex;
  flex-direction: column;
  margin: 0px 10px 0px 0px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 20px;
    font-size: 12px;
    color: #FFF;
    gap: 20px;
    font-family: 'Sora';
}
.line{
   background: #d8d8d8;
   max-width: 90%;
   width: 90%;
   height: 0.5px;
   line-height: 0.5px;
   border: none;
   background-color: #999999;
}
/* ========== RESPONSIVIDADE ========== */
@media (max-width: 1024px) {
    /* Ajustes gerais */
    .main-container {
      padding: 0 20px;
    }
  
    /* Header */
    header {
      padding: 20px;
    }
  
    .navbar {
      padding: 12px 15px;
    }
  
    nav ul {
      gap: 15px;
    }
  
    /* Hero Section */
    .hero {
      padding: 0 20px;
    }
  
    .hero-content h2 {
      font-size: 1.5rem;
    }
  
    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    /* Serviços */
    .servicos-grid {
      grid-template-columns: repeat(2, 1fr);
      grid-template-areas:
        "card1 card2"
        "card3 card4"
        "card5 card5"
        "card6 card7"
        "card8 .";
    }
  
    .servico-card {
      padding: 20px 30px !important;
      min-height: 30vh;
    }
  
    /* Diferenciais */
    .header-diferenciais {
      flex-direction: column;
      text-align: center;
      gap: 20px;
      padding: 0 20px;
    }
  
    .carrossel-beneficios {
      padding: 0 20px;
    }
  
    /* Contato */
    .form-contato {
      width: 90%;
      padding: 20px 30px;
    }
  
    .form-div-form {
      padding: 0;
    }
  }
  
  @media (max-width: 768px) {

    header {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 0 20px;
        z-index: 1000;
      }


  .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 100px;
      right: 20px;
      font-size: 25px;
  }

    
      .navbar {
        padding: 12px 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      }
    
      nav ul {
        justify-content: space-around;
        width: 100%;
        gap: 5px;
      }
    
      nav ul li a {
        font-size: 12px;
        padding: 8px 5px;
        display: block;
      }
    
      /* Ajuste no conteúdo para não ficar escondido */
      .hero {
        margin-bottom: 80px; /* Espaço para o menu */
      }
    
      /* Esconde o logo no mobile */
      .logo {
        display: none;
      }

    /* Header */
    .navbar {
      flex-direction: column;
      gap: 15px;
      padding: 10px;
    }
  
    nav ul {
      flex-wrap: wrap;
      justify-content: center;
    }
  
    /* Hero Section */
    .hero-content h2 {
      font-size: 1.3rem;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
    .hero-content p {
        margin-bottom: 20px;
    }
  
    /* Serviços */
    .servicos-grid {
      grid-template-columns: 1fr;
      grid-template-areas:
        "card1"
        "card2"
        "card3"
        "card4"
        "card5"
        "card6"
        "card7"
        "card8";
    }
  
    .card5 {
      grid-column: span 1;
    }
  
    /* Equipe */
    .cards-equipe {
      flex-direction: column;
      align-items: center;
    }
  
    /* Diferenciais */
    .carrossel-beneficios-card {
      height: 300px;
    }
  
    /* Footer */
    .footer-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-section {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 480px) {
    /* Hero Section */
    .hero-content h2 {
      font-size: 1.1rem;
    }
  
    .hero-content h1 {
      font-size: 1.8rem;
    }
  
    .hero-content p br {
      display: none;
    }
  
    /* Clientes */
    .carousel-track img {

    }
  
    /* Contato */
    .form-contato {
      width: 95%;
      padding: 20px 15px;
    }
  
    .formulario-contato button {
      width: 100%;
    }

    .cards-equipe{
      flex-wrap: nowrap !important;
    }

    .membros-container {
      flex-direction: column;
      align-items: center !important;
      justify-content: center !important;
    }
    .card-membro{
      width: 90%;
    }
    .card-membro1{
      width: 90%;
    }
    .servico-card{
      margin-bottom: 10px;
      margin-right: 0px;
    }
    .servicos-grid{
      margin-bottom: 0px !important;
    }
    .servico-citacao{
      margin-right: 0px;
    }
    .hero-content{
      width: 100%;
      text-align: center;
      align-items: center;
    }
    .cta-button{
      font-size: 1rem;
    }
  }
  
  /* Ajuste especial para telas muito pequenas */
  @media (max-width: 360px) {
    .hero-content h1 {
      font-size: 1.5rem;
    }
  
    .cta-button {
      width: 100%;
      text-align: center;
    }

    .cards-equipe{
      flex-wrap: nowrap !important;
      
    }

    .membros-container {
      flex-direction: column;
      align-items: center !important;
      justify-content: center !important;
    }
    .card-membro1{
      width: 90%;
    }
  }

  
  

  
  
  