/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

h1, h2, h3, h4, h5, h6{
  text-transform: inherit;
}

:root {
  --gold: #c79159;
  --gold-light: #e6a766;
  --gold-dark: #b3875f;
  --cream: #faf8f4;
  --cream-dark: #f0ece4;
  --charcoal: #2a2a2a;
  --text: #3d3d3d;
  --text-light: #6b6b6b;
  --white: #ffffff;
  --black: #1a1a1a;
  --sage: #7a8b6f;
  --sage-light: #e8ede5;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --max-width: 1100px;
  --section-padding: clamp(60px, 10vw, 120px);
}

html { scroll-behavior: smooth; font-size: 16px; margin-top: 0px !important;}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  background: var(--white);
  -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: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ============================================
   STICKY NAV
   ============================================ */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
    border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.sticky-nav.visible { transform: translateY(0); }

.sticky-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px clamp(20px, 4vw, 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-nav-links {
  display: flex;
  gap: 28px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-nav-links a {
  color: var(--text-light);
  transition: color 0.3s;
}

.sticky-nav-links a:hover { color: var(--gold); }

.sticky-nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.sticky-nav-cta:hover { background: var(--gold-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(170deg, var(--cream) 0%, var(--white) 40%, var(--cream-dark) 100%);
  padding: clamp(100px, 15vw, 160px) 20px clamp(60px, 10vw, 120px);
  position: relative;
  overflow: hidden;
padding-top:20px;

}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(184,149,62,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(184,149,62,0.04) 0%, transparent 60%);
}

.hero-content { position: relative; z-index: 1; max-width: 800px; }

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold-light);
    padding: 8px 24px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  text-transform: inherit;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin: 0 auto 16px;
  line-height: 1.8;
}

.hero-qualifier {
  font-size: 0.85rem;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 40px;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-meta-item {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.hero-meta-item strong {
  display: block;
  font-size: 0.85rem;
  margin-top: 4px;
  font-weight: 500;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white) !important;
  padding: 18px 48px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184,149,62,0.25);
}

.btn-secondary {
  display: inline-block;
  color: var(--gold);
  padding: 16px 40px;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  border: 1px solid var(--gold-light);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: black;
}

.btn-note {
  display: block;
  margin-top: 0px;
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  font-family:'muliregular';
  font-size: 0.75rem;
	max-width: 250px;
    line-height: 1.1em;
font-weight: 600;
    opacity: 0.8;
}

.lead-magnet-form button {
    height: 38px;
    padding: 14px 28px;
}

.label, .label.primary {
    background: transparent !important;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
font-weight:400;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   QUALIFICATION / "PARA QUEM"
   ============================================ */
.qualification {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.qual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 60px;
}

.qual-card {
    padding: 40px;
    background: var(--cream);
    transition: all 0.3s;
    border-style: solid;
    border-width: 0px 0px 0px 2px;
    -moz-border-image: url(/images/bronze-foil-gold.jpg) 10 round;
    -webkit-border-image: url(/images/bronze-foil-gold.jpg) 10 round;
    -o-border-image: url(/images/bronze-foil-gold.jpg) 10 round;
    border-image: url(/images/bronze-foil-gold.jpg) 10 round;
}

.qual-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.qual-icon {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.qual-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.35;
}

.qual-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
color:#555555;
}

/* ============================================
   DIAGNOSIS / DORES
   ============================================ */
.diagnosis {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
  color: var(--white);
}

.diagnosis .section-label { color: var(--gold-light); }
.diagnosis .section-title { color: var(--white); }
.diagnosis .section-subtitle { color: rgba(255,255,255,1); }

.pain-list {
  margin-top: 50px;
  display: grid;
  gap: 0;
}

.pain-item {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
    font-size: 1rem;
    color: rgba(255, 255, 255, 1);
	font-family:'mulilight';
    line-height: 1.7;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    -moz-border-image: url(/images/highend/mhe_linha.png) 100 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 100 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 100 round;
    border-image: url(/images/highend/mhe_linha.png) 100 round;
}

.pain-item .number {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  font-weight: 300;
}

.diagnosis-conclusion {
    margin-top: 50px;
    padding: 40px;
    text-align: center;
    border-style: solid;
    border-width: 1px;
    -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
    border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.diagnosis-conclusion p {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold-light);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
}

/* ============================================
   PILLARS / 3 PILARES
   ============================================ */
.pillars {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.pillar-card {
  padding: 48px 36px;
  background: var(--white);
  text-align: center;
  transition: all 0.4s;
  border: 1px solid transparent;
}

.pillar-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   TRANSFORMATION
   ============================================ */
.transformation {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.transform-items {
  margin-top: 50px;
  display: grid;
  gap: 32px;
}

.transform-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}

.transform-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  border-style: solid;
  border-width: 1px;
  -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
  -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
  -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
  border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.transform-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.transform-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
color: #555555;
}

/* ============================================
   SOCIAL PROOF / FRASES DE CLIENTES
   ============================================ */
.client-quotes { 
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  text-align: center;
  position: relative;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.quote-card {
  padding: 40px 32px;
  background: var(--white);
  border-style: solid;
    border-width: 0px 0px 2px 0px;
    -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
    border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.quote-card blockquote {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 16px;
  border: none;
font-weight:500;
}

.quote-card cite {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  font-style: normal;
}

/* ============================================
   CREDIBILITY / ANA LEBEAR
   ============================================ */
.credibility {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cred-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}
.cred-photo {
  width: 100%;
  min-width: 0;
}

.cred-photo .gsm-ana3 {
  width: 100%;
  height: auto;
  display: block;
  max-width: none;
}


.cred-stats {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.cred-stat .label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
  overflow-wrap: break-word;
}

.cred-stat {
    min-width: 0;
    border-width: 1px 0px 0px 0px;
    border-style: solid;
    -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
    border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.cred-stat .number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 300;
}

.cred-stat .label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding) 0;
  background: var(--cream);
  position: relative;
}

