:root {
  --navy: #0A2C50;
  --black: #0A0A0A;
  --yellow: #E7E547;
  --light-bg: #F7FAF7;
  --cream: #FFFFED;
  --text-dark: #0A2C50;
  --text-light: #F7FAF7;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: var(--text-dark);
  background: #fff;
  line-height: 1.5;
}

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

h1, h2, h3 { font-family: 'Raleway', sans-serif; margin: 0 0 16px; }

.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  margin-top: 20px;
  box-shadow: 0 8px 20px rgba(10,44,80,0.25);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10,44,80,0.32);
}

/* HERO */
.hero { background: var(--black); color: var(--text-light); padding: 80px 0; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; }
.hero h1 { font-size: 42px; font-weight: 700; color: var(--text-light); line-height: 1.25; }
.hero h1 .highlight { color: var(--yellow); }
.hero p { font-size: 17px; color: var(--text-light); opacity: .9; }
.hero-note { font-size: 13px; opacity: .7; margin-top: 14px; max-width: 460px; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; display: block; }
.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, transparent 22%, transparent 78%, var(--black) 100%),
    linear-gradient(to bottom, var(--black) 0%, transparent 18%, transparent 82%, var(--black) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.7) 65%, var(--black) 100%);
  pointer-events: none;
}

/* VOCÊ SENTE QUE */
.feel-section { background: var(--navy); color: var(--text-light); padding: 60px 0; }
.feel-section h2 { font-size: 32px; text-align: center; color: var(--text-light); text-transform: uppercase; }
.feel-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 8px;
}
.feel-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 24px;
  font-size: 15px;
  text-align: center;
  transition: transform .2s ease, background .2s ease;
}
.feel-card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.1);
}
.feel-callout {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--yellow);
  max-width: 800px;
  margin: 0 auto;
}

/* PILARES */
.pillars-section {
  background: var(--navy);
  padding: 70px 0;
}
.pillars-title { text-align: center; font-size: 30px; font-weight: 700; max-width: 900px; margin: 0 auto 16px; color: var(--text-light); }
.pillars-intro { text-align: center; font-size: 16px; max-width: 720px; margin: 0 auto 40px; color: var(--text-light); opacity: .85; }
.pillars-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}
.pillar-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--yellow);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 12px;
}
.pillar-card h3 { font-size: 18px; font-weight: 700; }
.pillar-card p { font-size: 15px; margin: 0; }

/* QUEM É MARCELO */
.about-section { padding: 70px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: center; }
.about-img img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 16px 40px rgba(10,44,80,0.18); }
.about-text h2 { font-size: 32px; font-weight: 500; }
.about-text p { font-size: 16px; }

/* DEPOIMENTOS */
.testimonials-section { background: rgba(107,144,158,0.12); padding: 70px 0; }
.testimonials-section h2 { text-align: center; font-size: 30px; margin-bottom: 40px; }
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(10,44,80,0.08);
}
.testimonial-card p { font-style: italic; font-size: 15px; }
.testimonial-card strong { display: block; font-size: 15px; }
.testimonial-card span { font-size: 13px; color: #555; }
.testimonials-note { text-align: center; font-size: 13px; color: #888; margin-top: 24px; }

/* O QUE VOCÊ ENCONTRARÁ */
.benefits-section {
  background: linear-gradient(var(--cream) 53%, var(--light-bg) 100%);
  padding: 70px 0;
}
.benefits-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.benefits-text h2 { font-size: 30px; font-weight: 600; }
.benefits-intro { font-size: 16px; margin-bottom: 20px; }
.benefits-text ul { list-style: none; padding: 0; margin: 0 0 16px; }
.benefits-text li {
  font-size: 16px;
  padding: 10px 0 10px 28px;
  position: relative;
}
.benefits-text li::before {
  content: "✓";
  position: absolute; left: 0; top: 10px;
  color: var(--navy); font-weight: 700;
}
.benefits-img img { width: 100%; border-radius: 16px; display: block; box-shadow: 0 16px 40px rgba(10,44,80,0.15); }

/* CAROUSEL (generic) */
.carousel {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.carousel-track {
  display: flex;
}
.carousel-item {
  flex-shrink: 0;
  padding: 0 8px;
  box-sizing: border-box;
  display: flex;
}
.carousel-item > * { width: 100%; }
.carousel-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .15s ease;
}
.carousel-btn:hover { transform: scale(1.08); }
.feel-carousel .carousel-btn { color: var(--text-light); }
.feel-carousel .carousel-btn:hover { background: rgba(255,255,255,0.15); }
.testimonial-carousel .carousel-btn { color: var(--navy); }
.testimonial-carousel .carousel-btn:hover { background: rgba(10,44,80,0.08); }

.feel-card { height: 100%; }
.testimonial-card { height: 100%; }

/* PÁGINA INTERMEDIÁRIA */
.intermediate-section {
  background:
    radial-gradient(ellipse at center, rgba(165,195,194,0.12), transparent 60%),
    var(--black);
  color: var(--text-light);
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.intermediate-section .container {
  display: flex;
  justify-content: center;
}
.intermediate-card {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 56px 44px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.intermediate-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(231,229,71,0.35);
}
.intermediate-card h1 {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
}
.intermediate-card p {
  font-size: 16px;
  color: var(--navy);
  opacity: .8;
}
.intermediate-card .hero-note {
  max-width: 400px;
  margin: 22px auto 0;
  font-size: 13px;
  color: var(--navy);
  opacity: .55;
}
@media (max-width: 560px) {
  .intermediate-card { padding: 40px 26px; }
  .intermediate-card h1 { font-size: 25px; }
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1DA851;
  box-shadow: 0 8px 20px rgba(29,168,81,0.3);
}
.btn-whatsapp:hover {
  box-shadow: 0 12px 24px rgba(29,168,81,0.38);
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 999;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .benefits-grid { grid-template-columns: 1fr; }
  .about-img, .hero-img { order: -1; }
  .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero h1, .about-text h2 { font-size: 28px; }
  .carousel-btn { width: 32px; height: 32px; }
}
