/* ======================
   RESET & BASE STYLES
   ====================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Urbanist", system-ui, -apple-system, sans-serif !important;
  color: #2d2926;
  background-color: #fffaf7;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif !important;
  line-height: 1.2;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ======================
   UTILITY CLASSES
   ====================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent {
  color: #c26e60;
}

.text-dark {
  color: #2d2926;
}

.text-light {
  color: #fff5f5;
}

.text-light-muted {
  color: rgba(255, 245, 245, 0.7) !important;
}

/* ======================
   BUTTONS
   ====================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
  background: linear-gradient(135deg, #2d2926 0%, #c26e60 50%, #2d2926 100%);
  background-size: 200% 100%;
  background-position: 0% 0%;
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(45, 41, 38, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background-position: 100% 0%;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(45, 41, 38, 0.4);
  color: white;
}

.btn-primary:active {
  transform: scale(0.95);
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.btn-icon {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.75rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(8px);
}

.btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2d2926;
  background: #fff5f5;
  border-radius: 9999px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  overflow: hidden;
}

.btn-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c26e60, #fff5f5, #c26e60);
  background-size: 200% 100%;
  background-position: 0% 0%;
  opacity: 0;
  transition: all 0.5s ease;
}

.btn-cta:hover::before {
  opacity: 1;
  background-position: 100% 0%;
}

.btn-cta:hover {
  transform: translateY(-8px) scale(1.1);
}

.btn-cta:active {
  transform: scale(1);
}

.btn-cta span,
.btn-cta svg {
  position: relative;
  z-index: 1;
}

.btn-cta svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}

.btn-cta:hover svg {
  transform: translateX(8px);
}

/* ======================
   HERO SECTION
   ====================== */
.hero-section {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(180deg, #fffaf7 0%, #fff5f5 100%);
  overflow: hidden;
}

.decorative-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.blur-1 {
  top: 5rem;
  right: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: rgba(194, 110, 96, 0.15);
}

.blur-2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: rgba(45, 41, 38, 0.1);
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  width: 200px;
  height: auto;
  animation: fadeIn 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(45, 41, 38, 0.7);
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}


.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  /* Animação removida para aplicar nos filhos */
}

/* --- ESTILOS DOS AVATARES ATUALIZADOS --- */
.avatars {
  display: flex;
  margin-left: -0.75rem; /* Ajuste na sobreposição */
}

.avatar-image {
  position: relative;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fffaf7;
  margin-left: -0.75rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  
  /* Animação de entrada */
  opacity: 0;
  transform: translateX(50px) scale(0.8);
  animation: slideInAvatar 0.6s ease-out forwards;
}


.avatar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Delay escalonado para cada avatar */
.avatars .avatar-image:nth-child(1) { animation-delay: 0.6s; }
.avatars .avatar-image:nth-child(2) { animation-delay: 0.75s; }
.avatars .avatar-image:nth-child(3) { animation-delay: 0.9s; }
.avatars .avatar-image:nth-child(4) { animation-delay: 1.05s; }
.avatars .avatar-image:nth-child(5) { animation-delay: 1.2s; }


/* Animação de entrada dos avatares */
@keyframes slideInAvatar {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Hover effect */
.avatar-image:hover {
  transform: translateX(0) scale(1.15);
  z-index: 10;
  transition: transform 0.3s ease;
}
/* --- FIM DOS ESTILOS DOS AVATARES --- */

    @keyframes enterAvatar {
     to {
         opacity: 1;
        transform: translateX(0);
     }
    }
    
/* --- FIM DOS ESTILOS DOS AVATARES --- */


.proof-text {
  text-align: left;
}

.proof-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d2926;
  margin-bottom: 0.125rem;
}

.proof-subtitle {
  font-size: 0.75rem;
  color: rgba(45, 41, 38, 0.6);
}

.hero-video {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 32rem;
}

.video-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, #c26e60, #2d2926);
  border-radius: 1.5rem;
  filter: blur(40px);
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.video-container {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(45, 41, 38, 0.3);
  border: 1px solid rgba(194, 110, 96, 0.2);
}

.video-container video {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* ======================
   TARGET SECTION
   ====================== */
.target-section {
  position: relative;
  padding: 6rem 0 8rem;
  background-color: #fff5f5;
  overflow: hidden;
}

.watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.15;
}

