/* Start custom CSS */<style>

/* RESET */
*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

/* VARIÁVEIS */
:root{
  --cream:#FAF7F2;
  --beige:#F0EAE0;
  --beige-mid:#E2D8C8;
  --sand:#C9BAA0;
  --forest:#2D4A3E;
  --forest-light:#3D6456;
  --forest-pale:#EDF2EF;
  --bark:#7A6251;
  --bark-light:#A08672;
  --charcoal:#2C2C2A;
  --stone:#6B6560;
  --stone-light:#9C958E;
  --white:#FFFFFF;

  --shadow-soft:0 4px 24px rgba(45,74,62,0.08);
  --shadow-card:0 2px 16px rgba(45,74,62,0.06);

  --radius-sm:8px;
  --radius-md:14px;
  --radius-lg:22px;
  --radius-xl:32px;
}

/* BODY */
body{
  background:var(--cream);
  color:var(--charcoal);
  font-family:Arial,sans-serif;
  line-height:1.7;
  overflow-x:hidden;
}

/* CONTAINER */
.container{
  width:100%;
  max-width:1080px;
  margin:0 auto;
  padding:0 32px;
}

/* TITULOS */
.section-label{
  font-size:11px;
  font-weight:600;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--forest-light);
  margin-bottom:16px;
  display:block;
}

/* HERO */
.hero-section{
  background:linear-gradient(
    160deg,
    var(--white) 0%,
    var(--cream) 50%,
    var(--beige) 100%
  );
  padding:80px 0;
  position:relative;
  overflow:hidden;
}

.hero-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:72px;
  align-items:center;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--forest-pale);
  border:1px solid rgba(45,74,62,.15);
  border-radius:40px;
  padding:8px 16px;
  margin-bottom:28px;
}

.hero-badge svg{
  width:16px;
  height:16px;
  stroke:var(--forest);
}

.hero-badge span{
  font-size:13px;
  color:var(--forest);
}

.hero-headline{
  font-size:58px;
  line-height:1.1;
  font-weight:700;
  color:var(--charcoal);
  margin-bottom:24px;
}

.hero-headline em{
  color:var(--forest);
  font-style:italic;
}

.hero-sub{
  font-size:18px;
  line-height:1.8;
  color:var(--stone);
  margin-bottom:32px;
}

.hero-credential{
  display:flex;
  align-items:center;
  gap:12px;
  background:var(--white);
  border:1px solid var(--beige-mid);
  border-radius:var(--radius-md);
  padding:18px 20px;
  box-shadow:var(--shadow-card);
}

.hero-credential-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--forest);
  flex-shrink:0;
}

.hero-photo-wrap{
  position:relative;
  display:flex;
  justify-content:center;
}

.hero-photo-bg{
  position:absolute;
  bottom:0;
  width:340px;
  height:380px;
  background:var(--beige);
  border-radius:var(--radius-xl) var(--radius-xl) 0 0;
}

.hero-photo{
  position:relative;
  width:320px;
  height:430px;
  object-fit:cover;
  object-position:top center;
  border-radius:var(--radius-xl);
  z-index:2;
  box-shadow:var(--shadow-soft);
}

.hero-stat-bubble{
  position:absolute;
  background:var(--white);
  border-radius:var(--radius-md);
  padding:14px 18px;
  box-shadow:var(--shadow-soft);
  z-index:3;
}

.hero-stat-bubble.left{
  bottom:40px;
  left:-10px;
}

.hero-stat-bubble.top{
  top:40px;
  right:-10px;
}

.hero-stat-num{
  font-size:28px;
  font-weight:700;
  color:var(--forest);
}

.hero-stat-label{
  font-size:12px;
  color:var(--stone);
}

/* PAIN SECTION */
.pain-section{
  background:var(--charcoal);
  padding:96px 0;
}

.pain-headline{
  font-size:44px;
  line-height:1.2;
  color:var(--white);
  text-align:center;
  margin-bottom:20px;
}

.pain-headline em{
  color:var(--sand);
}

.pain-intro{
  color:var(--stone-light);
  text-align:center;
  max-width:700px;
  margin:0 auto 60px;
}

.pain-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.pain-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius-md);
  padding:28px;
}

.pain-card h3{
  color:var(--white);
  margin-bottom:10px;
}

.pain-card p{
  color:rgba(255,255,255,.7);
}

/* LEARN */
.learn-section{
  padding:96px 0;
  background:var(--beige);
}

.learn-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:20px;
}

.learn-card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:32px;
  position:relative;
  box-shadow:var(--shadow-card);
}

.learn-card-num{
  position:absolute;
  top:16px;
  right:20px;
  font-size:60px;
  opacity:.08;
  font-weight:700;
}

.learn-card h3{
  margin-bottom:12px;
}

/* EXPERT */
.expert-section{
  background:var(--white);
  padding:96px 0;
}

.expert-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.expert-photo{
  width:100%;
  border-radius:var(--radius-xl);
}

.expert-name{
  font-size:54px;
  margin-bottom:10px;
}

.expert-title{
  color:var(--forest);
  margin-bottom:20px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:13px;
}

.expert-bio{
  color:var(--stone);
  line-height:1.9;
}

/* TRANSFORM */
.transform-section{
  padding:96px 0;
  background:linear-gradient(
    160deg,
    var(--cream) 0%,
    var(--beige) 100%
  );
}

.transform-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
}

.transform-item{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:20px;
  margin-bottom:16px;
  box-shadow:var(--shadow-card);
}

/* CLOSING */
.closing-section{
  background:var(--forest);
  padding:96px 0;
  text-align:center;
}

.closing-headline{
  color:var(--white);
  font-size:52px;
  line-height:1.2;
  margin-bottom:24px;
}

.closing-headline em{
  color:var(--sand);
}

.closing-body{
  color:rgba(255,255,255,.75);
  max-width:700px;
  margin:0 auto;
  line-height:1.9;
}

/* FOOTER */
.footer-bar{
  background:#1C2B25;
  padding:24px 0;
  text-align:center;
}

.footer-bar p{
  color:rgba(255,255,255,.4);
  font-size:13px;
}

/* RESPONSIVO */
@media(max-width:768px){

.container{
  padding:0 20px;
}

.hero-inner,
.expert-inner,
.transform-inner{
  grid-template-columns:1fr;
}

.hero-headline{
  font-size:42px;
}

.pain-headline,
.closing-headline{
  font-size:36px;
}

.hero-photo{
  width:260px;
  height:340px;
}

.hero-stat-bubble.left{
  left:0;
}

.hero-stat-bubble.top{
  right:0;
}

}

</style>/* End custom CSS */