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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #2a2a2a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding-bottom: 0;
}

/* SEÇÃO INICIAL */
.inicial {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #1a1a1a 0%, #2a2a2a 100%);
  padding: 60px 20px;
  text-align: center;
}

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

.inicial-logo {
  margin-bottom: 50px;
}

.inicial-logo img {
  max-width: 280px;
  margin: 0 auto;
  display: block;
}

.inicial-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.inicial-italic {
  font-style: italic;
  font-weight: 400;
}

.inicial-subheadline {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 40px;
  font-weight: 400;
}

.inicial-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.inicial-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

/* SEÇÃO MÉTODO */
.metodo {
  background: #f5f5f5;
  padding: 80px 20px;
}

.metodo-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.metodo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 50px;
  font-weight: 400;
}

.metodo-image {
  margin-bottom: 50px;
}

.metodo-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.metodo-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.metodo-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.metodo-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
}

.metodo-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #2a2a2a;
}

.metodo-text strong {
  font-weight: 700;
  color: #000000;
}

.metodo-footer {
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.7;
  color: #2a2a2a;
  margin-top: 40px;
  text-align: center;
  font-style: italic;
}

/* SEÇÃO CANSOU */
.cansou {
  background: #000000;
  padding: 80px 20px;
  color: #ffffff;
}

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

.cansou-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: 400;
}

.cansou-italic {
  font-style: italic;
  font-weight: 400;
}

.cansou-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 24px;
}

.cansou-text strong {
  font-weight: 700;
  color: #ffffff;
}

.cansou-image {
  margin-top: 50px;
  border-radius: 8px;
  overflow: hidden;
}

.cansou-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 640px) {
  .inicial {
    padding: 40px 20px;
  }
  
  .inicial-logo {
    margin-bottom: 40px;
  }
  
  .inicial-logo img {
    max-width: 120px;
  }
  
  .inicial-headline {
    margin-bottom: 24px;
  }
  
  .inicial-subheadline {
    margin-bottom: 32px;
  }
  
  .inicial-btn {
    width: 100%;
    max-width: 100%;
  }
  
  .metodo {
    padding: 60px 20px;
  }
  
  .metodo-title {
    margin-bottom: 40px;
  }
  
  .metodo-image {
    margin-bottom: 40px;
  }
  
  .cansou {
    padding: 60px 20px;
  }
  
  .cansou-title {
    margin-bottom: 24px;
  }
  
  .cansou-image {
    margin-top: 40px;
  }
}

/* SEÇÃO PARA QUEM É */
.para-quem {
  background: #f5f5f5;
  padding: 80px 20px;
}

.para-quem-container {
  max-width: 700px;
  margin: 0 auto;
}

.para-quem-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 40px;
  text-align: center;
}

.para-quem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.para-quem-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.para-quem-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

.para-quem-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: #2a2a2a;
}

.para-quem-btn {
  display: block;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  max-width: 400px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.para-quem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

/* SEÇÃO ESTRUTURA DO PRODUTO */
.estrutura {
  background: #000000;
  padding: 80px 20px;
}

.estrutura-container {
  max-width: 1000px;
  margin: 0 auto;
}

.estrutura-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 60px;
  text-align: center;
  font-weight: 400;
}

.estrutura-italic {
  font-style: italic;
  color: #f4daba;
}

.estrutura-card {
  background: #1a1a1a;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
}

.estrutura-card-principal {
  text-align: center;
}

.estrutura-image {
  margin-bottom: 30px;
}

.estrutura-image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.estrutura-card-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.estrutura-card-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.estrutura-valor {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.estrutura-valor-label {
  font-size: 1rem;
  color: #e0e0e0;
  font-weight: 600;
}

.estrutura-valor-preco {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: #f4daba;
  font-weight: 700;
}

.estrutura-bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.estrutura-card-bonus {
  text-align: center;
}

.estrutura-bonus-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f4daba;
}

.estrutura-bonus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estrutura-recapitulando {
  background: #f5f5f5;
  border-radius: 20px;
  padding: 50px 40px;
  margin-top: 50px;
}

.estrutura-recap-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: #2a2a2a;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

.estrutura-lista {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.estrutura-lista-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: #2a2a2a;
  position: relative;
}

.estrutura-lista-nome {
  font-weight: 400;
  position: relative;
  padding-right: 10px;
  background: #f5f5f5;
  z-index: 1;
}

.estrutura-lista-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background-image: repeating-linear-gradient(
    to right,
    #666666 0,
    #666666 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.estrutura-lista-valor {
  font-weight: 700;
  color: #000000;
  background: #f5f5f5;
  padding-left: 10px;
  z-index: 1;
  position: relative;
}

.estrutura-entregaveis {
  text-align: center;
  margin-top: 40px;
}

.estrutura-entregaveis img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* SEÇÃO CARROSSEL */
.carrossel-metodo {
  background: #000000;
  padding: 80px 0 60px;
  overflow: hidden;
}

.carrossel-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.carrossel-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #ffffff;
  font-weight: 400;
}

.carrossel-italic {
  font-style: italic;
}

