/* ============================================
   Prof. Carolina Raiser — Reforço Escolar & Inglês Infantil
   ============================================ */

:root {
  --mint: #d1ffce;
  --mint-soft: #eafff0;
  --purple: #ba5cd4;
  --purple-dark: #7a3996;
  --purple-deep: #4a1d5c;
  --cream: #fff6df;
  --yellow: #ffd66b;
  --white: #ffffff;
  --text: #3a2946;
  --text-soft: #6b5a78;
  --shadow: 0 10px 30px rgba(122, 57, 150, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Nunito', 'Segoe UI', Verdana, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Trebuchet MS', 'Segoe UI', sans-serif;
  color: var(--purple-deep);
  line-height: 1.2;
  margin: 0 0 .5em;
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

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

.section {
  padding: 88px 0;
}

.section-alt {
  background: linear-gradient(180deg, var(--mint-soft), #fbfff9);
}

.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--purple);
  background: rgba(186, 92, 212, 0.1);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.section-lead {
  color: var(--text-soft);
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--purple);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(186, 92, 212, 0.35);
}

.btn-primary:hover { box-shadow: 0 16px 30px rgba(186, 92, 212, 0.45); }

.btn-secondary {
  background: var(--white);
  color: var(--purple-dark);
  border: 2px solid var(--purple);
}

.btn-ghost {
  background: rgba(255,255,255,0.18);
  color: var(--purple-deep);
  border: 2px solid var(--purple-deep);
}

/* ============ HEADER ============ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,57,150,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--purple-deep);
  white-space: nowrap;
}

.logo-badge {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-badge img { width: 100%; height: 100%; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 700;
  color: var(--text);
  font-size: .88rem;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--purple-dark); border-color: var(--purple); }

.nav-links-wa { display: none; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--purple-deep);
  cursor: pointer;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--mint) 0%, var(--mint-soft) 45%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(186,92,212,0.35), transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255,214,107,0.35), transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 80px 24px 60px;
  max-width: 1120px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--purple-dark);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  margin-bottom: 18px;
}

.hero h1 span { color: var(--purple); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.5rem;
  color: var(--purple-deep);
}

.hero-stat span {
  font-size: .85rem;
  color: var(--text-soft);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-frame {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1 / 1.05;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  background: linear-gradient(150deg, var(--purple), var(--purple-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  padding: 12px;
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  display: block;
}

.floaty {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 10px 16px;
  font-weight: 800;
  font-size: .85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floaty-1 { top: 6%; left: -6%; color: var(--purple-dark); }
.floaty-2 { bottom: 8%; right: -4%; color: #c98a00; }

/* ============ TRUST STRIP ============ */
.trust-strip {
  background: var(--purple-deep);
  color: var(--white);
  padding: 16px 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: .95rem;
}

.trust-strip .item { display: flex; align-items: center; gap: 8px; opacity: .95; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--mint), var(--cream));
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.pill {
  background: var(--mint-soft);
  color: var(--purple-dark);
  font-weight: 800;
  font-size: .85rem;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(186,92,212,0.25);
}
/* ============ SERVICES ============ */
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122,57,150,0.06);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(122, 57, 150, 0.18);
}

.service-card .icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-card.mint .icon-badge { background: var(--mint); }
.service-card.purple .icon-badge { background: var(--purple); }
.service-card.yellow .icon-badge { background: var(--yellow); }

.card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 20px;
  font-weight: 800;
  color: var(--purple);
  font-size: .95rem;
}

.service-card:hover .card-link { color: var(--purple-dark); }

.service-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-weight: 600;
}

.service-card li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 900;
  flex-shrink: 0;
}

/* ============ METHOD / STEPS ============ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: left;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h4 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--text-soft); margin: 0; }

/* ============ SPACE ============ */
.space-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.space-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.space-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.space-feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.space-feature h4 { font-size: 1.05rem; margin-bottom: 4px; }
.space-feature p { font-size: .9rem; color: var(--text-soft); margin: 0; }

.space-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
}

.space-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}


.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
  aspect-ratio: 3 / 4;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .35s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

/* ============ TESTIMONIALS ============ */
.testi-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow);
}

.rating-badge .score {
  font-family: 'Baloo 2', sans-serif;
  font-size: 2.2rem;
  color: var(--purple-deep);
  font-weight: 800;
}

.rating-badge .stars { color: var(--yellow); font-size: 1.1rem; letter-spacing: 2px; }
.rating-badge .count { font-size: .85rem; color: var(--text-soft); font-weight: 700; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--purple);
}

.testi-card .stars { color: var(--yellow); margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { color: var(--text); font-style: italic; margin-bottom: 18px; }
.testi-card .author { font-weight: 800; color: var(--purple-deep); font-size: .92rem; }
.testi-card .source { font-size: .78rem; color: var(--text-soft); }

/* ============ FAQ ============ */
.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid rgba(122,57,150,0.06);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--purple-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question .chevron { transition: transform .2s ease; color: var(--purple); flex-shrink: 0; }

.faq-item.open .chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 22px;
}