.watermark img {
  width: 600px;
  height: auto;
}

.blur-3 {
  top: 2.5rem;
  right: 5rem;
  width: 16rem;
  height: 16rem;
  background: rgba(194, 110, 96, 0.3);
  opacity: 0.4;
}

.blur-4 {
  bottom: 5rem;
  left: 2.5rem;
  width: 20rem;
  height: 20rem;
  background: rgba(45, 41, 38, 0.15);
  opacity: 0.4;
}

.section-header {
  position: relative;
  max-width: 48rem;
  margin: 0 auto 5rem;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  border: 2px solid #c26e60;
  background-color: rgba(194, 110, 96, 0.1);
}

.badge span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c26e60;
}

.badge-dark {
  border: 2px solid #2d2926;
  background-color: rgba(45, 41, 38, 0.05);
}

.badge-dark span {
  color: #2d2926;
}

.pulse-dot {
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c26e60;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #c26e60;
  animation: ping 1.5s ease-out infinite;
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(45, 41, 38, 0.7);
}

.bento-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  padding: 2rem;
  background: white;
  border: 2px solid rgba(194, 110, 96, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1);
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
}

.bento-card.visible {
  opacity: 1;
  transform: scale(1);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 110, 96, 0.05), rgba(45, 41, 38, 0.05));
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover::before {
  opacity: 1;
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(45, 41, 38, 0.15);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
  background: rgba(194, 110, 96, 0.1);
  color: #c26e60;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.bento-card:hover .card-icon {
  transform: scale(1.1);
}

.card-icon svg {
  width: 3rem;
  height: 3rem;
}

.bento-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d2926;
}

.bento-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(45, 41, 38, 0.7);
}

/* ======================
   BENEFITS SECTION
   ====================== */
.benefits-section {
  position: relative;
  padding: 6rem 0 8rem;
  background: linear-gradient(135deg, rgba(194, 110, 96, 0.2), rgba(194, 110, 96, 0.08));
  overflow: hidden;
}

.decorative-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 3s ease-in-out infinite;
}

.float-1 {
  top: 5rem;
  left: 2.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(45, 41, 38, 0.15);
}

.float-2 {
  bottom: 10rem;
  right: 5rem;
  width: 10rem;
  height: 10rem;
  background: rgba(194, 110, 96, 0.3);
  animation-delay: 0.3s;
}

.benefits-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  padding: 2rem;
  background: white;
  border: 2px solid rgba(194, 110, 96, 0.2);
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(45, 41, 38, 0.1);
  transition: all 0.5s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.benefit-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.benefit-card.featured {
  border-color: #c26e60;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 110, 96, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card.featured::before {
  background: linear-gradient(135deg, rgba(194, 110, 96, 0.1), rgba(45, 41, 38, 0.05));
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 60px rgba(45, 41, 38, 0.15);
}

.benefit-card:hover .card-icon {
  transform: scale(1.1) rotate(6deg);
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.375rem 0.75rem;
  background: #c26e60;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
}

.benefit-card.featured .card-icon {
  background: rgba(194, 110, 96, 0.15);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d2926;
}

.benefit-card p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(45, 41, 38, 0.7);
}

/* ======================
   MENTORS SECTION
   ====================== */
.mentors-section {
  position: relative;
  padding: 6rem 0 8rem;
  background-color: #2d2926;
  overflow: hidden;
}

.blur-5 {
  top: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: #c26e60;
  opacity: 0.3;
}

.blur-6 {
  bottom: 2.5rem;
  left: 5rem;
  width: 20rem;
  height: 20rem;
  background: #c26e60;
  opacity: 0.3;
}

.mentors-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto 6rem;
}

.mentor-card {
  position: relative;
  padding: 2.5rem;
  background: rgba(255, 245, 245, 0.05);
  border: 2px solid rgba(194, 110, 96, 0.3);
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.5s ease;
  opacity: 0;
}

.mentor-card.visible {
  opacity: 1;
}

.mentor-card[data-slide="left"].visible {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.mentor-card[data-slide="right"].visible {
  animation: fadeInRight 0.8s ease-out forwards;
}

.mentor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(194, 110, 96, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  border-radius: 1.5rem;
}

.mentor-card:hover::before {
  opacity: 1;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.3);
}

.mentor-image-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.image-glow {
  position: absolute;
  inset: -1rem;
  background: #c26e60;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.mentor-card:hover .image-glow {
  opacity: 0.75;
}

