@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
  --verde-padrao: #0303e2;

   --bg-color: #0d0d0d;
    --card-bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --primary-color: #ffffff;
    --secondary-color: #a0a0a0;
    --border-color: #333333;
    --highlight-color: #0303e2;
    --badge-bg: #0303e2;
    --badge-text: #ffffff;
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  background-color: #000000; /* fundo preto */
}

.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 40px; 
}

.menu {
  color: white;
  font-size: 1.25rem; 
  font-weight: 400;
  
}

.logo {
  color: white;
  font-family: 'Outfit';
  font-weight: bold;
} 

.logo1 {
  color: var(--verde-padrao);
  font-family: 'Outfit';
  font-weight: bold;
} 

.menu-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 24px; /* diminui o espaçamento entre os links */
  font-size: 0.85rem; /* reduz tamanho da fonte dos links */
}


.menu-links li a {
  color: white;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.menu-links li a:hover {
  /*opacity: 0.8;*/
  text-decoration: underline;
  transform: scale(1.2);
  color: var(--verde-padrao);
}

.btn-get-startedmobile {
  background: linear-gradient(to right, #0303e2, #4d4dff);
  color: #ffffff; /* texto preto */
  border: none;
  padding: 15px 25px; /*  DISTANCIA DE PAREDES*/
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-get-started {
  background: linear-gradient(to right, #0303e2, #4d4dff);
  color: #ffffff; /* texto preto */
  border: none;
  padding: 15px 25px; /*  DISTANCIA DE PAREDES*/
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-get-started:hover {
  opacity: 0.9;
  transform: scale(1.2);
}

.btn-get-startedmobile:hover {
  opacity: 0.9;
  transform: scale(1.2);
}
/* ================= MOBILE SIDEBAR MENU ================= */

.hamburger {
  display: none; /* esconde no desktop */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Sidebar overlay */
.sidebar-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; 
  left: 850px; /* fora da tela inicialmente */
  width: 250px;
  height: 100%;
  background: #111;
  padding: 20px;
  /*box-shadow: 2px 0 5px rgba(0,0,0,0.5);*/
  transition: left 0.5s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}


.sidebar.active {
  left: 60%;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Botão fechar */
.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  align-self: flex-end;
  cursor: pointer;
}

/* Links do sidebar */
.sidebar-links {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-links li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
}

.sidebar-links li .btn-get-started {
  background: linear-gradient(to right,#b9fd50, #3dff00);
  color: #000000;
  border: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

/* =================== RESPONSIVO =================== */

@media (max-width: 767px) {
  .menu-links,
  .btn-get-started {
    display: none; /* esconde menu desktop no mobile */
  }

  .hamburger {
    display: flex; /* mostra hamburger no mobile */
  }
}

/* Sidebar e overlay padrão (escondidos no desktop) */
.sidebar,
.sidebar-overlay {
  display: none; /* esconde no desktop por padrão */
}

/* Exibe apenas no mobile */
@media (max-width: 767px) {
  .sidebar,
  .sidebar-overlay {
    display: block;
  }
  
}


/*Primeira Section */

.hero {
  position: relative; /* cria contexto para posicionamento */
  display: flex;
  justify-content: center;
  align-items: center;
 /* height: 60vh; */
  text-align: center;
}

.hero-title {
  position: relative; /* garante que fique acima da blur-ball */
  font-size: 96px;
  font-family: 'Outfit', 'sans-serif', 'Plus Jakarta Sans';
  font-weight: bold;
  color: white;
  z-index: 1; /* garante que fique acima da bola */
}

.hero-title-jans {
  position: relative; /* garante que fique acima da blur-ball */
  font-size: 96px;
  font-family: 'sans-serif', "Plus Jakarta Sans";
  font-weight:  bolder;
  font-style: italic;
  color: var(--verde-padrao);
  z-index: 1; /* garante que fique acima da bola */
} 


.blur-ball {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 206px;
  background: var(--verde-padrao);
  filter: blur(160px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none; /* permite clicar nos elementos acima */
}

.hero-subtitle {
  position: relative;
  margin-top: 30px; /* espaço entre título e subtítulo */
  font-size: 15px; /* ajuste conforme design */
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: #b0b0b0; /* cinza suave */
  text-align: center;
  z-index: 1;
}

.trusted-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px; /* espaço entre texto e linhas */
  margin-top: 52px; /* espaço acima, ajuste conforme design */
}

.trusted-text {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: 1px;
}

.line {
  flex: 1;
  height: 2px;
  max-width: 50px; /* tamanho máximo da linha */
  background: var(--verde-padrao);
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 80px; /* espaço acima da imagem */
}

.trusted-logos img {
  max-width: 90%;
  height: auto;
}







.how-we-work {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #000000; 
  padding: 80px 120px;
  gap: 40px;
}

.hww-left h5 {
  font-size: 0.8rem;
  color: var(--verde-padrao); /* verde padrão */
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hww-left h2 {
  font-size: 2rem;
  color: white;
  max-width: 400px;
  line-height: 1.2;
}

.hww-right p {
  color: #b0b0b0;
  font-size: 0.95rem;
  max-width: 360px;
  margin-bottom: 20px;
}



.process-section {
  padding: 80px 0;
  background: #000000; /* mesmo fundo */
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  flex: 1 1 250px;
  text-align: center;
  max-width: 250px;
}

.icon-circle {
  background: var(--verde-padrao);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.icon-circle img {
  width: 30px;
  height: 30px;
}

.process-step h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.process-step p {
  color: #b0b0b0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow svg {
  width: 30px;
  height: 30px;
}




.body {
      font-family: 'Outfit', sans-serif;
      margin: 0;
      padding: 0;
      background: #fff;
    }

    .projects {
      background: #f8f8f8;
      text-align: center;
      padding: 60px 20px;
    }

    .projects h2 {
      margin-bottom: 10px;
    }

    .projects p {
      margin-bottom: 40px;
    }

    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
      margin-top: 25px;
    }

    .projects-grid img {
      width: 100%;
      border-radius: 10px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .projects-grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .btn {
      background: linear-gradient(to right, #0303e2, #4d4dff);
      color: #ffffff; 
      border: none;
      padding: 15px 25px;
      border-radius: 8px;
      font-family: 'Outfit', sans-serif;
      font-weight: 400;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      overflow: hidden;
      min-width: 150px;
    }

    .btn:hover {
      opacity: 0.9;
      transform: scale(1.2);
    }

    .spinner {
      width: 18px;
      height: 18px;
      border: 2px solid #000;
      border-radius: 50%;
      border-top: 2px solid transparent;
      animation: spin 1s linear infinite;
      display: none;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .btn.loading {
      background: #fff;
      color: #000;
      border: 1px solid #000;
      transform: scale(1);
    }

    .btn.loading .spinner {
      display: inline-block;
    }

    .hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 8.6s ease, transform 8.6s ease;
  }

  .show {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }


  .section-services {
     padding: 60px 20px;
      text-align: center;
  }
  .h2-services {
     font-size: 28px;
    margin-bottom: 40px;
    color: white;
  }

  .buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 1000px;
      margin: 0 auto 40px auto;
    }

    .button {
      background-color: var(--verde-padrao);
      color: white;
      padding: 10px 15px;
      border-radius: 6px;
      font-size: 14px;
      border: none;
      cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      white-space: nowrap;
    }

    .button:hover {
      background-color: var(--verde-padrao);
      transform: scale(0.8);

    }


    .subtitle {
      color: var(--verde-padrao);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }


    @media (max-width: 480px) {
      h2 {
        font-size: 22px;
      }
    }

    .features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  padding: 0 20px;
}

.feature-item {
  background-color: #0c0c0c;
  border: 1px solid #222;
  padding: 20px;
  border-radius: 6px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* efeito no hover */
.feature-item:hover {
  transform: scale(1.05); /* aumenta 5% */
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); /* sombra suave */
  border: 1px solid var(--verde-padrao);
}

.feature-item .icon {
  margin-bottom: 15px;
}

.feature-item .icon img {
  width: 24px;
  height: 24px;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.feature-item p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.section-testi {
  background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* opcional, garante disposição vertical */
    width: 100%;
}


.testimonials {
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 800px;
    background-color: #F9F9F9;
    border-radius: 40px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.30);
    text-align: center;
    overflow: hidden;
}

.testimonials-header {
    margin-bottom: 30px;
    margin-top: 70px;
    text-align: center;
}

.testimonials-header h2 {
    font-size: 2.25rem;
    color: #1a202c;
    margin: 0 0 10px;
}

.testimonials-header p {
    font-size: 1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 50px; /* Space for arrows */
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-img-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: #e0e8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.testimonial-img-container::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0 0 25px;
    font-style: italic;
    max-width: 600px;
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #a0aec0;
    margin-top: 5px;
}

.slider-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 24px;
    font-weight: bold;
    color: #4a5568;
    cursor: pointer;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.slider-btn:hover {
    background-color: #f7fafc;
    box-shadow: 0 7px 14px rgba(0,0,0,0.07), 0 3px 6px rgba(0,0,0,0.05);
    transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.98);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}


.main-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-header h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.pricing-tier {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.pricing-tier.highlighted {
    border-color: var(--highlight-color);
    border-width: 2px;
    padding-top: 3.5rem; /* Space for badge */
}

  .section-price {
    font-family: 'Sora', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*min-height: 100vh;*/
  }

.badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--badge-bg);
    color: var(--badge-text);
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-tier header {
    text-align: left;
}

.tier-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.5rem;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-left: 0.25rem;
}

.pricing-tier hr {
    border: none;
    height: 1px;
    background-color: var(--border-color);
    margin: 1.5rem 0;
}

.includes-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.features-list li::before {
    content: '✓';
    color: var(--highlight-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 0.75rem;
}

.tier-footer {
    margin-top: 2rem;
}

.cta-button {
    display: block;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--bg-color);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d0d0d0;
}

.highlighted .cta-button {
    background-color: var(--highlight-color);
    color: var(--primary-color);
}

.highlighted .cta-button:hover {
    background-color: #3a4bba;
}

.tier-note {
    font-size: 0.8rem;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 1rem;
}


@media (max-width: 1100px) {
    .pricing-container {
        align-items: center;
    }
    .pricing-tier {
        width: 100%;
        max-width: 450px;
    }
}

.section-faq {
  background-color: rgb(0, 0, 0);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
    font-weight: 700;
}

.faq-list {
    margin-bottom: 80px;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: var(--verde-padrao);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: black;
    border: none;
    color: #ffffff;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #1a1a1a;
}

.faq-question[aria-expanded="true"] {
    background-color: #1a1a1a;
}

.faq-question[aria-expanded="true"] .chevron {
    transform: rotate(180deg);
}

.chevron {
    background-color: var(--verde-padrao);
    border-radius: 100%;
    width: 24px;
    height: 24px;
    color: rgb(0, 0, 0);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #1a1a1a;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: #b3b3b3;
    line-height: 1.8;
}

.contact-section {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
}

.contact-section h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-section p {
    color: #ffffff;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.question-input {
    /*width: 100%;*/
    padding: 16px;
    border: 1px solid var(--verde-padrao);
    border-radius: 8px;
    color: #ffffff;
    background-color: transparent;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-message {
  text-align: center;
  margin-top: 15px;
  font-weight: bold;
  font-size: 1rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  /* Garante que o elemento ocupe espaço mesmo invisível */
  height: 0; 
  visibility: hidden;
}

.form-message.show {
  opacity: 1;
  visibility: visible;
  height: auto;
}

.form-message.success {
  color: #28a745; /* Verde para sucesso */
}

.form-message.error {
  color: #dc3545; /* Vermelho para erro */
}

.input-field {
  padding: 16px;
  border: 1px solid var(--verde-padrao);
  border-radius: 8px;
  color: #ffffff;
  background-color: transparent;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--verde-padrao);
}

.input-field::placeholder {
  color: #ffffff;
}

.question-input:focus {
    outline: none;
    border-color: var(--verde-padrao);
}

.question-input::placeholder {
    color: #ffffff;
}

.send-button {
    padding: 12px 32px;
    background-color: var(--verde-padrao);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-end;
}

.send-button:hover {
    background-color: #1371ff;
    transition: background-color 0.5s ease;
}

.send-button:active {
    transform: translateY(1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .faq-container {
        padding: 20px 10px;
    }

    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.9rem;
    }

    .chevron {
        width: 20px;
        height: 20px;
    }

    .contact-section {
        padding: 20px;
    }
}



/* Mobile Responsive */



@media (max-width: 767px) {
  .menu {
  padding: 24px 23px; 
  }

  .hero-title,
  .hero-title-jans {
  font-size: 51px;
  }

   .hero-subtitle {
  font-size: 13px; /* ajuste conforme design */
  }

  .trusted-text {
    font-size: 13px;
  }

  .trusted-logos img {
    max-width: 80%;
  }

  .trusted-section {
    margin-top: 70px; 
  }

   .how-we-work {
    flex-direction: column;
    align-items: flex-start;
    padding: 60px 30px;
  }

  .hww-left h2 {
    font-size: 1.5rem;
  }

  .hww-right p {
    font-size: 0.9rem;
  }

  .arrow {
    display: none;
  }

  .prev-btn {
    left: -20px;
  }

  .next-btn {
      right: -20px;
  }

}


@media (max-width: 440px) {

  .trusted-text {
    font-size: 9px;
  }

  .testimonial-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 1000px) {

  .section-testi {
    flex-direction: row;
  }

  .testimonials {
    margin-top: 0; 
    margin-bottom: 0;  
    width: none;
    max-width: none;
  }
}



/* FOOTER */


.footer {
  background-color: #111; /* fundo escuro similar ao header */
  color: white;
  padding: 40px;
  font-family: 'Outfit', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer-left {
  max-width: 400px;
}

.footer-description {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 10px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-social a {
  margin-right: 15px;
  color: var(--verde-padrao);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.3);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap; /* permite quebra de linha */
  align-items: center;
  justify-content: center; /* centraliza no mobile */
  gap: 10px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap; /* agora pode quebrar */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 16px;
  font-size: 0.85rem;
  justify-content: center;
}

/* Em telas maiores mantém alinhamento espaçado */
@media (min-width: 768px) {
  .footer-bottom {
    justify-content: space-between;
  }

  .footer-links {
    justify-content: flex-start;
  }
}


.footer-links li a {
  color: white;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
  color: var(--verde-padrao);
}

.footer-copy {
  font-size: 0.75rem;
  opacity: 0.6;
}














.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}




#loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color:  var(--verde-padrao);
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Começa visível */
  transition: opacity 0.5s ease; /* Transição suave */
  z-index: 9999;
}

#clean-icon {
  font-size: 50px; /* Tamanho do ícone */
  animation: sweep 1s infinite; /* Animação de varrendo */
}

@keyframes sweep {
  0% {
      transform: translateX(0);
  }
  50% {
      transform: translateX(10px);
  }
  100% {
      transform: translateX(0);
  }
}

.logo img {
  width: 140px;  
  height: auto;
}