/* =============================================
   MENTORIA VETOR - Landing Page
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0D47A1;
  --primary-dark: #082E6A;
  --primary-light: #1565C0;
  --accent: #FFD600;
  --accent-dark: #F9A825;
  --dark: #0A0E17;
  --dark-light: #121926;
  --gray-900: #1A1F2E;
  --gray-800: #252B3B;
  --gray-700: #333A4D;
  --gray-400: #8892A4;
  --gray-300: #A4ADBD;
  --white: #FFFFFF;
  --danger: #EF4444;
  --success: #22C55E;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: clamp(2rem, 5vw, 2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-danger { color: var(--danger); }
.text-white { color: var(--white); }

.highlight-text {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 214, 0, 0.45);
}

.btn-lg {
  padding: 1.1rem 3rem;
  font-size: 1.1rem;
}

.btn-full {
  width: 100%;
}

.pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3); }
  50% { box-shadow: 0 4px 35px rgba(255, 214, 0, 0.55); }
}

/* --- SECTIONS --- */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--dark-light);
}

.section-accent {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

/* --- PERFORMAR SECTION --- */
.section-performar {
  position: relative;
  overflow: hidden;
}

.section-performar-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.section-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark), var(--gray-900));
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 14, 23, 0.95) 0%,
    rgba(10, 14, 23, 0.85) 35%,
    rgba(10, 14, 23, 0.5) 65%,
    rgba(10, 14, 23, 0.2) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 4rem 0;
  min-height: 70vh;
}

.hero-left {
  text-align: left;
  max-width: 580px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 214, 0, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 50px;
  border: 1px solid rgba(255, 214, 0, 0.25);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--white);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--gray-400);
  font-style: italic;
}

/* --- SECTION DIVIDER --- */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gray-700), transparent);
}

/* --- SECTION FULLBG (problema / secao com imagem de fundo) --- */
.section-fullbg {
  position: relative;
  overflow: hidden;
}

.section-fullbg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
}

.section-fullbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 14, 23, 0.95) 0%,
    rgba(10, 14, 23, 0.88) 40%,
    rgba(10, 14, 23, 0.5) 70%,
    rgba(10, 14, 23, 0.15) 100%
  );
}

.section-fullbg-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.section-fullbg-text {
  max-width: 580px;
  margin-left: auto;
}

.section-fullbg-text p {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.section-fullbg-text strong {
  color: var(--white);
}

.section-fullbg-text .btn {
  margin-top: 1.5rem;
}

/* --- VIDEO SECTION --- */
.section-video {
  position: relative;
  overflow: hidden;
}

.section-video-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.section-video-overlay {
  display: none;
}

.section-video-inner {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.video-wrapper {
  max-width: 750px;
  margin: 2rem auto 0;
}

#video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

#video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#start-overlay,
#pause-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: opacity 0.4s ease;
}

#playing-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

#start-overlay img,
#pause-overlay img {
  width: 55%;
  max-width: 420px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

#start-overlay:hover img,
#pause-overlay:hover img {
  transform: scale(1.06);
}

/* --- BENEFITS GRID (FLIP CARDS) --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.benefits-grid.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flip-card {
  perspective: 1000px;
  height: 200px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.flip-card-front {
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
}

.flip-card-back {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border: 1px solid var(--accent);
  transform: rotateY(180deg);
}

.flip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  color: var(--accent);
}

.flip-icon svg {
  width: 100%;
  height: 100%;
}

.flip-card-front h3 {
  font-size: 1.15rem;
}

.flip-card-back p {
  color: var(--dark);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

/* --- TRANSFORM GRID --- */
.transform-grid {
  max-width: 750px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.transform-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--dark-light);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.transform-item:hover {
  border-color: var(--accent);
  transform: translateX(6px);
}

.transform-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.5;
  min-width: 45px;
  line-height: 1;
}

.transform-item h3 {
  margin-bottom: 0.3rem;
}

.transform-item p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* --- TWO COLS (para quem e / nao e) --- */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.check-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--gray-300);
  font-size: 0.95rem;
  line-height: 1.5;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1.1rem;
  font-weight: 700;
}

.check-list-no li::before {
  content: '\2717';
  color: var(--danger);
}

.check-list-yes li::before {
  content: '\2713';
  color: var(--success);
}

/* --- PERFIL ROW (para quem é / nao é) --- */
.perfil-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
  background: linear-gradient(145deg, rgba(13, 17, 30, 0.95), rgba(10, 14, 23, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.perfil-row-reverse {
  flex-direction: row-reverse;
}

.perfil-foto {
  flex: 0 0 280px;
}

.perfil-foto img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.perfil-info {
  flex: 1;
}

.perfil-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.perfil-subtexto {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.perfil-destaque {
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
}

/* --- STEPS GRID --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--dark-light);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.step-num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  position: relative;
}

.step-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  position: relative;
}

/* --- METHOD GRID (PERFORMAR) --- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.method-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.method-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.method-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--dark);
  font-size: 1.3rem;
  font-weight: 900;
  border-radius: var(--radius-sm);
  margin-bottom: 0.8rem;
}

.method-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.method-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* --- DEPOIMENTOS --- */
.depoimentos-carousel {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
}

.carousel-track-wrapper {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}

.depoimento-card {
  flex: 0 0 calc(33.333% - 0.67rem);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-800);
}

.depoimento-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.carousel-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.depoimentos-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.depoimento-video {
  border-radius: var(--radius);
  overflow: hidden;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--gray-400);
}

.video-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.video-placeholder span {
  font-size: 0.85rem;
}

/* --- CTA SECTION --- */
.section-cta h2 {
  max-width: 750px;
  margin: 0 auto 1rem;
}

.section-cta p {
  color: var(--gray-400);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* --- MENTOR --- */
.mentor-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.mentor-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-900);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-700);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--gray-400);
}