.mentor-image {
  position: relative;
  width: 16rem;
  height: 16rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border: 4px solid #c26e60;
  transition: transform 0.5s ease;
}

.mentor-card:hover .mentor-image {
  transform: scale(1.05);
}

.mentor-highlight {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: #c26e60;
  color: #fff5f5;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  white-space: nowrap;
}

.mentor-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: #c26e60;
  margin-bottom: 0.75rem;
}

.mentor-role {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(194, 110, 96, 0.2);
  color: #fff5f5;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 9999px;
}

.mentor-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 245, 245, 0.8);
  max-width: 32rem;
  margin: 0 auto;
}

.together-section {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 3rem 4rem;
  background: rgba(194, 110, 96, 0.1);
  border: 2px solid #c26e60;
  border-radius: 1.5rem;
  backdrop-filter: blur(10px);
  text-align: center;
  overflow: hidden;
  animation: scaleIn 0.6s ease-out 0.4s backwards;
}

.corner-decoration {
  position: absolute;
  width: 8rem;
  height: 8rem;
  opacity: 0.2;
}

.corner-decoration.top-left {
  top: 0;
  left: 0;
  background: radial-gradient(circle at top left, #c26e60, transparent);
}

.corner-decoration.bottom-right {
  bottom: 0;
  right: 0;
  background: radial-gradient(circle at bottom right, #c26e60, transparent);
}

.together-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(194, 110, 96, 0.2);
  border-radius: 9999px;
}

.together-badge svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #c26e60;
}

.together-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #c26e60;
}

.together-title {
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff5f5;
  margin-bottom: 2rem;
}

.together-intro {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 245, 245, 0.9);
  margin-bottom: 2rem;
}

.together-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.together-card {
  padding: 1.5rem;
  background: rgba(194, 110, 96, 0.15);
  border-radius: 1rem;
}

.together-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c26e60;
  margin-bottom: 0.75rem;
}

.together-card p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 245, 245, 0.8);
}

.together-conclusion {
  display: inline-block;
  padding: 1.5rem;
  background: rgba(194, 110, 96, 0.2);
  border-radius: 1rem;
}

.together-conclusion p {
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fff5f5;
}

/* ======================
   TESTIMONIALS SECTION
   ====================== */
.testimonials-section {
  padding: 6rem 0 8rem;
  background-color: #fffaf7;
}

/* --- ESTILOS DO CARROSSEL DE VÍDEOS --- */
.carousel-container {
  position: relative;
  /* Largura máxima para mobile (formato shorts) */
  max-width: 375px; 
  margin: 3rem auto 0;
  transition: max-width 0.3s ease;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(45, 41, 38, 0.15);
  border: 1px solid rgba(194, 110, 96, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
 /* No mobile, ocupa 100% */
  flex: 0 0 100%;
  min-width: 100%;
  transition: flex-basis 0.3s ease;
}

.video-embed-container {
  position: relative;
  width: 100%;
  /* Proporção 9:16 (Vertical/Shorts) para mobile */
  padding-top: 177.77%; /* (16 / 9 * 100) */
  transition: padding-top 0.3s ease;
}

.video-embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #c26e60;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #c26e60;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 1;
  pointer-events: all;
}

.carousel-arrow:hover {
  background: #c26e60;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Ajuste das setas para mobile */
.carousel-arrow.prev { left: 0.5rem; }
.carousel-arrow.next { right: 0.5rem; }

.carousel-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(194, 110, 96, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #c26e60;
  transform: scale(1.2);
}

/* Ajuste das setas em telas menores */
@media (min-width: 900px) {
 /* Ajuste das setas para desktop */
  .carousel-arrow.prev { left: -1.5rem; }
  .carousel-arrow.next { right: -1.5rem; }
  
  .carousel-container {
    /* Largura maior para desktop */
    max-width: 800px; 
  }

  .carousel-slide {
    /* Mostra 3 slides */
    flex-basis: calc(100% / 3);
  }

  .video-embed-container {
    /* Proporção 16:9 (Horizontal) para desktop */
    padding-top: 56.25%; /* (9 / 16 * 100) */
  }
}
/* --- FIM DOS ESTILOS DO CARROSSEL --- */


/* ======================
   CTA SECTION
   ====================== */
.cta-section {
  position: relative;
  padding: 8rem 0 10rem;
  overflow: hidden;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d2926, #c26e60, #2d2926);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h40v40H0z" fill="none"/><path d="M0 20h40M20 0v40" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
  opacity: 0.1;
}

.cta-content {
  position: relative;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
}

.pulse-dot-white {
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: white;
}

.pulse-dot-white::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: white;
  animation: ping 1.5s ease-out infinite;
}

