@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --bg: #091a10;
  --bg-alt: #0d2215;
  --card-bg: #0f2a18;
  --card-bg-light: #132e1c;
  --foreground: #f0ede8;
  --foreground-muted: #9ca390;
  --accent: #f6b36b;
  --accent-dark: #d4883a;
  --accent-subtle: rgba(246,179,107,0.1);
  --primary: #2c7e58;
  --border: #1a3525;
  --font-heading: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 1rem;
  --shadow-card: 0 8px 32px rgba(0,0,0,0.3), 0 2px 8px rgba(0,0,0,0.2);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.25);
  --shadow-cta: 0 8px 24px rgba(246,179,107,0.25), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-cta-hover: 0 12px 36px rgba(246,179,107,0.35), 0 6px 16px rgba(0,0,0,0.35);
  --gradient-cta: linear-gradient(135deg, #fce0b2 0%, #f6b36b 50%, #d4883a 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

::selection {
  background: rgba(246,179,107,0.25);
  color: var(--foreground);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Utilities */
.section-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width:640px) { .section-container { padding: 0 2rem; } }
@media (min-width:1024px) { .section-container { padding: 0 2.5rem; } }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(246,179,107,0.7);
  margin-bottom: 1rem;
}

.divider-accent {
  width: 4rem;
  height: 4px;
  border-radius: 9999px;
  background: var(--gradient-cta);
  margin: 0 auto 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #fce0b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent-warm { color: var(--accent); }

/* Cards */
.card-premium {
  background: linear-gradient(150deg, var(--card-bg-light) 0%, var(--card-bg) 100%);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.card-premium::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246,179,107,0.2), transparent);
}
.card-premium:hover {
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(246,179,107,0.15);
  transform: translateY(-4px);
}

.highlight-card {
  background: linear-gradient(150deg, var(--card-bg-light) 0%, var(--card-bg) 100%);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(246,179,107,0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(246,179,107,0.12);
}
.highlight-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-cta);
}
@media (min-width:640px) { .highlight-card { padding: 3.5rem; } }

/* Badge */
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: rgba(246,179,107,0.12);
  color: var(--accent);
  border: 1px solid rgba(246,179,107,0.25);
  backdrop-filter: blur(8px);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 2.5rem;
  border-radius: 9999px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gradient-cta);
  color: #3d1f06;
  box-shadow: var(--shadow-cta);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: none;
  font-family: var(--font-heading);
}
.btn-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-cta-hover);
}
.btn-cta:hover::before { opacity: 1; }
.btn-cta:active { transform: translateY(-1px) scale(1.01); }

/* Radial glows */
.glow-subtle {
  position: absolute; inset: 0; pointer-events: none;
}
.glow-center { background: radial-gradient(ellipse at 50% 50%, rgba(246,179,107,0.05), transparent 50%); }
.glow-left { background: radial-gradient(ellipse at 30% 50%, rgba(44,126,88,0.15), transparent 60%); }
.glow-right { background: radial-gradient(ellipse at 70% 50%, rgba(44,126,88,0.15), transparent 60%); }
.glow-top { background: radial-gradient(ellipse at 50% 0%, rgba(44,126,88,0.2), transparent 60%); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width:640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width:768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 20px rgba(246,179,107,0.2), var(--shadow-cta); }
  50% { box-shadow: 0 0 40px rgba(246,179,107,0.4), var(--shadow-cta); }
}
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.pulse-glow { animation: pulseGlow 2s ease-in-out infinite; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(9,26,16,0.85);
}
.hero-gradient {
  position: absolute; inset: 0;
 background: linear-gradient(135deg, #092a1b00, transparent 50%, #5b2020); /*linear-gradient(to bottom, rgba(9,26,16,0.4), transparent 50%, var(--bg));*/
}
.hero-bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 8rem;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative; z-index: 10;
  padding: 5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
}
.hero p.sub {
  color: var(--foreground-muted);
  font-size: 1.125rem;
  max-width: 36rem;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  color: var(--foreground-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}
.hero-trust span { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== VIDEO ===== */
.video-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  padding: 4px;
  background: linear-gradient(150deg, var(--card-bg-light), var(--card-bg));
  box-shadow: var(--shadow-card), 0 0 60px rgba(246,179,107,0.12);
}
.video-wrapper .aspect-video {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: 0;
}

/* ===== INSTRUCTOR ===== */
.instructor-card {
  display: flex;
  flex-direction: column;
  max-width: 56rem;
  margin: 0 auto;
  overflow: hidden;
}
.instructor-card .img-wrap {
  position: relative;
  height: 16rem;
}
.instructor-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.instructor-card .img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--card-bg) 10%, transparent 60%);
}
.instructor-card .info {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width:768px) {
  .instructor-card { flex-direction: row; }
  .instructor-card .img-wrap { width: 40%; height: auto; }
  .instructor-card .img-overlay {
    background: linear-gradient(to right, transparent 20%, var(--card-bg) 100%);
  }
  .instructor-card .info { width: 60%; }
}
.instructor-card blockquote {
  border-left: 2px solid rgba(246,179,107,0.3);
  padding-left: 1rem;
  font-style: italic;
  color: rgba(246,179,107,0.75);
  font-size: 0.95rem;
}