.testimonials .triangulo2, .deliverables .triangulo2{
    top: -10%;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.testimonial-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.testimonial-result {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
}

.testimonial-name {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--charcoal);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   NOT ABOUT / O QUE NAO E
   ============================================ */
.not-about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.not-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 50px;
  align-items: start;
}

.not-list, .yes-list { display: grid; gap: 20px; }

.not-item, .yes-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.7;
}

.not-item .icon { color: rgba(180,80,80,0.6); font-size: 1.1rem; }
.yes-item .icon { color: var(--sage); font-size: 1.1rem; }

/* ============================================
   DELIVERABLES / O QUE VOCE VAI CRIAR
   ============================================ */
.deliverables {
  padding: var(--section-padding) 0;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}

.deliverables .section-label { color: var(--gold-light); }
.deliverables .section-title { color: var(--white); }

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.deliverable-card {
  padding: 40px;
  transition: all 0.3s;
  border-style: solid;
  border-width: 1px;
  -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
  -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
  -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
  border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.deliverable-card:hover {
  border-color: var(--gold-light);
  background: rgba(255,255,255,0.03);
}

.deliverable-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1;
}

.deliverable-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.deliverable-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ============================================
   COMPARISON BEFORE/AFTER
   ============================================ */
.comparison {
  padding: var(--section-padding) 0;
  background: var(--cream);
  position: relative;
}

.comparison .triangulo2, .comparison .triangulo3 {
    top: -10%;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 60px;
}

.comparison-col {
  padding: 48px 40px;
}

.comparison-col.before {
  background: rgba(0,0,0,0.03);
  border-right: 1px solid rgba(0,0,0,0.06);
}

.comparison-col.after {
  background: var(--white);
}

.comparison-col h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.comparison-col.before h3 { color: var(--text-light); }
.comparison-col.after h3 { color: var(--gold); }

.comparison-item {
  padding: 12px 0;
  font-size: 0.9rem;
  line-height: 1.7;
  display: flex;
  gap: 10px;
}

.comparison-col.before .comparison-item { color: var(--text-light); }
.comparison-col.after .comparison-item { color: var(--text); }

/* ============================================
   INCLUDES / RECAPITULANDO
   ============================================ */
.includes {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
}

.includes .triangulo2, .includes .triangulo3 {
    top: -10%;
}

.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.include-item {
  padding: 28px;
  display: flex;
  gap: 14px;
  align-items: start;
  transition: all 0.3s;
    border-width: 1px;
    border-style: solid;
    -moz-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -webkit-border-image: url(/images/highend/mhe_linha.png) 1 round;
    -o-border-image: url(/images/highend/mhe_linha.png) 1 round;
    border-image: url(/images/highend/mhe_linha.png) 1 round;
}

.include-item:hover { border-color: var(--gold-light); }

.include-item .check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.include-item span {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   PRICING CTA
   ============================================ */
.pricing-cta {
  padding: var(--section-padding) 0;
  background: linear-gradient(170deg, var(--charcoal) 0%, var(--black) 100%);
  text-align: center;
  color: var(--white);
}

.pricing-cta .section-title { color: var(--white); }

.price-note {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  max-width: 560px;
  margin: 20px auto 40px;
line-height: 1.5;
    font-weight: bold;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-buttons:hover {
  color: #ffffff;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.faq-list {
  max-width: 740px;
  margin: 50px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  font-family: 'muliregular';
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-family: 'muliregular';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   LEAD MAGNET / EXIT PATH
   ============================================ */
.lead-magnet {
  padding: 80px 0;
  background: var(--sage-light);
  text-align: center;
}

.lead-magnet-inner {
  max-width: 600px;
  margin: 0 auto;
}

.lead-magnet h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.lead-magnet p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.lead-magnet-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.lead-magnet-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
}

.lead-magnet-form input:focus { border-color: var(--gold); }
.lead-magnet-form input::placeholder { color: var(--text-light); }

.lead-magnet-form button {
  padding: 14px 28px;
  background: var(--sage);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.lead-magnet-form button:hover { background: #657a5b; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  background: var(--black);
  text-align: center;
}

.footer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}

.footer a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.footer a:hover { color: var(--gold-light); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .qual-grid,
  .pillars-grid,
  .quotes-grid,
  .cred-grid,
  .not-about-grid,
  .deliverables-grid,
  .comparison-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .includes-grid { grid-template-columns: 1fr 1fr; }
  .cred-stats { grid-template-columns: 1fr 1fr; }

  .sticky-nav-links { display: none; }

  .comparison-col.before { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }

  .triangulo1, .triangulo2, .triangulo3, .triangulo4, .triangulo5{
    display: none;
  }
}

@media (max-width: 600px) {
  .includes-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; gap: 16px; }
  .lead-magnet-form { flex-direction: column; }
  .cred-stats { grid-template-columns: 1fr; }
  .triangulo1, .triangulo2, .triangulo3, .triangulo4, .triangulo5{
    display: none;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.triangulo1 {
    position: absolute;
    left: 0;
    top: 0;
}

.triangulo3 {
    position: absolute;
    left: 0;
    top: -20%;
}

.triangulo2 {
    position: absolute;
    right: 0;
    top: -20%;
}

.triangulo5 {
    position: absolute;
    left: 0;
    top: 0%;
    width: 150px;
}

.triangulo4 {
    position: absolute;
    right: 0;
    top: 0%;
    width: 150px;
}

.mhe-logo {
    width: 250px;
    margin-bottom: 30px;
    display: -webkit-inline-box;
}

.aligncenter{
  text-align: center;
}