.faq-answer p { color: var(--text-soft); margin: 0; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--purple-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-card h3 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,0.8); }

.contact-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.contact-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.3);
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: .95rem; }
.contact-item span, .contact-item a { color: rgba(255,255,255,0.75); font-size: .9rem; }
.contact-item a:hover { color: var(--mint); }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: none;
  width: 100%;
  height: 100%;
  min-height: 340px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-row { margin-bottom: 18px; }

.form-row label {
  display: block;
  font-weight: 800;
  font-size: .85rem;
  color: var(--purple-deep);
  margin-bottom: 6px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 2px solid #ece0f2;
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  background: #fbfaff;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--purple);
}

.form-row textarea { resize: vertical; min-height: 90px; }

/* ============ FINAL CTA ============ */
.cta-band {
  background: linear-gradient(120deg, var(--purple), var(--purple-dark));
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
  border-radius: var(--radius-lg);
  margin: 0 24px;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 520px; margin: 0 auto 28px; }

.cta-band .btn-primary { background: var(--white); color: var(--purple-dark); box-shadow: 0 12px 24px rgba(0,0,0,0.15); }

/* ============ FOOTER ============ */
footer {
  background: #2c1338;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 24px;
  margin-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-card {
  display: inline-block;
  margin-bottom: 18px;
}

.footer-logo-card img { width: 240px; height: auto; display: block; }

footer h5 {
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  margin-bottom: 16px;
  font-size: 1rem;
}

footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
footer a:hover { color: var(--mint); }

.social-row { display: flex; gap: 12px; margin-top: 16px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-btn:hover { background: var(--purple); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: .82rem;
  text-align: center;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; margin: 0 auto; aspect-ratio: 1; }
  .space-grid { grid-template-columns: 1fr; }
  .space-photo { order: -1; max-width: 380px; margin: 0 auto; aspect-ratio: 4/3; }
  .cards-2 { grid-template-columns: 1fr; }
  .cards-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .logo { font-size: 1rem; }
  .nav-cta .btn-primary { display: none; }
  .nav-links-wa { display: block; }
  .nav-links-wa a { color: var(--purple); }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .section { padding: 60px 0; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-band { margin: 0 12px; padding: 50px 20px; }
}

/* ============ SERVICE SUBPAGES ============ */
.page-hero {
  position: relative;
  background: linear-gradient(160deg, var(--mint) 0%, var(--mint-soft) 50%, var(--white) 100%);
  padding: 70px 0 60px;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -110px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(186,92,212,0.28), transparent 70%);
  border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  font-size: .88rem;
  font-weight: 700;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.breadcrumb a { color: var(--purple-dark); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
  max-width: 780px;
}

.page-hero .lead {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 700px;
  margin-bottom: 28px;
}

.page-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

/* Content blocks */
.content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.prose p {
  color: var(--text-soft);
  font-size: 1.03rem;
  margin-bottom: 18px;
}

.prose h3 {
  font-size: 1.35rem;
  margin: 34px 0 14px;
}

.prose h3:first-child { margin-top: 0; }

.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122,57,150,0.07);
}

.info-card.mint-bg { background: var(--mint-soft); }

.info-card h3 { font-size: 1.2rem; margin-bottom: 18px; }

.check-list { list-style: none; padding: 0; margin: 0; }

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-weight: 600;
  line-height: 1.55;
}

.check-list li::before {
  content: "✓";
  color: var(--purple);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.check-list li:last-child { margin-bottom: 0; }

/* Numbered how-it-works */
.how-steps { display: grid; gap: 18px; }

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow);
}

.how-step .num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.how-step h4 { font-size: 1.02rem; margin-bottom: 5px; }
.how-step p { font-size: .93rem; color: var(--text-soft); margin: 0; }

/* Highlight callout */
.callout {
  background: linear-gradient(120deg, var(--purple), var(--purple-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 36px;
  box-shadow: var(--shadow);
}

.callout h3 { color: var(--white); font-size: 1.25rem; }
.callout p { color: rgba(255,255,255,0.88); margin-bottom: 0; }

/* Other services */
.other-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.other-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  box-shadow: var(--shadow);
  transition: transform .2s ease;
  color: inherit;
}

.other-card:hover { transform: translateY(-4px); }

.other-card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.other-card.mint .icon-badge { background: var(--mint); }
.other-card.purple .icon-badge { background: var(--purple); }
.other-card.yellow .icon-badge { background: var(--yellow); }

.other-card h4 { margin-bottom: 3px; font-size: 1.05rem; }
.other-card p { margin: 0; font-size: .88rem; color: var(--text-soft); }

@media (max-width: 960px) {
  .content-grid { grid-template-columns: 1fr; gap: 34px; }
  .other-cards { grid-template-columns: 1fr; }
}

/* Botões longos não podem estourar a tela no mobile */
@media (max-width: 620px) {
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .page-hero .btn,
  .cta-band .btn,
  .hero-actions .btn {
    width: 100%;
  }
  .page-hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
}
