/* =====================
   ROOT & RESET
   ===================== */
:root {
  --primary: #1a73e8;
  --primary-dark: #0d5dbf;
  --accent: #00b894;
  --accent-dark: #00a381;
  --text: #2d3436;
  --text-light: #636e72;
  --bg: #ffffff;
  --bg-gray: #f8f9fa;
  --bg-dark: #1e2a3a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* =====================
   CONTAINER
   ===================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,115,232,0.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

.btn-nav {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--primary-dark); }

.btn-full { width: 100%; text-align: center; }

.btn-whatsapp {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: rgba(255,255,255,0.25);
  border-color: #fff;
  transform: translateY(-2px);
}

/* =====================
   HEADER
   ===================== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
  transition: background var(--transition), box-shadow var(--transition);
}

#header.scrolled {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.logo:hover { opacity: 0.85; }

.logo-img {
  height: 70px;
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
nav a:hover { color: var(--primary); }

#header.scrolled nav a { color: var(--text); }
#header.scrolled nav a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  position: relative;
  z-index: 1;
  min-width: 52px;
  min-height: 52px;
}
.hamburger span {
  display: block;
  width: 32px;
  height: 3px;
  background: #5cb800;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-end;
  background: url('/images/hero-bg.jpg') center/cover no-repeat, linear-gradient(135deg, #0f2f6e 0%, #1a73e8 50%, #00b894 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 24px 120px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  gap: 48px;
}

.hero-text {
  flex: 1;
  min-width: 0;
  padding-bottom: 16px;
}

.hero-img-col {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-end;
}

.hero-side-img {
  max-height: 480px;
  width: auto;
  max-width: 420px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.3));
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary {
  background: #5cb800;
}
.hero-ctas .btn-primary:hover {
  background: #4aa000;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  line-height: 0;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

.hero-mascot {
  position: absolute;
  bottom: 0;
  right: 6%;
  z-index: 3;
  width: 240px;
}

.hero-mascot img {
  width: 100%;
  display: block;
}

/* =====================
   SECTIONS SHARED
   ===================== */
.section { padding: 96px 0; overflow: hidden; }
.section:nth-child(even) { background: var(--bg-gray); }

