/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: #fdfaf9;
  color: #4b3b35;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  background: white;
  z-index: 999;
  box-shadow: 0 2px 15px rgba(0,0,0,.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0;
}

.logo { height: 120px; width: auto; }

/* Menu — Poppins 500 */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #5b4338;
  transition: color .2s;
}
.menu a:hover { color: #ef9aa7; }

/* ===== BUTTONS — Poppins 600 ===== */
.btn-primary {
  display: inline-block;
  padding: 14px 26px;
  background: #e8788a;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: .3s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: #d96576;
  box-shadow: 0 6px 20px rgba(232,120,138,.35);
}

.btn-header {
  padding: 12px 24px;
  font-size: 14px;
}

.btn-cta-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  font-size: 17px;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(232,120,138,.4);
}

.btn-pricing {
  padding: 17px 38px;
  font-size: 17px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 90px;
  background: linear-gradient(160deg, #fff8f9 0%, #fdfaf8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}

.badge {
  display: inline-block;
  padding: 9px 18px;
  background: #ffe6eb;
  border-radius: 50px;
  color: #b76b77;
  font-family: 'Poppins', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 22px;
}

/* Título principal — Playfair Display 700 */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 58px;
  line-height: 1.18;
  margin-bottom: 18px;
  color: #3a2820;
}

.hero h1 .highlight { color: #e8788a; }

/* Parágrafo hero — Poppins 400 */
.hero-text > p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #6b5c56;
  margin-bottom: 22px;
  max-width: 480px;
}

/* Checks hero — Poppins 500 */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 20px 0 32px;
}

.hero-checks li {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #5b4338;
  display: flex;
  align-items: center;
  gap: 6px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #ffe6eb;
  border-radius: 50%;
  font-size: 10px;
  color: #e8788a;
  flex-shrink: 0;
}

/* Hero extra — Poppins 600 */
.hero-extra {
  display: flex;
  gap: 36px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-extra-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #4b3b35;
  line-height: 1.5;
}

.icon-hotmart {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

.icon-cloud-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  width: fit-content;
  margin: 0 auto;
}

.deco-left {
  position: absolute;
  left: -50px;
  top: 0%;
  width: 44px;
  opacity: .9;
  pointer-events: none;
  z-index: 2;
}

.deco-right {
  position: absolute;
  right: -50px;
  top: 5%;
  width: 44px;
  opacity: .9;
  pointer-events: none;
  z-index: 2;
}

/* Moldura do celular */
.hero-phone-frame {
  position: relative;
  background: #1a1a1a;
  border-radius: 42px;
  padding: 12px 10px;
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 30px 70px rgba(0,0,0,.25),
    inset 0 0 0 1px #000;
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 2;
}

.hero-phone-frame::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 100px;
  width: 4px;
  height: 50px;
  background: #2a2a2a;
  border-radius: 0 3px 3px 0;
}

.hero-phone {
  display: block;
  width: 260px;
  border-radius: 32px;
}

/* Price card */
.price-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: center;
  padding-top: 60px;
}

.price-card {
  background: white;
  padding: 22px 24px;
  border-radius: 20px;
  width: 210px;
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #6b5c56;
}

.hero-seta {
  width: 90px;
  margin-top: 14px;
  align-self: flex-start;
  margin-left: -15px;
  opacity: .9;
}