/* ===== OFFER ===== */
.offer-price {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 4.5rem);
  font-weight: 800;
}
.offer-includes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  text-align: left;
  max-width: 28rem;
  margin: 0 auto 2.5rem;
}
@media (min-width:640px) { .offer-includes { grid-template-columns: 1fr 1fr; } }
.offer-includes .item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.offer-includes .check {
  width: 16px; height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.offer-includes span {
  color: var(--foreground-muted);
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ===== FAQ ===== */
.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 1.75rem;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--foreground);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question .chevron {
  width: 20px; height: 20px;
  transition: transform 0.3s;
  color: var(--foreground-muted);
  flex-shrink: 0;
}
.faq-item.open .faq-question .chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--foreground-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 1.75rem 1.5rem;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(13,34,21,1), rgba(60,20,20,0.4));
  padding: 2.5rem 0;
  text-align: center;
}
footer p { color: var(--foreground-muted); font-size: 0.875rem; }
footer a { color: var(--accent); opacity: 0.7; transition: opacity 0.3s; }
footer a:hover { opacity: 1; }

/* Guarantee icon */
.guarantee-icon {
  width: 5rem; height: 5rem;
  border-radius: 50%;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Icon containers */
.icon-box {
  width: 4rem; height: 4rem;
  border-radius: var(--radius);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.card-premium:hover .icon-box { background: rgba(246,179,107,0.2); }
.icon-box-sm {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.card-premium:hover .icon-box-sm { background: rgba(246,179,107,0.2); }

/* Pill number */
.pill-number {
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(246,179,107,0.1);
  user-select: none;
}

/* Section backgrounds */
.section-dark { background: linear-gradient(135deg, #092a1b, #411313); /*var(--bg);*/ }
.section-gradient { background: linear-gradient(170deg, rgba(13,34,21,1) 0%, var(--bg) 100%); }
.section-gradient-alt { background: linear-gradient(170deg, var(--bg) 0%, rgba(13,34,21,1) 100%); }

/* Star rating */
.stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.stars svg { width: 16px; height: 16px; fill: var(--accent); color: var(--accent); }

/* Testimonial avatar */
.avatar {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(246,179,107,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.875rem;
}

/* Bonus tag */
.bonus-tag {
  color: rgba(246,179,107,0.6);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Responsive text */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.py-section { padding: 6rem 0; }
@media (min-width:640px) { .py-section { padding: 7rem 0; } }

/* SVG icons inline */
svg { display: inline-block; vertical-align: middle; }

/* =======================
   MITOS
======================= */

.myths-section{
    position:relative;
}
.myths-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .myths-grid {
        grid-template-columns: 1fr;
    }
}
.myth-card{

    background:linear-gradient(150deg, var(--card-bg-light) 0%, var(--card-bg) 100%);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:2rem;

    transition:.35s ease;
}

.myth-card:hover{

    transform:translateY(-6px);

    border-color:rgba(214,169,92,.35);

    box-shadow:0 20px 50px rgba(0,0,0,.18);
}

.myth-icon{

    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:1.6rem;

    margin-bottom:1.3rem;

    background:rgba(214,169,92,.12);

    border:1px solid rgba(214,169,92,.2);
}

.myth-card h3{

    margin-bottom:.8rem;

    font-size:1.2rem;
	color:#f6b36b;
}

.myth-card p{

    color:var(--muted-foreground);

    line-height:1.7;
}

.journey-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
    margin-top:3rem;
}

.journey-card{
    position:relative;
    padding:2rem;
    border-radius:24px;

    background:rgba(255,255,255,.03);
    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;
    overflow:hidden;
}

.journey-card:hover{
    transform:translateY(-8px);
    border-color:rgba(246,179,107,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.journey-number{
    position:absolute;
    top:18px;
    right:18px;

    font-size:.9rem;
    font-weight:700;

    color:rgba(246,179,107,.9);
    background:rgba(246,179,107,.08);

    padding:8px 12px;
    border-radius:999px;
}

.journey-card .icon-box{
    width:68px;
    height:68px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    border-radius:18px;

    margin-bottom:1.5rem;

    background:rgba(246,179,107,.08);

    border:1px solid rgba(246,179,107,.18);
}

.journey-card h3{
    font-family:var(--font-heading);
    font-size:1.2rem;
    margin-bottom:.8rem;
    color:var(--foreground);
}

.journey-card p{
    color:var(--foreground-muted);
    line-height:1.7;
    font-size:.95rem;
}

@media(max-width:1000px){

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

}

@media(max-width:680px){

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

}