.carrossel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carrossel-track {
  display: flex;
  gap: 0;
  animation: scroll 30s linear infinite;
  width: fit-content;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carrossel-track:hover {
  animation-play-state: paused;
}

.carrossel-item {
  position: relative;
  width: 300px;
  height: 500px;
  flex-shrink: 0;
  overflow: hidden;
}

.carrossel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carrossel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
  padding: 30px 20px 20px;
  color: #ffffff;
}

.carrossel-badge {
  display: inline-block;
  background: rgba(244, 218, 186, 0.9);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.carrossel-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.3;
  font-style: italic;
  font-weight: 400;
  margin: 0;
}

/* SEÇÃO DEPOIMENTOS */
.depoimentos {
  background: #f5f5f5;
  padding: 80px 20px;
}

.depoimentos-container {
  max-width: 1200px;
  margin: 0 auto;
}

.depoimentos-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 50px;
  text-align: center;
  font-weight: 400;
}

.depoimento-video {
  max-width: 900px;
  margin: 0 auto 60px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.depoimento-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.depoimento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.depoimento-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.depoimento-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.depoimento-info {
  flex: 1;
}

.depoimento-nome {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 4px;
}

.depoimento-cargo {
  font-size: 0.9rem;
  color: #666666;
  margin: 0;
}

.depoimento-texto {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 20px;
  font-style: italic;
}

.depoimento-stars {
  color: #fbbf24;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

/* SEÇÃO OFERTA */
.oferta {
  background: #000000;
  padding: 60px 20px;
  text-align: center;
}

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

.oferta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
}

.oferta-preco-de {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: #999999;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.oferta-preco-por {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #4ade80;
  font-weight: 700;
  margin-bottom: 20px;
}

.oferta-detalhes {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 30px;
}

.oferta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.oferta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

/* SEÇÃO GARANTIA */
.garantia {
  background: #f5f5f5;
  padding: 80px 20px;
}

.garantia-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.garantia-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 30px;
}

.garantia-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.garantia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.garantia-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

/* SEÇÃO FAQ */
.faq {
  background: #000000;
  padding: 80px 20px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 40px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-question:hover {
  background: #222222;
}

.faq-icon {
  display: inline-block;
  font-size: 0.8rem;
  color: #4ade80;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #e0e0e0;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/* SEÇÃO MENTORAS */
.mentoras {
  background: #f5f5f5;
  padding: 80px 20px;
}

.mentoras-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.mentoras-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.3;
  color: #2a2a2a;
  margin-bottom: 30px;
}

.mentoras-text {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.7;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.mentoras-btn {
  display: inline-block;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.mentoras-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

/* FOOTER */
.footer {
  background: #000000;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #2a2a2a;
}

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

.footer-text {
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  color: #e0e0e0;
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-subtitle {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #ffffff;
  margin: 24px 0 12px;
  font-weight: 600;
}

.footer-email {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: #4ade80;
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #ffffff;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.4);
}

.footer-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.5);
}

.img-garantia{
  width: 150px;
}

.container-img-garantia{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ÍCONE WHATSAPP */
.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .para-quem {
    padding: 60px 20px;
  }
  
  .para-quem-btn {
    width: 100%;
    max-width: 100%;
  }
  
  .estrutura {
    padding: 60px 20px;
  }
  
  .estrutura-title {
    margin-bottom: 40px;
  }
  
  .estrutura-card {
    padding: 30px 20px;
  }
  
  .estrutura-image img {
    max-width: 100%;
  }
  
  .estrutura-bonus-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .estrutura-recapitulando {
    padding: 40px 20px;
  }
  
  .estrutura-lista {
    max-width: 100%;
  }
  
  .estrutura-lista-item {
    grid-template-columns: 1fr auto;
    gap: 15px;
    font-size: 0.9rem;
  }
  
  .estrutura-lista-nome {
    padding-right: 5px;
  }
  
  .estrutura-lista-valor {
    padding-left: 5px;
  }
  
  .carrossel-metodo {
    padding: 60px 0 50px;
  }
  
  .carrossel-header {
    margin-bottom: 40px;
  }
  
  .carrossel-item {
    width: 250px;
    height: 420px;
  }
  
  .carrossel-track {
    animation: scroll 25s linear infinite;
  }
  
  .depoimentos {
    padding: 60px 20px;
  }
  
  .depoimentos-title {
    margin-bottom: 40px;
  }
  
  .depoimento-video {
    margin-bottom: 50px;
  }
  
  .video-wrapper {
    border-radius: 12px;
  }
  
  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .oferta {
    padding: 50px 20px;
  }
  
  .oferta-btn {
    width: 100%;
  }
  
  .garantia {
    padding: 60px 20px;
  }
  
  .garantia-btn {
    width: 100%;
  }
  
  .faq {
    padding: 60px 20px;
  }
  
  .mentoras {
    padding: 60px 20px;
  }
  
  .mentoras-btn {
    width: 100%;
  }
  
  .footer {
    padding: 50px 20px;
  }
  
  .footer-whatsapp {
    width: 100%;
  }

  .img-garantia{
  width: 150px;
}
}
