/* style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background-color: #022b08;
  line-height: 1.6;
}

header {
  padding: 20px;
  background: #022b08;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header img {
  height: 40px;
}


nav a {
  margin: 0 15px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 32, 0, 0.85), rgba(0, 32, 0, 0.85)),
              url('../img/hero-bg.jpg') no-repeat center center/cover;
  color: white;
  padding: 0 10%;
}

.hero-content {
  max-width: 600px;
}

.hero .subtitulo {
  color: #02a112;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 3.1rem;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ccc;
}

.btn.saiba-mais svg.seta-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.btn.saiba-mais:hover svg.seta-icon {
  transform: translateY(3px);
}

.btn .seta {
  font-size: 1.3rem;
  line-height: 1;
}

.btn {
  background: white;
  color: #022b08;
  padding: 18px 80px; /* Aumentado */
  font-weight: bold;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.1rem; /* opcional: deixa o texto maior */
}


section {
  padding: 60px 20px;
  background: white;
  color: #000;
}

section h2 {
  color: #02a112;
  font-size: 2rem;
  margin-bottom: 20px;
}

/* Seção "Quem somos" com layout em colunas */
.quem-somos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  background: white;
  color: #000;
  padding: 60px 10%;
  flex-wrap: wrap;
}

.quem-somos-texto {
  flex: 1;
  min-width: 300px;
}

.quem-somos-imagem {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.icone-diploma {
  width: 60px;
}

.foto-menina {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
}

/* Seção "O que você irá encontrar" com imagem */
.features {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 10%;
  background: #022b08;
  color: white;
  flex-wrap: wrap;
}

.features-texto {
  flex: 1;
  min-width: 300px;
}

.features-imagem img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
}

.features ul {
  list-style: none;
  padding: 0;
}

.features li {
  margin-bottom: 12px;
  font-size: 1rem;
}

.features li::before {
  content: '✅';
  margin-right: 10px;
}
.carousel-container {
  position: relative;
  background-color: #013d09; /* verde escuro */
  border-radius: 25px;
  padding: 30px 60px;
  max-width: 80%;
  height: 300px;
  margin: 30px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-wrapper {
  width: 90%;  /* ocupa 90% da largura da verde escura */
  overflow: hidden;
}

.carousel {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.testimonial-card {
  min-width: 250px;
  background-color: #02a112; /* verde mais claro */
  border-radius: 15px;
  padding: 30px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
  height: 90%;
}

.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
  background-color: black;
}

.carousel-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  padding: 0 10px;
  user-select: none;
  transition: color 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.prev-btn {
  left: 15px;
}

.next-btn {
  right: 15px;
}

.carousel-btn:hover {
  color: #02a112;
}


.cta {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  color: #000;
}

.cta a {
  width: 40%;
  background: #02a112;
  color: white;
  padding: 14px 32px;
  border-radius: 10px;
  display: inline-block;
  text-decoration: none;
  font-size: 1.2rem;
  margin-top: 20px;
}

.cta a i.fab.fa-whatsapp {
  font-size: 1.5rem; /* aumenta o tamanho do ícone */
  margin-right: 8px; /* espaço entre o ícone e o texto */
  vertical-align: middle;
}


footer {
  text-align: center;
  background: #022b08;
  padding: 20px;
  color: white;
}
