:root {
  --azul-claro: #ECF5FE;
  --azul-escuro: #2D71A1;
  --cinza-suave: #F8F9FA;
  --verde-whatsapp: #25d366;
  --fonte: 'Roboto', sans-serif;
}

/* Reset e Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--fonte);
  background: var(--azul-claro);
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

header, footer {
  background: var(--azul-escuro);
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.banner {
  background: url('../img/banner1.jpg') center center / cover no-repeat fixed;
  position: relative;
  height: 400px;
  color: #fff;
}

.banner .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.45));
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-content {
  text-align: center;
  padding: 20px;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.banner h2 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: #fff;
}

.banner h2 span {
  font-weight: 600;
  color: #F9F871; /* destaque opcional */
}


.empresa, .metodo, .precos, .depoimentos {
  padding: 60px 0;
}

.empresa img {
  width: 250px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.empresa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 20px;
}

.texto-empresa {
  flex: 1;
  max-width: 60%;
}

.texto-empresa h2 {
  font-size: 2.5rem;
  color: #2D71A1;
  margin-bottom: 20px;
}

.texto-acao .btn {
  display: inline-block;
  width: auto;
}

.texto-empresa p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #555;
}

.texto-empresa .btn {
  font-size: 1rem;
  padding: 12px 25px;
}

.imagem-empresa {
  flex: 1;
  max-width: 40%;
  display: flex;
  justify-content: center;
}

.imagem-empresa img {
  width: 100%;
  max-width: 350px;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}


.precos {
  padding: 60px 20px;
  background-color: #f8fcff;
  text-align: center;
}

.precos .titulo-precos {
  display: inline-block;
  background-color: #2D71A1;
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 5px;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.cards-precos {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card-preco {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s;
}

.card-preco.destaque {
  background-color: #2D71A1;
  color: #ffffff;
}

.card-preco h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.card-preco .valor {
  font-size: 1.8rem;
  font-weight: bold;
}

.card-preco .valor span {
  font-size: 1rem;
  font-weight: normal;
}

.card-preco .obs {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 10px;
}

.texto-info, .texto-obs {
  text-align: center;
  font-size: 0.95rem;
  color: #555;
  margin-top: 20px;
}

.texto-obs .btn {
  display: inline-block;
  margin-top: 15px;
}




.btn {
  background: var(--azul-escuro);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}

.cards, .precos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.card, .price-card {
  background: #fff;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.card:hover {
  transform: translateY(-10px);
}

.card .icon {
  font-size: 60px; /* Aumenta o tamanho do ícone */
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #666;
}

.depoimentos {
  width: 100vw;
  background: #f5f9fd;
  padding: 60px 0;
  overflow: hidden;
}

.carousel-depoimentos {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
}

.carousel-depoimentos {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: auto;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide-text p {
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 1rem;
  color: #444;
}

.slide-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-text h3 {
  font-size: 1.5rem;
  color: #73250a;
  margin-bottom: 15px;
}

.slide-text {
  flex: 1;
  color: #333;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.carousel-item {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.slide-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 20px 40px;
}

.carousel-item .texto {
  flex: 1;
  text-align: left;
}

.carousel-item .texto h3 {
  color: #2D71A1;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.carousel-item .imagem img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.carousel-item .conteudo {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 0 40px;
  max-width: 1200px;
  margin: auto;
}

.depoimentos-carrossel {
  width: 100vw;
  background-color: #f0f7fc;
  padding: 60px 20px;
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.texto-depoimento {
  flex: 1;
  color: #333;
}

.texto-depoimento h3 {
  font-size: 1.6rem;
  color: #73250a;
  margin-bottom: 20px;
}

.texto-depoimento p {
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.depoimento-unico {
  width: 100%;
  background-color: #f0f7fc;
  padding: 60px 20px;
}

.conteudo-depoimento {
  display: flex;
  max-width: 1100px;
  margin: auto;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.imagem-depoimento img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.foto-aluno {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.carousel-item .texto p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

.carousel-item h3 {
  color: #2D71A1;
  font-size: 1.5rem;
}

.carousel-item p {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
}

.carousel-indicators {
  text-align: center;
  margin-top: 20px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  display: inline-block;
  margin: 0 5px;
  cursor: pointer;
}
.indicator.active {
  background: #2D71A1;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #2D71A1;
  transition: background 0.3s;
}
.nav:hover {
  background: #2D71A1;
  color: #fff;
}

.nav.left {
  left: 30px;
}

.nav.right {
  right: 30px;
}


.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--verde-whatsapp);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.whatsapp:hover {
  transform: scale(1.1);
}

.contato {
  background-color: #2D71A1;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.container-contato {
  max-width: 600px;
  margin: auto;
}

.contato h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.contato p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.contato a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contato a:hover {
  color: #b0d4ff;
}

.contato i {
  margin-right: 8px;
  color: #9fd3ff;
}

.metodo-clean {
  background-color: #f9fbfc;
  padding: 80px 20px;
}

.metodo-clean .container {
  max-width: 1400px;
  margin: auto;
}

.metodo-clean h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  color: #2D71A1;
  font-weight: 500;
}

.cards-clean {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px 40px; /* primeiro é gap vertical, segundo horizontal */
  padding: 10px;
}

.card-clean {
  display: flex;
  gap: 20px;
  background: linear-gradient(145deg, #e8f1fa, #d0e4f5);
  border-radius: 12px;  
  padding: auto;
  margin-bottom: 20px;  
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  align-items: flex-start;
}

.card-clean:hover {
  transform: translateY(-4px);
}

.card-clean img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.card-clean h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  color: #2D2D2D;
}

.card-clean p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}
/* Responsividade */
@media (max-width: 768px) {
  .cards, .precos, .empresa {
    flex-direction: column;
    align-items: center;
  }

  .banner {
    height: 280px;
  }

  .banner h2 {
    font-size: 1.8rem;
  }

  .empresa {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .texto-empresa, .imagem-empresa {
    max-width: 100%;
  }

  .imagem-empresa img {
    max-width: 250px;
  }

  .cards-precos {
    flex-direction: column;
  }

  .card-preco {
    width: 100%;
  }

  .carousel-item .conteudo {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .carousel-item .texto {
    text-align: center;
  }

  .carousel-item .imagem img {
    width: 160px;
    height: 160px;
  }

  .cards-clean {
    grid-template-columns: 1fr;
  }

  .card-clean {
    flex-direction: row;
  }

  .texto-acao .btn {
    display: block;           
    width: 100%;              
    max-width: 280px;         
    margin: 15px auto 0;      
    padding: 14px 0;          
    font-size: 1rem;          
    text-align: center;       
  }

  /* Ajuste das imagens e textos do carrossel de depoimentos */
  .slide-content {
    flex-direction: column;     /* empilha a imagem e o texto */
    align-items: center;
    gap: 15px;                  /* reduz o espaçamento */
    padding: 10px 20px;         /* tira o padding gigante */
    text-align: center;
  }
  .slide-image img {
    width: 150px;
    height: 150px;
  }
  .slide-text {
    margin-top: 0 !important;   /* elimina margens extras */
    padding: 0 !important;
  }
}


@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}