.cta-badge span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.cta-title {
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 2rem;
}

.cta-description {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.cta-button-wrapper {
  margin-bottom: 4rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item svg {
  width: 1.5rem;
  height: 1.5rem;
}

.trust-item span {
  font-weight: 600;
}

/* ======================
   FAQ SECTION
   ====================== */
.faq-section {
  padding: 6rem 0 8rem;
  background-color: #fffaf7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56rem;
  margin: 4rem auto 0;
}

.faq-item {
  padding: 1.5rem;
  background: rgba(194, 110, 96, 0.05);
  border: 1px solid rgba(194, 110, 96, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  background: rgba(194, 110, 96, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d2926;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 1.5rem;
  color: #c26e60;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-item p {
  margin-top: 1rem;
  padding-left: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(45, 41, 38, 0.7);
}

/* ======================
   FOOTER
   ====================== */
.footer {
  padding: 4rem 0;
  background-color: #2d2926;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-logo img {
  height: 5rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-text {
  font-size: 0.875rem;
  color: rgba(255, 245, 245, 0.8);
}

.footer-subtext {
  font-size: 0.75rem;
  color: rgba(255, 245, 245, 0.6);
}

/* ======================
   ANIMATIONS
   ====================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */

/* --- ESTILOS PARA TEXTO DE BOTÃO MOBILE --- */
.btn-text-mobile {
  display: none;
}
/* --- FIM DOS ESTILOS DE BOTÃO --- */



@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0 4rem;
  }

  .target-section,
  .benefits-section,
  .mentors-section,
  .testimonials-section {
    padding: 4rem 0 5rem;
  }

  .cta-section {
    padding: 5rem 0 6rem;
  }

  .faq-section {
    padding: 4rem 0 5rem;
  }

  .together-section {
    padding: 2rem 1.5rem;
  }
  
  /* --- ESTILOS PARA TEXTO DE BOTÃO MOBILE --- */
  .btn-text-desktop {
    display: none;
  }
  .btn-text-mobile {
    display: inline;
  }

  /* Reduz o padding e fonte dos botões no mobile */
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .btn-cta {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
  /* --- FIM DOS ESTILOS DE BOTÃO --- */
}

/* ======================
   CUSTOM SCROLLBAR
   ====================== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(194, 110, 96, 0.1);
}

::-webkit-scrollbar-thumb {
  background: #c26e60;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2d2926;
}


/* Animação para entrar da direita */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animação para encolher o resto do nome */
@keyframes shrinkToInitial {
    0%, 60% { /* Fica com o nome completo por 60% do tempo (60% de 2.5s = 1.5s) */
        max-width: 100px; /* Largura máxima (maior que o nome) */
        opacity: 1;
    }
    100% { /* No final, encolhe e desaparece */
        max-width: 0;
        opacity: 0;
    }
}


@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title,
  .hero-description {
    text-align: left;
  }

  .logo-container {
    justify-content: flex-start;
  }

  .cta-container {
    justify-content: flex-start;
  }

  .social-proof {
    justify-content: flex-start;
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bento-card.span-2 {
    grid-column: span 2;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mentors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .together-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
 /* --- ESTILOS DE AVATAR PARA DESKTOP --- */

  .social-proof {
    justify-content: flex-start;
  }


}


/* --- FIM DOS ESTILOS DOS AVATARES --- */



/*Teste video*/
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.video-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, #c26e60, #2d2926);
  border-radius: 1.5rem;
  filter: blur(40px);
  opacity: 0.2;
  animation: pulse 2s ease-in-out infinite;
}

.video-container {
  position: relative;
  width: 600px;
  height: 700px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(45, 41, 38, 0.3);
  border: 1px solid rgba(194, 110, 96, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Proporção original: 937/703 = 1.333 */
  /* Para preencher 600x700, calculamos o tamanho necessário */
  width: 978px; /* (700 * 937) / 703 */
  height: 700px;
  transform: translate(-50%, -50%);
  border: none;
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0 4rem;
  }

  .target-section,
  .benefits-section,
  .mentors-section,
  .testimonials-section {
    padding: 4rem 0 5rem;
  }

  .cta-section {
    padding: 5rem 0 6rem;
  }

  .faq-section {
    padding: 4rem 0 5rem;
  }

  .together-section {
    padding: 2rem 1.5rem;
  }
  
  /* --- ESTILOS PARA TEXTO DE BOTÃO MOBILE --- */
  .btn-text-desktop {
    display: none;
  }
  .btn-text-mobile {
    display: inline;
  }

  /* Reduz o padding e fonte dos botões no mobile */
  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
  .btn-cta {
    padding: 1.25rem 2rem;
    font-size: 1rem;
  }
  /* --- FIM DOS ESTILOS DE BOTÃO --- */
  
  /* Ajuste do vídeo para mobile */
  .video-wrapper {
    max-width: 100%;
  }
  
  .video-container {
    width: calc(100vw - 3rem);
    max-width: 400px;
    height: calc((100vw - 3rem) * 1.167);
    max-height: 467px;
    margin: 0 auto;
  }
  
  .video-container iframe {
    width: calc((100vw - 3rem) * 1.555);
    max-width: 622px;
    height: calc((100vw - 3rem) * 1.167);
    max-height: 467px;
  }
}

/*Teste Depoimentos*/

/* ======================
   TESTIMONIALS SECTION - CARROSSEL
   ====================== */

.testimonials-section {
  padding: 6rem 0 8rem;
  background-color: #fffaf7;
}

/* --- ESTILOS DO CARROSSEL DE VÍDEOS --- */
.carousel-container {
  position: relative;
  /* Largura máxima para mobile (formato vertical) */
  max-width: 100%;
  width: calc(100vw - 3rem);
  max-width: 400px;
  margin: 3rem auto 0;
  transition: all 0.3s ease;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(45, 41, 38, 0.15);
  border: 1px solid rgba(194, 110, 96, 0.2);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  /* No mobile, ocupa 100% */
  flex: 0 0 100%;
  min-width: 100%;
  transition: flex-basis 0.3s ease;
}

.video-embed-container {
  position: relative;
  width: 100%;
  /* Proporção 3:4 (Vertical) para mobile - mesmo do vídeo hero */
  padding-top: 133.33%; /* (4 / 3 * 100) */
  overflow: hidden;
  transition: padding-top 0.3s ease;
}

.video-embed-container iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Vídeo ampliado para zoom centralizado no mobile */
  width: calc((100vw - 3rem) * 1.7);
  max-width: 533px;
  height: calc((100vw - 3rem) * 1.33);
  max-height: 533px;
  transform: translate(-50%, -50%);
  border: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid #c26e60;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #c26e60;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  opacity: 1;
  pointer-events: all;
}

.carousel-arrow:hover {
  background: #c26e60;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Ajuste das setas para mobile */
.carousel-arrow.prev { left: 0.5rem; }
.carousel-arrow.next { right: 0.5rem; }

.carousel-arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(194, 110, 96, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #c26e60;
  transform: scale(1.2);
}


/* ======================
   RESPONSIVE - DESKTOP
   ====================== */

/* Desktop - 3 vídeos lado a lado no carrossel */
@media (min-width: 900px) {
  .carousel-arrow.prev { left: -1.5rem; }
  .carousel-arrow.next { right: -1.5rem; }
  
  .carousel-container {
    /* Largura para comportar 3 vídeos */
    max-width: 1200px;
    width: 100%;
  }

  .carousel-slide {
    /* Mostra 3 slides por vez */
    flex: 0 0 calc(100% / 3);
    min-width: calc(100% / 3);
    padding: 0 0.5rem;
  }

  .video-embed-container {
    /* Proporção 3:4 para desktop também */
    padding-top: 133.33%; /* (4 / 3 * 100) */
  }
  
  .video-embed-container iframe {
    /* Vídeo ampliado com zoom centralizado no desktop */
    width: 150%; /* Amplia o vídeo */
    height: 150%;
    max-width: none;
    max-height: none;
  }
}
/* --- FIM DOS ESTILOS DO CARROSSEL --- */


/*Legenda youtube*/

.ytp-title-link {
   display: none !important;
}