.price-card-label { font-size: 12px; font-weight: 400; color: #999; margin-bottom: 2px; }
.price-card-value { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 700; margin: 4px 0; }
.price-card-value.pink { color: #e8788a; }
.price-card-sub { font-size: 12px; color: #888; margin-bottom: 8px; }
.price-card hr { border: none; height: 1px; background: #f0e8e8; margin: 12px 0; }
.price-card-tip { font-size: 11.5px; color: #b76b77; margin-top: 8px; line-height: 1.4; }

/* ===== PROBLEMS ===== */
.problems {
  padding: 90px 0;
  background: #fdfaf9;
}

/* Título seção — Playfair Display 600 */
.problems h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin-bottom: 50px;
  color: #3a2820;
}
.problems h2 span { color: #e8788a; }

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,.05);
  transition: transform .2s;
  text-align: center;
}
.card:hover { transform: translateY(-4px); }

.card-icon {
  width: 58px;
  height: 58px;
  background: #fce8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.card-icon svg { width: 28px; height: 28px; }

/* Card títulos — Poppins 700 */
.card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 10px;
  color: #3a2820;
}
/* Card texto — Poppins 400 */
.card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b5c56;
  line-height: 1.6;
}

/* ===== DASHBOARD ===== */
.dashboard {
  padding: 90px 0;
  background: #fff8f9;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: center;
}

/* Eyebrow/título dashboard — Poppins 700 (texto corrido, não é título de seção) */
.section-eyebrow {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #3a2820;
  margin-bottom: 28px;
  line-height: 1.35;
}

.section-eyebrow span {
  color: #e8788a;
  font-style: normal;
}

.eyebrow-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
  color: #e8788a;
  display: inline-block;
}

.dashboard-title { display: none; }

/* Lista dashboard — Poppins 500 */
.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dashboard-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4b3b35;
}

.dash-icon {
  width: 36px;
  height: 36px;
  background: #fce8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-icon svg { width: 18px; height: 18px; }

.dashboard-image-area {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: visible;
}

.plant {
  position: absolute;
  right: -200px;
  top: -20px;
  width: 520px;
  z-index: 1;
}

@media (max-width: 1024px) {
  .plant { display: none; }
}

.tablet-frame {
  position: relative;
  background: #1a1a1a;
  border-radius: 22px;
  padding: 14px 12px;
  box-shadow:
    0 0 0 2px #3a3a3a,
    0 25px 60px rgba(0,0,0,.20),
    inset 0 0 0 1px #000;
  z-index: 2;
}

/* Câmera lateral do tablet */
.tablet-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
  width: 4px;
  height: 60px;
  background: #2a2a2a;
  border-radius: 0 3px 3px 0;
}

.tablet {
  display: block;
  width: 580px;
  border-radius: 12px;
}
.plant {
  position: absolute;
  right: -220px;
  top: 0;
  width: 576px;
  z-index: 1;
}

@media (max-width: 1100px) {
  .plant { right: -40px; width: 220px; }
}

@media (max-width: 1024px) {
  .plant { 
    right: auto;
    left: calc(100% - 60px); /* cola na borda direita do tablet */
    top: -20px;
    width: 160px; 
  }
}

@media (max-width: 768px) {
  .plant { 
    left: calc(100% - 50px);
    top: -15px;
    width: 120px; 
  }
}

@media (max-width: 480px) {
  .plant { 
    left: calc(100% - 40px);
    top: -10px;
    width: 90px; 
  }
}

/* ===== STEPS ===== */
.steps {
  padding: 90px 0;
  background: #fdfaf9;
}

.steps h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin-bottom: 55px;
  color: #3a2820;
}
.steps h2 span { color: #e8788a; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 0 10px;
  align-items: start;
  position: relative;
}

.steps-grid::before,
.steps-grid::after { display: none; }

.step-arrow {
  width: 100%;
  object-fit: contain;
  display: block;
  align-self: start;
  margin-top: 55px;
  mix-blend-mode: multiply;
}

.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

/* Wrapper do círculo com badge */
.step-circle-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Círculo rosa grande com ícone */
.step-circle {
  width: 110px;
  height: 110px;
  background: #fce8ec;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle svg {
  width: 52px;
  height: 52px;
}

.step-cupcake-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.step-cupcake-small {
  width: 70%;
  height: 70%;
  object-fit: contain;
  border-radius: 0;
}

/* Badge com número — canto superior esquerdo */
.step-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 28px;
  height: 28px;
  background: #e8788a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 13px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(232,120,138,.4);
}

.step h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
  color: #3a2820;
}