.section-badge {
  display: inline-block;
  background: rgba(26,115,232,0.1);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-sub {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 48px;
  max-width: 540px;
}


/* =====================
   PROCESSO
   ===================== */
.processo { background: #fff; overflow: hidden; }

.processo-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #5cb800;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 56px;
  line-height: 1;
  opacity: 0.05;
  transform: translateX(80px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.processo-title.visible {
  opacity: 1;
  transform: translateX(0);
}

.processo-inner {
  display: flex;
  gap: 48px;
  align-items: center;
}

/* Left — steps */
.processo-steps {
  flex: 0 0 42%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.processo-step {
  background: #dbeeff;
  border-radius: 60px;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.step-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.step-badge {
  width: 44px;
  height: 44px;
  border: 2px solid #1a73e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a73e8;
  flex-shrink: 0;
  background: #fff;
}

.step-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.processo-step p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin: 0;
}

/* Right — truck */
.processo-truck {
  flex: 1;
  position: relative;
  min-height: 320px;
}

.processo-truck > img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Callout labels */
.callout {
  position: absolute;
  background: #fff;
  border: 1px solid #d6e6f5;
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.09);
  text-align: center;
  z-index: 2;
  min-width: 130px;
}
.callout small {
  display: block;
  font-size: 0.7rem;
  color: #888;
  margin-bottom: 2px;
}
.callout strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  color: #1a73e8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
/* connector line */
.callout::after {
  content: '';
  position: absolute;
  width: 2px;
  background: #5cb800;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}
/* dot at the truck end */
.callout::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: #5cb800;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.callout-tl {
  top: 4%;
  left: -2%;
}
.callout-tl::after { height: 52px; top: 100%; }
.callout-tl::before { top: calc(100% + 52px); }

.callout-tr {
  top: 4%;
  right: 2%;
}
.callout-tr::after { height: 44px; top: 100%; }
.callout-tr::before { top: calc(100% + 44px); }

.callout-bc {
  bottom: 3%;
  left: 50%;
  transform: translateX(-50%);
}
.callout-bc::after { height: 44px; bottom: 100%; }
.callout-bc::before { bottom: calc(100% + 44px); }

/* CTA */
.processo-cta {
  text-align: center;
  margin-top: 56px;
}

.btn-green-cta {
  display: inline-block;
  background: #5cb800;
  color: #fff;
  border-radius: 50px;
  padding: 18px 60px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-green-cta:hover {
  background: #4a9900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,184,0,0.35);
}

/* =====================
   FONTE (PARAR A FONTE)
   ===================== */
.fonte {
  background: linear-gradient(140deg, #0040cc 0%, #1a73e8 50%, #0099e0 100%);
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  overflow: hidden;
}

/* Waves */
.fonte-wave-top,
.fonte-wave-bottom {
  position: absolute;
  left: 0; right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.fonte-wave-top { top: -1px; }
.fonte-wave-bottom { bottom: -1px; }
.fonte-wave-top svg,
.fonte-wave-bottom svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* Decorative bubble circles */
.fb {
  position: absolute;
  border: 3px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.fb1 { width: 52px; height: 52px; top: 18px; left: 22px; }
.fb2 { width: 96px; height: 96px; top: 58px; left: 10px; }
.fb3 { width: 44px; height: 44px; top: 20px; right: 320px; }
.fb4 { width: 88px; height: 88px; top: 50px; right: 225px; }
.fb5 { width: 64px; height: 64px; top: 85px; right: 140px; }

/* Title */
.fonte-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  text-align: center;
  letter-spacing: 3px;
  margin-bottom: 52px;
  position: relative;
  z-index: 3;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.18);
  line-height: 1;
}

/* Two-column layout */
.fonte-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 3;
}

/* Left — image */
.fonte-img-col {
  flex: 0 0 40%;
  max-width: 40%;
}
.fonte-img-col > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
/* Right — text */
.fonte-text { flex: 1; }

.fonte-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.fonte-text p {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.fonte-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fonte-list li {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.fonte-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #5cb800;
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1.4;
}
.fonte-list li strong { color: #fff; }

/* =====================
   AMOR (DIRTY CANS NEED LOVE)
   ===================== */
.amor { background: #fff; overflow: hidden; }

.amor-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #5cb800;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 12px;
}

.amor-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 48px;
  line-height: 1.6;
}
.amor-sub strong { color: var(--text); }

.amor-inner {
  display: flex;
  gap: 56px;
  align-items: center;
}

/* Before/After Slider */
.amor-slider-wrap {
  flex: 0 0 34%;
  max-width: 34%;
}

.amor-slider {
  position: relative;
  border: 4px solid #5cb800;
  border-radius: 10px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  touch-action: none;
  aspect-ratio: 6 / 7;
  background: #f5f5f5;
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after img,
.ba-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.ba-before {
  width: 50%;
}
/* Keep before-image the full slider width so it doesn't stretch */
.ba-before img {
  width: var(--slider-width, 100%);
}

/* Placeholder when no images */
.ba-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  z-index: 0;
}
.ba-ph-left,
.ba-ph-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #aaa;
  text-align: center;
}
.ba-ph-left { background: #eef7ea; }
.ba-ph-right { background: #e6f7f3; }
.ba-ph-left span, .ba-ph-right span { font-size: 1.2rem; }
.ba-ph-divider {
  width: 3px;
  background: #5cb800;
  flex-shrink: 0;
}

/* Divider line */
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #5cb800;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px; height: 42px;
  background: #5cb800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  cursor: col-resize;
}

/* Curved arrow hint */
.ba-arrow-hint {
  position: absolute;
  bottom: 40%;
  left: calc(50% + 10px);
  z-index: 5;
  pointer-events: none;
  opacity: 0.6;
}

/* Feature list */
.amor-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.amor-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.amor-check {
  width: 28px; height: 28px;
  background: #5cb800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.amor-item h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.amor-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* =====================
   PREÇOS (new card design)
   ===================== */
.precos { background: #fff; text-align: center; overflow: hidden; }

.precos-title {
  font-family: 'Bangers', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #5cb800;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 10px;
}

.precos-sub {
  color: #999;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 48px;
}

.precos-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

/* Card shell */
.pcn-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,0.1);
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pcn-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

/* Top section */
.pcn-top {
  background: #f4f8ff;
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  border-bottom: 4px solid #5cb800;
}

.pcn-top-blue {
  background: linear-gradient(145deg, #0051d4, #1a73e8);
}

/* Plan name */
.pcn-name {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  margin: 0;
}
.pcn-name strong { font-size: 1.15rem; font-weight: 800; color: #1a1a1a; }
.pcn-name span   { font-size: 0.82rem; color: #888; font-weight: 400; text-transform: uppercase; letter-spacing: 1px; }
.pcn-name-white strong,
.pcn-name-white span { color: #fff; }

/* Bottom section */
.pcn-bottom {
  background: linear-gradient(180deg, #1a73e8 0%, #0040cc 100%);
  padding: 20px 16px 24px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  flex: 1;
}

.pcn-price {
  font-size: 2.6rem; font-weight: 900; color: #fff; line-height: 1;
}

.pcn-desc {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.5;
  margin: 0;
}
.pcn-desc small { color: #5cb800; font-weight: 600; font-size: 0.78rem; }

.pcn-btn {
  display: inline-block;
  background: #5cb800;
  color: #fff;
  border-radius: 50px;
  padding: 11px 26px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 4px;
  transition: background var(--transition), transform var(--transition);
}
.pcn-btn:hover { background: #4a9900; transform: translateY(-2px); }

/* =====================
   DEPOIMENTOS
   ===================== */
.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.depoimento-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.depoimento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stars { color: #f4b400; font-size: 1.1rem; letter-spacing: 2px; }

.depoimento-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  font-style: italic;
  flex: 1;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autor-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.depoimento-autor strong {
  display: block;
  font-size: 0.9rem;
}
.depoimento-autor span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* =====================
   FAQ (blue section style)
   ===================== */
.faq-title-style {
  font-style: italic;
  letter-spacing: 1px;
}

.faq-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 48px;
  position: relative;
  z-index: 3;
}

.faq-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 3;
}

/* Accordion list */
.faq-list-new {
  flex: 0 0 52%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: rgba(255,255,255,0.14);
  border: none;
  border-radius: 8px;
  padding: 13px 16px;
  text-align: left;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.22); }
.faq-item.open .faq-question { border-radius: 8px 8px 0 0; }

.faq-badge-q {
  width: 30px; height: 30px;
  background: #5cb800;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1;
}

.faq-q-text { flex: 1; }

.faq-icon {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 8px 8px;
}
.faq-item.open .faq-answer { max-height: 200px; }

.faq-answer p {
  padding: 12px 16px 16px 58px;
  color: rgba(255,255,255,0.78);
  font-size: 0.87rem;
  line-height: 1.6;
}

/* Right image column */
.faq-img-col {
  flex: 1;
  position: relative;
}
.faq-img-col > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.logo-white { color: #fff; }

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

.footer-brand p {
  margin-top: 12px;
  font-size: 0.88rem;
  opacity: 0.65;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
}
.footer-links a {
  font-size: 0.88rem;
  opacity: 0.65;
  transition: opacity var(--transition);
}
.footer-links a:hover { opacity: 1; }

.footer-btns {
  display: inline-flex;
  gap: 10px;
  margin-top: 4px;
}

.footer-btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.footer-btn:hover { opacity: 0.85; transform: translateY(-1px); }

.footer-btn-email {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

.footer-btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
}

/* =====================================================
   BOOKING MODAL
   ===================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}

.modal-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 26px 28px 22px;
  position: relative;
  box-shadow: 0 16px 56px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: #aaa;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.modal-header { margin-bottom: 14px; }
.modal-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
}
.modal-header p { font-size: 0.88rem; color: var(--text-light); }

/* Form */
.modal-form { display: flex; flex-direction: column; gap: 10px; }

.form-group { display: flex; flex-direction: column; gap: 4px; }

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}

.form-input {
  padding: 8px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus { outline: none; border-color: #5cb800; background: #fff; }
.form-input.error { border-color: #e53935; }

textarea.form-input { resize: vertical; min-height: 72px; }

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Plan selector */
.plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.plan-option {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
}
.plan-option:has(input:checked) {
  border-color: #5cb800;
  background: #f2fce8;
  color: #3a7a00;
  font-weight: 700;
}
.plan-option input { accent-color: #5cb800; }

/* Bin color selector */
.bin-selector {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bin-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
}
.bin-option:has(input:checked) {
  border-color: #5cb800;
  background: #f2fce8;
}

.bin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  cursor: pointer;
}
.bin-check input { accent-color: #5cb800; flex-shrink: 0; }

.bin-swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.12);
}

.bin-label { flex: 1; }

.bin-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1;
  cursor: pointer;
}
.qty-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.qty-val {
  min-width: 16px;
  text-align: center;
  font-weight: 700;
}

.dia-cor-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.dia-cor-row:last-child { margin-bottom: 0; }
.dia-cor-row .bin-swatch { margin: 0; }
.dia-cor-row .dia-cor-label {
  font-size: 0.8rem;
  font-weight: 600;
  width: 130px;
  flex-shrink: 0;
}
.dia-cor-row select { flex: 1; }

.form-error {
  font-size: 0.76rem;
  color: #e53935;
  min-height: 14px;
}

/* Submit */
.modal-submit {
  background: #5cb800;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
  transition: background 0.2s, transform 0.2s;
}
.modal-submit:hover { background: #4a9900; transform: translateY(-1px); }
.modal-submit:disabled { background: #aaa; cursor: not-allowed; transform: none; }

.modal-note {
  font-size: 0.76rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 24px 0 8px;
}
.modal-success-icon {
  width: 64px; height: 64px;
  background: #5cb800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px;
}
.modal-success h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.modal-success p  { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

/* Modal responsive */
@media (max-width: 600px) {
  .modal-box       { padding: 20px 16px 18px; border-radius: 12px; }
  .plan-selector   { grid-template-columns: 1fr 1fr; }
  .form-row-2      { grid-template-columns: 1fr; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* ---- Tablet (≤1024px) ---- */
@media (max-width: 1024px) {
  .precos-grid-new { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .processo-inner  { gap: 32px; }
  .hero-side-img   { max-height: 420px; max-width: 380px; }
}

/* ---- Mobile (≤768px) ---- */
@media (max-width: 768px) {
  .section   { padding: 52px 0; }
  .container { padding: 0 18px; }

  /* ── Header ── */
  .header-inner { height: 64px; }
  .logo-img     { height: 48px; }
  .hamburger    { display: flex; position: relative; z-index: 1010; }

  nav {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 8px 18px 20px;
    z-index: 1001;
  }
  nav.open { display: block; }
  nav ul          { flex-direction: column; gap: 0; }
  nav ul li       { border-bottom: 1px solid #f0f0f0; }
  nav ul li:last-child { border-bottom: none; }
  nav a           { display: block; padding: 14px 0; color: var(--text) !important; font-size: 1rem; font-weight: 500; }
  nav a:hover     { color: var(--primary) !important; }
  .btn-nav        { display: block; margin: 10px 0 4px; text-align: center; padding: 13px; border-radius: 8px; color: #fff !important; }

  /* ── Hero ── */
  .hero-content   {
    padding: 100px 18px 100px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    max-width: 100%;
  }
  .hero-text { padding-bottom: 0; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 14px; }
  .hero-sub       { font-size: 1rem; margin-bottom: 24px; max-width: 100%; }
  .hero-ctas      { flex-direction: row; align-items: stretch; gap: 10px; width: 100%; }
  .hero-ctas .btn { flex: 1; min-height: 52px; display: flex; align-items: center; justify-content: center; font-size: 0.92rem; padding: 12px 10px; }
  .hero-img-col   { width: 100%; justify-content: center; }
  .hero-side-img  { max-height: 320px; max-width: 85%; margin: 0 auto; }
  .hero-wave svg  { height: 56px; }
  .hero-mascot    { width: 130px; right: 2%; }

  /* ── Processo ── */
  .processo-inner  { flex-direction: column; gap: 32px; }
  .processo-steps  { flex: none; width: 100%; order: 1; }
  .processo-truck  { width: 100%; min-height: 0; order: 0; display: flex; flex-direction: column; align-items: center; }
  .processo-step   { padding: 12px 16px; gap: 12px; border-radius: 50px; }
  .processo-cta    { margin-top: 28px; text-align: center; }
  .callout         { display: none; }

  /* ── Fonte sections ── */
  .fonte           { padding: 72px 0 80px; }
  .fonte-title     { font-size: clamp(1.7rem, 7vw, 2.8rem); margin-bottom: 24px; letter-spacing: 2px; }
  .fonte-inner     { flex-direction: column; gap: 24px; }
  .fonte-img-col   { flex: none; width: 100%; max-width: 100%; }
  .fonte-img-col > img { border-radius: 10px; width: 100%; }
  .fonte-text h3   { font-size: 1.15rem; }
  .fonte-text p    { font-size: 0.88rem; }
  .fonte-list li   { font-size: 0.86rem; }
  .btn-green-cta   { display: block; width: 100%; text-align: center; padding: 16px 24px; }
  .fb3, .fb4, .fb5 { display: none; }

  /* ── Amor ── */
  .amor-inner       { flex-direction: column; align-items: center; gap: 28px; }
  .amor-slider-wrap { flex: none; width: 60%; max-width: 60%; }
  .amor-slider      { aspect-ratio: 6 / 7; }
  .amor-features    { gap: 16px; }
  .amor-item h4     { font-size: 0.9rem; }
  .amor-item p      { font-size: 0.84rem; }

  /* ── Preços ── */
  .precos-grid-new  { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* ── Depoimentos ── */
  .depoimentos-grid { grid-template-columns: 1fr; gap: 16px; }
  .depoimento-card  { padding: 22px 18px; }

  /* ── FAQ ── */
  .faq-subtitle    { font-size: 0.88rem; margin-bottom: 24px; }
  .faq-inner       { flex-direction: column; gap: 24px; }
  .faq-list-new    { flex: none; width: 100%; }
  .faq-img-col     { display: none; }

  /* ── Footer ── */
  .footer-inner  { grid-template-columns: 1fr; gap: 24px; padding: 36px 18px 28px; }
  .footer-bottom { padding: 14px 18px; font-size: 0.8rem; }
}

/* ---- Small phones (≤600px) ---- */
@media (max-width: 600px) {
  .section   { padding: 44px 0; }
  .container { padding: 0 16px; }

  /* Header */
  .header-inner { height: 60px; }
  .logo-img     { height: 44px; }
  nav           { top: 60px; }

  /* Hero */
  .hero-content   { padding: 120px 20px 20px; gap: 20px; }
  .hero-content h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-sub       { font-size: 0.92rem; }
  .hero-side-img  { max-height: 300px; max-width: 80%; }
  .hero-mascot    { width: 100px; }

  /* Processo */
  .processo-step  { padding: 11px 14px; gap: 10px; }
  .step-badge     { width: 34px; height: 34px; font-size: 0.78rem; }
  .step-icon svg  { width: 26px; height: 26px; }
  .processo-step p { font-size: 0.82rem; }
  .processo-title  { font-size: clamp(1.6rem, 8vw, 2.4rem); margin-bottom: 28px; }

  /* Fonte */
  .fonte         { padding: 60px 0 68px; }
  .fonte-title   { font-size: clamp(1.5rem, 8vw, 2rem); margin-bottom: 20px; letter-spacing: 1px; }
  .fonte-text h3 { font-size: 1.05rem; }
  .fonte-text p  { font-size: 0.84rem; }
  .fonte-list li { font-size: 0.82rem; }

  /* Amor */
  .amor-slider-wrap { width: 65%; max-width: 65%; }
  .amor-title   { font-size: clamp(1.3rem, 7vw, 1.8rem); }
  .amor-sub     { font-size: 0.82rem; }
  .amor-check   { width: 22px; height: 22px; flex-shrink: 0; }
  .amor-item    { gap: 10px; }

  /* Preços — 2 columns */
  .precos          { padding: 40px 0; }
  .precos-title    { font-size: clamp(1.3rem, 8vw, 1.8rem); }
  .precos-sub      { font-size: 0.8rem; margin-bottom: 16px; }
  .precos-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pcn-price       { font-size: 2rem; }

  /* Depoimentos */
  .depoimento-card  { padding: 18px 14px; }
  .depoimento-card p { font-size: 0.83rem; }
  .autor-avatar     { width: 36px; height: 36px; font-size: 0.76rem; }

  /* FAQ */
  .faq-title-style { font-size: clamp(1.5rem, 8vw, 2rem); }
  .faq-subtitle    { font-size: 0.82rem; }
  .faq-question    { padding: 11px 12px; font-size: 0.82rem; gap: 10px; }
  .faq-badge-q     { width: 24px; height: 24px; font-size: 0.85rem; }
  .faq-answer p    { padding: 10px 12px 12px 44px; font-size: 0.81rem; }

  /* Footer */
  .footer-inner  { padding: 28px 16px 24px; gap: 20px; }
  .footer-bottom { padding: 12px 16px; font-size: 0.76rem; }
  .footer h4     { font-size: 0.82rem; margin-bottom: 10px; }
  .footer-links a, .footer-contact p { font-size: 0.82rem; }
}

/* ---- Very small phones (≤400px) — iPhone SE, small Android ---- */
@media (max-width: 400px) {
  .container { padding: 0 14px; }

  /* Header */
  .header-inner { height: 56px; }
  .logo-img     { height: 40px; }
  nav           { top: 56px; }

  /* Hero */
  .hero-content   { padding: 90px 25px 20px; gap: 14px; }
  .hero-content h1 { font-size: 1.4rem; }
  .hero-sub       { font-size: 0.84rem; }
  .hero-side-img  { max-height: 250px; max-width: 75%; }
  .hero-mascot    { width: 80px; }
  .hero-ctas .btn { max-width: 100%; }

  /* Processo */
  .processo-step  { border-radius: 40px; padding: 10px 12px; }
  .step-badge     { width: 30px; height: 30px; font-size: 0.72rem; }

  /* Amor */
  .amor-slider-wrap { width: 75%; max-width: 75%; }

  /* Fonte */
  .fonte-title { font-size: 1.35rem; }

  /* Preços */
  .precos-grid-new { gap: 8px; }
  .pcn-top         { padding: 12px 8px 10px; }
  .pcn-bottom      { padding: 10px 8px 14px; }
  .pcn-price       { font-size: 1.5rem; }
  .pcn-name strong { font-size: 0.82rem; }

  /* FAQ */
  .faq-question  { font-size: 0.78rem; padding: 10px; }
  .faq-answer p  { padding-left: 36px; font-size: 0.79rem; }
}

/* =====================
   BLOG & CONTENT PAGES
   ===================== */
.page-hero {
  background: linear-gradient(135deg, #1a73e8 0%, #0d5dbf 100%);
  padding: 100px 0 60px;
  color: #fff;
  text-align: center;
}
.page-hero .breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.85); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: #fff; }
.page-hero h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.page-hero p  { font-size: 1.05rem; color: rgba(255,255,255,0.88); max-width: 620px; margin: 0 auto; }

.content-wrap { max-width: 780px; margin: 0 auto; padding: 56px 24px 80px; }
.content-wrap h2 { font-size: 1.45rem; font-weight: 800; color: var(--text); margin: 40px 0 14px; }
.content-wrap h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin: 28px 0 10px; }
.content-wrap p  { font-size: 1rem; line-height: 1.75; color: var(--text-light); margin-bottom: 16px; }
.content-wrap ul { padding-left: 22px; margin-bottom: 16px; }
.content-wrap ul li { font-size: 1rem; line-height: 1.7; color: var(--text-light); margin-bottom: 6px; }
.content-wrap strong { color: var(--text); }

.article-cta {
  background: linear-gradient(135deg, #5cb800, #4a9900);
  border-radius: 16px;
  padding: 36px 32px;
  text-align: center;
  margin: 48px 0;
  color: #fff;
}
.article-cta h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; }
.article-cta p  { color: rgba(255,255,255,0.88); margin-bottom: 22px; font-size: 0.95rem; }
.article-cta .btn-primary { background: #fff; color: #4a9900; }
.article-cta .btn-primary:hover { background: #f0f0f0; transform: translateY(-2px); }

.steps-list { list-style: none; padding: 0; counter-reset: steps; }
.steps-list li {
  counter-increment: steps;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: #f8faff;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}
.steps-list li::before {
  content: counter(steps);
  min-width: 32px; height: 32px;
  background: var(--primary); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; flex-shrink: 0;
}
.steps-list li div strong { display: block; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.steps-list li div span  { font-size: 0.9rem; color: var(--text-light); line-height: 1.5; }

.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.price-table th { background: var(--primary); color: #fff; padding: 12px 16px; text-align: left; font-size: 0.88rem; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid #e8edf5; font-size: 0.95rem; color: var(--text-light); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: #f8faff; }
.price-table .price-highlight { font-weight: 700; color: var(--primary); }

/* Blog listing */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; padding: 56px 0 80px; }
.blog-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
.blog-card-tag { background: var(--primary); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; padding: 5px 12px; }
.blog-card-body { padding: 22px 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: 10px; line-height: 1.35; }
.blog-card-body p  { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; flex: 1; }
.blog-card-footer { padding: 14px 24px; border-top: 1px solid #f0f0f0; display: flex; justify-content: space-between; align-items: center; }
.blog-card-footer span { font-size: 0.78rem; color: #aaa; }
.blog-card-footer .read-more { font-size: 0.82rem; font-weight: 700; color: var(--primary); }

.article-meta { display: flex; gap: 20px; align-items: center; margin-top: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.7); flex-wrap: wrap; justify-content: center; }

@media (max-width: 600px) {
  .page-hero { padding: 80px 0 40px; }
  .content-wrap { padding: 36px 18px 60px; }
  .article-cta { padding: 28px 20px; }
  .steps-list li { flex-direction: column; gap: 10px; }
  .blog-grid { grid-template-columns: 1fr; }
}

