/* ============================================
   MENTORIA PEROLA - Landing Page
   Paleta: Dourado Pearl (#C9A96E), Marrom Escuro (#2E2A2B),
   Marrom Medio (#504941), Branco, Cinza Claro (#F5F5F5)
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2E2A2B;
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

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

ul {
  list-style: none;
}

/* === CUSTOM FONT === */
@font-face {
  font-family: 'Playfair Display';
  src: url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');
}

/* === VARIABLES === */
:root {
  --gold: #C9A96E;
  --gold-light: #D4BC8A;
  --gold-dark: #B8944F;
  --dark: #2E2A2B;
  --dark-medium: #504941;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --gray: #EBEBEB;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
}

/* === UTILITY === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-dark {
  background-color: var(--dark);
  color: var(--white);
}

.section-dark-medium {
  background-color: var(--dark-medium);
  color: var(--white);
}

.section-light {
  background-color: var(--light-gray);
  color: var(--dark);
}

.section-white {
  background-color: var(--white);
  color: var(--dark);
}

.text-gold {
  color: var(--gold);
}

.text-center {
  text-align: center;
}

/* === SHIMMER TEXT ANIMATION === */
.shimmer-text {
  background: linear-gradient(45deg, var(--gold), #FFFFFF, var(--gold), #FFFFFF);
  background-size: 400% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite;
}

@keyframes shimmer {
  0%   { background-position: 0 0; }
  100% { background-position: 100% 0; }
}

/* === GRADIENT BUTTON ANIMATION === */
@keyframes gradientSlide {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* === SECTION DIVIDER === */
.section-divider {
  width: 60%;
  max-width: 400px;
  height: 2px;
  margin: 0 auto;
  border: none;
}

.section-divider--light {
  background: linear-gradient(90deg, transparent, var(--white), transparent);
}

.section-divider--dark {
  background: linear-gradient(90deg, transparent, var(--dark), transparent);
}

.section-divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* === HEADER / NAV === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: background-color 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background-color: rgba(46, 42, 43, 0.97);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--white);
  letter-spacing: 4px;
  font-weight: 400;
}

.logo-text span {
  color: var(--gold);
}

.nav-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.nav-social a {
  color: var(--white);
  font-size: 18px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
}

.nav-social a:hover {
  color: var(--gold);
  background: rgba(201, 169, 110, 0.4);
}

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #1a1618 0%, #2E2A2B 30%, #3d3536 60%, #2E2A2B 100%);
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; top: 80%; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 60%; top: 30%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 70%; top: 70%; animation-delay: 3s; }
.particle:nth-child(7) { left: 80%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 90%; top: 20%; animation-delay: 4s; }
.particle:nth-child(9) { left: 40%; top: 10%; animation-delay: 3.5s; }
.particle:nth-child(10) { left: 15%; top: 85%; animation-delay: 1.2s; }

@keyframes float-particle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(1); }
  25% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translateY(-40px) scale(1.5); }
  75% { opacity: 0.5; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 24px;
  border-radius: 30px;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.5s;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.7s;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.9s;
}

/* === CTA BUTTON === */
.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 18px 60px;
  border: 2px solid var(--gold);
  color: var(--dark);
  background: linear-gradient(270deg, var(--gold), #FFFFFF, var(--gold));
  background-size: 300% 300%;
  animation: gradientSlide 5s ease infinite;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 2px;
  opacity: 0;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.4);
}

.hero .cta-btn {
  animation: fadeInUp 0.8s ease forwards 1.1s, gradientSlide 5s ease 1.1s infinite;
}

.cta-btn-dark {
  color: var(--white);
  background: transparent;
  border: 2px solid var(--gold);
  animation: none;
}

.cta-btn-dark:hover {
  background: var(--gold);
  color: var(--dark);
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* === STATS BAR === */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(201, 169, 110, 0.2);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 40px 20px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* === PAIN SECTION (Dores) === */
.pain-section {
  padding: 100px 20px;
}

.pain-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.pain-image {
  flex: 0 0 40%;
  position: relative;
}

.pain-image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.pain-image::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.pain-content {
  flex: 1;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 25px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.pain-list {
  margin: 30px 0;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
}

.pain-list li .icon {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* === SOLUTION SECTION === */
.solution-section {
  padding: 100px 20px;
  position: relative;
}

.solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.solution-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

.solution-header .section-title {
  color: var(--white);
}

.solution-header p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 15px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.solution-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.solution-card .card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
}

.solution-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

/* === TARGET AUDIENCE === */
.target-section {
  padding: 100px 20px;
}

.target-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.target-content {
  flex: 1;
}

.target-image {
  flex: 0 0 42%;
  position: relative;
}

.target-image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.target-list {
  margin: 30px 0 40px;
}

.target-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
}

.target-list li .icon {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* === PILARES (10 Pillars) === */
.pillars-section {
  padding: 100px 20px;
}

.pillars-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.pillars-header .section-title {
  color: var(--white);
}

.pillars-header p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  margin-top: 15px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

.pillar-card {
  text-align: center;
  padding: 30px 15px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  font-size: 26px;
}

.pillar-card h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === HOW IT WORKS === */
.how-section {
  padding: 100px 20px;
}

.how-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.how-card {
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--gray);
  transition: transform 0.3s, box-shadow 0.3s;
}

.how-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.how-card-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
}

.how-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}

.how-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* === MENTOR SECTION === */
.mentor-section {
  padding: 100px 20px;
  position: relative;
}

.mentor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mentor-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.mentor-image {
  flex: 0 0 38%;
  position: relative;
}

.mentor-image img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.mentor-image::before {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.mentor-content {
  flex: 1;
}

.mentor-content .section-title {
  color: var(--white);
}

.mentor-content p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.mentor-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.mentor-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  transition: all 0.3s;
}

.mentor-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* === TESTIMONIALS === */
.testimonials-section {
  padding: 100px 20px;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s;
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 25px;
  font-family: var(--font-heading);
  font-size: 60px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-role {
  font-size: 13px;
  color: #999;
}

/* === BONUS SECTION === */
.bonus-section {
  padding: 100px 20px;
  position: relative;
}

.bonus-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.bonus-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.bonus-header .section-title {
  color: var(--white);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.bonus-card {
  text-align: center;
  padding: 35px 25px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  transition: transform 0.3s, border-color 0.3s;
}

.bonus-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.bonus-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 18px;
}

.bonus-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.bonus-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* === CTA SECTION === */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 169, 110, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .section-title {
  color: var(--white);
  font-size: 44px;
  margin-bottom: 20px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-section .cta-btn {
  opacity: 1;
}

/* === FAQ SECTION === */
.faq-section {
  padding: 100px 20px;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  border-bottom: 1px solid var(--gray);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-toggle {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  background: var(--dark-medium);
  padding: 40px 20px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.2);
  color: var(--gold);
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-text a {
  color: var(--gold);
  transition: opacity 0.3s;
}

.footer-text a:hover {
  opacity: 0.8;
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
  animation: pulse-whatsapp 2s infinite;
}

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

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-description {
    font-size: 15px;
  }

  .cta-btn {
    padding: 16px 40px;
    font-size: 14px;
  }

  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 32px;
  }

  .pain-section .container,
  .target-section .container,
  .mentor-section .container {
    flex-direction: column;
  }

  .pain-image,
  .target-image,
  .mentor-image {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 30px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .cta-section .section-title {
    font-size: 32px;
  }

  .nav-social {
    display: none;
  }

  .logo-text {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .section-title {
    font-size: 26px;
  }

  .pillars-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 11px;
  }
}