.step p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b5c56;
  line-height: 1.6;
}

/* ===== RESULTS ===== */
.results {
  padding: 90px 0;
  background: #fff8f9;
}

/* Título seção — Playfair Display 600 */
.results h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin-bottom: 50px;
  color: #3a2820;
}
.results h2 span { color: #e8788a; }

.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.result-card {
  padding: 36px 38px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: visible;
}

.result-card.profit { background: #eef9f2; }
.result-card.loss   { background: #fff0f1; }

.result-label {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #6b5c56;
  display: block;
  margin-bottom: 4px;
}

/* Valores resultado — Poppins 700 */
.result-value {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
  margin: 6px 0 4px;
}
.result-value.green { color: #2ba86b; }
.result-value.red   { color: #e8788a; }

.result-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b5c56;
}

.result-sub {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: #888;
}

.result-msg {
  margin-top: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #4b3b35;
}

.result-cupcake { width: 130px; flex-shrink: 0; object-fit: contain; }
.result-cupcake.sad { filter: grayscale(20%); }

/* ===== BENEFITS ===== */
.benefits {
  padding: 90px 0;
  background: #fdfaf9;
}

/* Título seção — Playfair Display 600 */
.benefits h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin-bottom: 50px;
  color: #3a2820;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.benefit-card {
  background: white;
  padding: 28px 22px;
  border-radius: 20px;
  box-shadow: 0 6px 22px rgba(0,0,0,.05);
  transition: transform .2s;
  text-align: center;
}
.benefit-card:hover { transform: translateY(-4px); }

.benefit-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}

.benefit-icon svg {
  width: 52px;
  height: 52px;
}

/* Benefit títulos — Poppins 700 */
.benefit-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: #3a2820;
}
/* Benefit texto — Poppins 400 */
.benefit-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #6b5c56;
  line-height: 1.55;
}

/* ===== PRICING ===== */
.pricing {
  padding: 90px 0;
  background: #fff8f9;
}

.pricing-wrap {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pricing-img-wrapper {
  position: relative;
  width: 260px;
  height: 340px;
}

.pricing-shape {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 296px;
  height: 376px;
  z-index: 0;
  
}

.pricing-img img {
  position: relative;
  z-index: 1;
  width: 260px;
  height: 340px;
  object-fit: cover;
  border-radius: 50px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  object-position: center 10%;
}


.pricing-center h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 32px;
  color: #3a2820;
  margin-bottom: 10px;
  text-align: left;
}
.pricing-center h2 span { color: #e8788a; }

.pricing-center > p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #6b5c56;
  margin-bottom: 10px;
}

.price-box {
  display: flex;
  align-items: flex-end;
  margin: 18px 0 8px;
  line-height: 1;
}

/* Preço — Poppins 700 */
.price-currency {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 12px;
  margin-right: 4px;
}
.price-number {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 86px;
  line-height: 1;
  color: #e8788a;
}
.price-period {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 14px;
  margin-left: 4px;
  color: #6b5c56;
}

.price-desc {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #6b5c56;
  margin-top: 6px;
}

/* Lista pricing — Poppins 400 */
.pricing-list { margin-bottom: 30px; }
.pricing-list li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-bottom: 16px;
  font-size: 16px;
  color: #4b3b35;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-pink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #ffe6eb;
  border-radius: 50%;
  font-size: 11px;
  color: #e8788a;
  flex-shrink: 0;
  margin-top: 2px;
}

.heart-outline {
  width: 16px;
  height: 16px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  flex-shrink: 0;
}

.cancel-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin-top: 14px;
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== LEAD ===== */
.lead-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

/* Título lead — Playfair Display 600 */
.lead-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 42px;
  margin-bottom: 12px;
  color: #3a2820;
}

.lead-section > .container > p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #6b5c56;
  margin-bottom: 32px;
}

.lead-form {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 700px;
  margin: auto;
}

