/* =============================================
   MENTORIA BISNETO — SALES PAGE
   Colors: Navy #10193e | Gold #e6b319 | Green #327064
   ============================================= */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a1a2e;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.center {
  text-align: center;
}

.light {
  color: #fff;
}

.gold {
  color: #e6b319;
}

.section-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #327064;
  margin-bottom: 12px;
}

.section-label.light {
  color: #e6b319;
}

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

h1, h2, h3 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
}

h2.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
  background: #e6b319;
  color: #10193e;
  border-radius: 6px;
}

.btn-sm:hover {
  background: #d4a017;
  transform: translateY(-1px);
}

.btn-gold {
  background: #e6b319;
  color: #10193e;
  font-size: 1.05rem;
  box-shadow: 0 4px 20px rgba(230, 179, 25, 0.35);
}

.btn-gold:hover {
  background: #d4a017;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(230, 179, 25, 0.45);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background: transparent;
  margin-top: 12px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

/* ---- HEADER ---- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(16, 25, 62, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0;
}

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

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.logo span {
  color: #e6b319;
}

.logo.light {
  color: #fff;
}

/* ---- HERO ---- */

.hero {
  background: linear-gradient(135deg, #10193e 0%, #1a2555 50%, #0d1230 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 179, 25, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
  color: #fff;
}

.badge {
  display: inline-block;
  background: rgba(230, 179, 25, 0.15);
  color: #e6b319;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(230, 179, 25, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hero-image {
  flex: 0 0 400px;
  position: relative;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

/* ---- PAIN / DOR ---- */

.pain {
  padding: 100px 0;
  background: #f8f9fa;
}

.pain h2 {
  text-align: center;
  margin-bottom: 48px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.pain-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.pain-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.pain-cta {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #327064;
}

/* ---- MENTOR ---- */

.mentor {
  padding: 100px 0;
  background: #fff;
}

.mentor-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.mentor-photo {
  flex: 0 0 360px;
}

.mentor-photo img {
  border-radius: 16px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.mentor-text {
  flex: 1;
}

.mentor-text h2 {
  font-size: 2.4rem;
  margin-bottom: 28px;
  color: #10193e;
}

.mentor-credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.mentor-credentials li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.credential-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(50, 112, 100, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mentor-credentials strong {
  display: block;
  font-size: 1.05rem;
  color: #10193e;
  margin-bottom: 2px;
}

.mentor-credentials p {
  font-size: 0.9rem;
  color: #666;
}

.mentor-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  border-left: 3px solid #e6b319;
  padding-left: 20px;
}

/* ---- INCLUDED ---- */

.included {
  padding: 100px 0;
  background: #f8f9fa;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.included-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px;
  border: 1px solid #e8e8e8;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.included-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #327064, #e6b319);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.included-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.included-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #10193e;
}

.included-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* ---- METHODOLOGY ---- */

.methodology {
  padding: 100px 0;
  background: linear-gradient(135deg, #10193e 0%, #1a2555 100%);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}

.method-step {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 36px 28px;
  transition: all 0.3s ease;
}

.method-step:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #e6b319;
  margin-bottom: 12px;
}

.method-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.method-step p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  padding: 100px 0;
  background: #fff;
}

.testimonial-featured {
  max-width: 700px;
  margin: 0 auto 40px;
}

.testimonial-card.featured {
  background: linear-gradient(135deg, #10193e 0%, #1a2555 100%);
  border: 2px solid #e6b319;
  color: #fff;
  position: relative;
  padding: 40px 32px;
}

.testimonial-card.featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.testimonial-card.featured .stars {
  color: #e6b319;
  font-size: 1.4rem;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: #e6b319;
  color: #10193e;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border-radius: 20px;
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.15);
}

.testimonial-card.featured .testimonial-author strong {
  color: #fff;
}

.testimonial-card.featured .testimonial-author span {
  color: #e6b319;
  font-weight: 600;
}

.author-avatar.featured {
  background: linear-gradient(135deg, #e6b319, #d4a017);
  color: #10193e;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #f8f9fa;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.stars {
  color: #e6b319;
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #e8e8e8;
  padding-top: 16px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #327064, #10193e);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #10193e;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #888;
}

/* ---- FOR WHO ---- */

.for-who {
  padding: 100px 0;
  background: #f8f9fa;
}

.for-who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.for-card {
  border-radius: 14px;
  padding: 40px 32px;
}

.for-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.for-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-card li {
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}

.for-card.yes {
  background: #fff;
  border: 2px solid #327064;
}

.for-card.yes h3 {
  color: #327064;
}

.for-card.yes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #327064;
  font-weight: 700;
  font-size: 1.1rem;
}

.for-card.no {
  background: #fff;
  border: 2px solid #c0392b;
}

.for-card.no h3 {
  color: #c0392b;
}

.for-card.no li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #c0392b;
  font-weight: 700;
  font-size: 1.1rem;
}

/* ---- PRICING ---- */

.pricing {
  padding: 100px 0;
  background: linear-gradient(135deg, #10193e 0%, #1a2555 100%);
}

.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #327064, #e6b319);
}

.price-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10193e, #1a2555);
  color: #e6b319;
  padding: 8px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.price-includes {
  text-align: left;
  margin-bottom: 32px;
}

.price-includes h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #10193e;
  margin-bottom: 16px;
}

.price-includes ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-includes li {
  font-size: 0.95rem;
  color: #444;
  padding-left: 28px;
  position: relative;
}

.price-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #327064;
  font-weight: 700;
}

.price-value {
  margin-bottom: 28px;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.price-installment {
  font-size: 1rem;
  color: #888;
  margin-bottom: 4px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #10193e;
  line-height: 1;
}

.price-amount span {
  font-size: 1.8rem;
}

.price-full {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #888;
}

.price-card .btn-gold {
  width: 100%;
  margin-bottom: 20px;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(50, 112, 100, 0.06);
  border-radius: 10px;
  padding: 16px;
}

.guarantee span {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.5;
}

/* ---- FAQ ---- */

.faq {
  padding: 100px 0;
  background: #fff;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #10193e;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}

.faq-item summary:hover {
  color: #327064;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #888;
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px 0;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */

.final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #10193e 0%, #1a2555 100%);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.final-cta-photo {
  flex: 0 0 380px;
}

.final-cta-photo img {
  border-radius: 16px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.final-cta-text {
  flex: 1;
  color: #fff;
}

.final-cta-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.final-cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ---- FOOTER ---- */

.footer {
  background: #0a0f28;
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand p {
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e6b319;
  color: #10193e;
}

.footer-copy {
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

/* ---- WHATSAPP FLOAT ---- */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-image {
    flex: none;
    width: 280px;
  }

  .hero-image img {
    height: 350px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .mentor-inner {
    flex-direction: column;
    text-align: center;
  }

  .mentor-photo {
    flex: none;
    width: 280px;
  }

  .mentor-photo img {
    height: 350px;
  }

  .mentor-credentials li {
    text-align: left;
  }

  .mentor-desc {
    text-align: left;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .final-cta-photo {
    flex: none;
    width: 280px;
  }

  .final-cta-photo img {
    height: 350px;
  }

  .for-who-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    padding: 36px 24px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 120px 0 60px;
  }

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

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

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

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

  .btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
  }

  .price-amount {
    font-size: 2.8rem;
  }
}