.mentor-photo-placeholder svg {
  width: 60px;
  height: 60px;
}

.mentor-photo-placeholder span {
  font-size: 0.85rem;
}

.mentor-info .hero-badge {
  margin-bottom: 1rem;
}

.mentor-info h2 {
  font-size: 2rem;
}

.mentor-info p {
  color: var(--gray-300);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.mentor-info strong {
  color: var(--white);
}

/* --- FORM --- */
.form-wrapper {
  max-width: 550px;
  margin: 0 auto;
  background: var(--gray-900);
  border: 1px solid var(--gray-800);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
}

.form-wrapper h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.form-wrapper > p {
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--dark);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-300, #cbd5e1);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.2rem;
  background: var(--dark);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  transition: var(--transition);
  resize: vertical;
}

.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-group select {
  color: var(--gray-400);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238892A4' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color-scheme: dark;
}

.form-group select option {
  background: #0A0E17;
  color: #ffffff;
}

.form-group select option:disabled {
  background: #0A0E17;
  color: #8892A4;
}

.form-group select option:checked,
.form-group select option:hover {
  background: #1a2235;
  color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.1);
}

.form-tel-group {
  display: flex;
  gap: 0.5rem;
}
.form-tel-group .ddi-select {
  width: 100px;
  flex-shrink: 0;
  padding-right: 1.5rem;
  background-position: right 0.4rem center;
  color: var(--white);
}
.form-tel-group input[type="tel"] {
  flex: 1;
}

.form-disclaimer {
  text-align: center;
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-top: 1rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
}

.form-success svg {
  width: 60px;
  height: 60px;
  color: var(--success);
  margin: 0 auto 1rem;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  color: var(--gray-400);
}

/* --- POPUP FORM --- */
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.popup-modal {
  background: var(--gray-900);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.popup-close {
  position: absolute;
  top: 0.75rem; right: 1rem;
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}
.popup-close:hover { color: var(--white); }

/* --- FOOTER --- */
.footer {
  padding: 2.5rem 0;
  background: var(--dark);
  border-top: 1px solid var(--gray-800);
}

.footer-brand {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.footer p {
  color: var(--gray-400);
  font-size: 0.85rem;
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =============================================
   GARANTIA
   ============================================= */
.section-garantia {
  padding: 5rem 0;
}

.garantia-card {
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.garantia-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.5rem;
}

.garantia-days {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
}

.garantia-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: inherit;
  opacity: 0.9;
}

.garantia-stars {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-top: 2px;
}

.garantia-badge-img {
  max-width: 160px;
  max-height: 160px;
  object-fit: contain;
}

.garantia-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.garantia-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .garantia-card {
    padding: 2.5rem 1.5rem;
  }
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .benefits-grid,
  .benefits-grid.grid-4,
  .steps-grid,
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentor-wrapper {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }

  .depoimento-card {
    flex: 0 0 calc(50% - 0.5rem);
  }

  .depoimentos-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 14, 23, 0.9) 0%,
      rgba(10, 14, 23, 0.75) 50%,
      rgba(10, 14, 23, 0.6) 100%
    );
  }

  .hero-left {
    text-align: center;
    max-width: 100%;
  }

  .hero h1 {
    text-align: center;
  }

  .hero-left .btn {
    display: block;
    text-align: center;
  }

  .hero-note {
    text-align: center;
  }

  .hero-bg {
    background-position: center center;
  }

  .section-fullbg-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 14, 23, 0.92) 0%,
      rgba(10, 14, 23, 0.8) 50%,
      rgba(10, 14, 23, 0.65) 100%
    );
  }

  .section-fullbg-text {
    max-width: 100%;
    text-align: center;
  }

  .section-fullbg-inner {
    padding: 3.5rem 0;
  }

  .flip-card {
    height: 180px;
  }

  .benefits-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .two-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .depoimento-card {
    flex: 0 0 calc(100% - 0rem);
  }

  .depoimentos-videos {
    grid-template-columns: 1fr;
  }

  .perfil-row,
  .perfil-row-reverse {
    flex-direction: column;
    text-align: center;
  }

  .perfil-foto {
    flex: 0 0 auto;
    max-width: 220px;
    margin: 0 auto;
  }

  .perfil-info {
    text-align: left;
  }

  .mentor-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mentor-photo-placeholder {
    max-width: 250px;
    margin: 0 auto;
  }

  .mentor-info .hero-badge {
    margin: 0 auto 1rem;
  }

  .form-wrapper {
    padding: 2rem 1.5rem;
  }

  .btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .container {
    padding: 0 1rem;
  }

  .form-wrapper {
    padding: 1.5rem 1.2rem;
  }
}