.lead-form input {
  padding: 15px 18px;
  width: 260px;
  border: 1.5px solid #e8d0d4;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 15px;
  outline: none;
  transition: border .2s;
}
.lead-form input:focus { border-color: #e8788a; }

.lead-form button {
  padding: 15px 26px;
  background: #e8788a;
  border: none;
  border-radius: 12px;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: .3s;
}
.lead-form button:hover { background: #d96576; }

/* ===== FAQ ===== */
.faq {
  padding: 80px 0;
  background: #fdfaf9;
}

/* Título FAQ — Playfair Display 600 */
.faq h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 46px;
  text-align: center;
  margin-bottom: 45px;
  color: #3a2820;
}

.faq-item {
  max-width: 900px;
  margin: 0 auto 12px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid #f2e4e6;
}

/* FAQ pergunta — Poppins 600 */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #4b3b35;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: #fff5f6; }

.faq-question span {
  font-size: 22px;
  font-weight: 400;
  color: #e8788a;
  transition: transform .3s;
  flex-shrink: 0;
}

/* FAQ resposta — Poppins 400 */
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #6b5c56;
  line-height: 1.8;
  font-size: 15px;
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question span { transform: rotate(45deg); }

/* ===== FOOTER CTA BAR ===== */
.footer-cta-bar {
  background: linear-gradient(
    90deg,
    #F3A0A7 0%,
    #F8C2C8 100%
  );
  padding: 28px 0;
  color: white;
}

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

.footer-cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 240px;
}

.footer-cta-img {
  height: 90px;
  width: auto;
  flex-shrink: 0;
}

/* Footer CTA texto — Poppins 600/400 */
.footer-cta-left strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 3px;
  color: #3a2820;
}
.footer-cta-left p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #3a2820;
  opacity: .85;
}

.btn-footer-cta {
  background: #e8788a;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 15px;
  white-space: nowrap;
}

.footer-badges {
  display: flex;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #3a2820;
  opacity: .9;
}
.footer-badges span { display: flex; align-items: center; gap: 5px; }

/* ===== FOOTER ===== */
.footer {
  background: #3a2820;
  color: rgba(255,255,255,.7);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-logo { max-width: 200px; margin: 0 auto 16px; filter: brightness(10); opacity: .9; }

.footer p {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
}

/* ===== WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  right: 50px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  background: #25d366;
  color: white;
  font-size: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  z-index: 99999;
  transition: transform .2s;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ===== TABLET ===== */
@media (max-width: 1100px) {
  .plant { right: -40px; width: 180px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-grid { grid-template-columns: 1fr auto; }
  .price-card-wrap { display: none; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .dashboard-grid,
  .pricing-wrap { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-visual { justify-content: center; }
  .price-card-wrap { display: none; }
  .menu { display: none; }
  .dashboard-image-area { justify-content: center; }
  .plant { right: 0; width: 140px; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .pricing-img img { width: 140px; margin: 0 auto; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-left  { justify-content: center; }
}

@media (max-width: 768px) {
  .logo { height: 58px; }
  .hero { padding: 50px 0; }
  .hero h1 { font-size: 42px; }
  .problems h2, .steps h2, .results h2,
  .benefits h2, .faq h2, .lead-section h2 { font-size: 28px; }
  .pricing-left h2 { font-size: 28px; }
  .section-eyebrow { font-size: 18px; }
  .cards-4, .result-grid,
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow {
    transform: rotate(90deg);
    width: 80px;
    height: 80px;
    margin: 40px auto;
    display: block;
  }
  .steps-grid::before { display: none; }
  .result-card { flex-direction: column; text-align: center; }
  .result-cupcake { width: 100px; }
  .price-number { font-size: 68px; }
  .price-period { font-size: 22px; }
  .lead-form input { width: 100%; }
  .lead-form button { width: 100%; }
  .footer-badges { justify-content: center; }
  .whatsapp-float {
    right: 50px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 30px; }
  .price-box { flex-wrap: wrap; }
  .price-number { font-size: 58px; }
}
