/* ===================================================
   MESTRES DA LIMPEZA - LANDING PAGE STYLES
   High-Conversion LP for Google Ads
   =================================================== */

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

:root {
  --primary: #0A4D8C;
  --primary-dark: #073764;
  --primary-light: #1E6FB8;
  --accent: #00B4D8;
  --accent-light: #48CAE4;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --yellow: #FFC107;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-gray: #F1F5F9;
  --gray: #94A3B8;
  --dark-gray: #475569;
  --text: #1E293B;
  --text-light: #64748B;
  --shadow-sm: 0 2px 8px rgba(10, 77, 140, 0.06);
  --shadow-md: 0 8px 24px rgba(10, 77, 140, 0.10);
  --shadow-lg: 0 20px 50px rgba(10, 77, 140, 0.15);
  --shadow-xl: 0 30px 80px rgba(10, 77, 140, 0.20);
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

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

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 10px 0;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}

.announce-bar strong {
  font-weight: 700;
  color: var(--accent-light);
}

.announce-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

/* ============ TOP HEADER ============ */
.lp-header {
  background: var(--white);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.lp-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* Nav menu */
.lp-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.lp-nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.lp-nav-menu a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.lp-nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
}

.lp-nav-menu a:hover {
  color: var(--primary);
}

.lp-nav-menu a:hover::after {
  width: 100%;
}

.lp-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.lp-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

.lp-menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-menu-toggle.active span:nth-child(2) { opacity: 0; }
.lp-menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lp-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
}

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

.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.lp-logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.lp-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.lp-logo-text small {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lp-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-phone-text {
  text-align: right;
  line-height: 1.1;
}

.lp-phone-text small {
  font-size: 0.75rem;
  color: var(--text-light);
}

.lp-phone-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  display: block;
}

.btn-whatsapp-header {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-whatsapp-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}

/* ============ HERO ============ */
.lp-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(0,180,216,0.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(10,77,140,0.08), transparent 50%),
    linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  padding: 24px 0 32px;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 108px);
  display: flex;
  align-items: center;
}

.lp-hero > .container {
  width: 100%;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 216, 0.1);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 180, 216, 0.2);
}

.hero-badge .dot {
  width: 9px;
  height: 9px;
  background: var(--whatsapp);
  border-radius: 50%;
  animation: hero-badge-pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes hero-badge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50% { opacity: 0.85; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
}

.lp-hero h1 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lp-hero h1 .hero-h1-accent {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nowrap {
  white-space: nowrap;
}

.lp-hero p.subtitle,
.lp-hero .subtitle {
  font-size: 0.96rem;
  color: var(--text-light);
  margin-bottom: 22px;
  line-height: 1.5;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 16px;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 3px 0;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-bullets svg {
  width: 18px;
  height: 18px;
  color: var(--whatsapp);
  flex-shrink: 0;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 0;
}

/* Safety net: caso o GSAP falhe ao carregar pelo CDN, garante que
   os botões fiquem sempre visíveis (sem opacity 0 travado). */
.no-gsap .hero-ctas,
.no-gsap .hero-ctas > *,
.no-gsap .hero-stats,
.no-gsap .hero-stats .hero-stat {
  opacity: 1 !important;
  transform: none !important;
}

.btn-primary-cta {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-primary-cta:hover::before { left: 100%; }

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.45);
}

.btn-secondary-cta {
  background: transparent;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--primary);
  transition: var(--transition);
}

.btn-secondary-cta:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============ HERO STATS (Inline big numbers) ============ */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
  padding-top: 0;
  border-top: none;
  max-width: 500px;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.3;
}

/* ============ HERO VISUAL (Image + floating cards) ============ */
.hero-visual {
  position: relative;
  height: 560px;
  width: 100%;
}

.hero-image {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
}

.hero-image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  padding: 40px 32px;
  z-index: 1;
}

.hero-image-fallback svg {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  opacity: 0.85;
}

.hero-image-fallback h3 {
  color: var(--white);
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.hero-image-fallback p {
  opacity: 0.88;
  font-size: 0.95rem;
  max-width: 280px;
}

/* Floating cards */
.hero-card {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(10, 77, 140, 0.18), 0 2px 6px rgba(10, 77, 140, 0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
}

.hero-card-1 {
  top: 28px;
  left: -28px;
  animation: hero-float 6s ease-in-out infinite;
}

.hero-card-2 {
  top: 44%;
  right: -36px;
  transform: translateY(-50%);
  animation: hero-float-mid 6s ease-in-out infinite 1.5s;
}

.hero-card-3 {
  bottom: 36px;
  left: -28px;
  animation: hero-float 6s ease-in-out infinite 3s;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes hero-float-mid {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 14px)); }
}

.hero-card-icon {
  position: relative;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 6px 14px rgba(0, 180, 216, 0.35);
}

.hero-card-icon::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(255,255,255,0.22), transparent 55%);
  pointer-events: none;
}

.hero-card-icon svg {
  position: relative;
  z-index: 1;
}

.hero-card-icon-star {
  background: linear-gradient(135deg, #ffc83d, #ff9a00);
  box-shadow: 0 6px 14px rgba(255, 152, 0, 0.4);
  color: #fff;
}

.hero-card-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
}

.hero-card-text small {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--primary-dark);
  color: var(--white);
  padding: 28px 0;
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
  text-align: center;
}

.trust-stat svg {
  width: 36px;
  height: 36px;
  color: var(--accent-light);
  margin-bottom: 8px;
}

.trust-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}

.trust-stat span {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ============ SECTIONS ============ */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 14px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
}

/* ============ PROBLEMS / PAIN POINTS ============ */
.problems {
  position: relative;
}

.problems::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,77,140,0.03));
  pointer-events: none;
}

/* Carousel wrapper for problem cards */
.problems-carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 20px) / 4);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 4px 16px;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track > * {
  scroll-snap-align: start;
  min-width: 0;
}

/* Infinite marquee for the problems section */
.problems-marquee {
  position: relative;
  overflow: hidden;
  padding: 6px 0 12px;
  /* Soft fade on the edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee-scroll 36s linear infinite;
}

.problems-marquee:hover .marquee-track,
.problems-marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-track > .problem-card {
  flex: 0 0 calc((1240px - 3 * 20px) / 4);
  max-width: 320px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* Testimonials marquee — slightly different sizing/speed */
.testimonials-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.testimonials-track {
  animation: marquee-scroll 60s linear infinite;
  gap: 24px;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

.testimonials-track > .testimonial {
  flex: 0 0 380px;
  max-width: 380px;
}

.problem-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 77, 140, 0.06);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 140, 0.12);
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(10, 77, 140, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dots button.active {
  background: var(--primary);
  width: 26px;
  border-radius: var(--radius-full);
}

.problem-icon {
  width: 40px;
  height: 40px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  flex-shrink: 0;
}

.problem-icon svg { width: 22px; height: 22px; }

.problem-card h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.problem-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ============ SOLUTION ============ */
.solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.solution-content h2 {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  margin-bottom: 18px;
}

.solution-content > p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.solution-list {
  list-style: none;
  margin-bottom: 28px;
}

.solution-list li {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 77, 140, 0.06);
}

.solution-list li:last-child { border-bottom: none; }

.solution-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.solution-check svg { width: 14px; height: 14px; }

.solution-list strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 2px;
}

.solution-list span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.solution-visual {
  position: relative;
  height: 480px;
  background: transparent;
  overflow: visible;
}

/* Pulso suave do ícone-estrela do badge "+10 anos" */
.solution-badge-icon {
  animation: solution-badge-pulse 3.5s ease-in-out infinite;
}

@keyframes solution-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(255, 152, 0, 0); }
}

.solution-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  mix-blend-mode: multiply;
}

.solution-visual:hover .solution-image {
  transform: scale(1.015);
}

/* BA slider inside the solution section fills the whole container */
.solution-ba-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.solution-ba-slider .ba-slider-img {
  aspect-ratio: auto;
  height: 100%;
}

.solution-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: 30px;
  text-align: center;
}

.solution-placeholder svg {
  width: 100px;
  height: 100px;
  opacity: 0.9;
  margin-bottom: 16px;
}

.solution-placeholder h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.solution-placeholder p {
  opacity: 0.9;
  font-size: 0.95rem;
}

.solution-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.solution-badge-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--yellow), #ff9800);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.solution-badge-text strong {
  display: block;
  color: var(--text);
  font-size: 0.95rem;
}

.solution-badge-text small {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ============ SERVICES OFFERED ============ */
.services-included {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-included {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 77, 140, 0.05);
  text-align: center;
  transition: var(--transition);
}

.service-included:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.service-included-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(10, 77, 140, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
  transition: var(--transition);
}

.service-included:hover .service-included-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.service-included-icon svg { width: 30px; height: 30px; }

.service-included h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-included p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ============ CTA BANNER (Contained card) ============ */
.cta-banner-wrap {
  padding: 60px 0;
  background: var(--white);
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18), transparent 70%);
  z-index: 0;
}

.cta-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 auto 16px;
  max-width: 760px;
  line-height: 1.2;
}

.cta-banner p {
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 auto 32px;
  max-width: 640px;
  line-height: 1.55;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.cta-banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  background: var(--off-white);
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-line {
  position: absolute;
  top: 30px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, rgba(10,77,140,0.1), rgba(0,180,216,0.22), rgba(10,77,140,0.1));
  border-radius: 999px;
  z-index: 0;
  overflow: hidden;
}

/* Brighter, faster traveling comet */
.process-line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(0,180,216,0.6) 30%, #ffffff 50%, var(--accent) 70%, transparent);
  animation: process-line-travel 4s linear infinite;
  box-shadow: 0 0 18px rgba(0, 180, 216, 0.8);
}

@keyframes process-line-travel {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(360%); }
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-number {
  position: relative;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ffffff, #eaf4fb);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, color 0.4s ease;
  z-index: 2;
  animation: process-halo-breath 4.5s ease-in-out infinite;
}

/* Continuous halo breathing — every circle slowly inhales/exhales its outer ring */
@keyframes process-halo-breath {
  0%, 100% {
    box-shadow:
      0 0 0 3px var(--accent),
      0 0 0 9px rgba(0, 180, 216, 0.12),
      0 12px 28px rgba(10, 77, 140, 0.18);
  }
  50% {
    box-shadow:
      0 0 0 3px var(--accent),
      0 0 0 14px rgba(0, 180, 216, 0.22),
      0 16px 32px rgba(10, 77, 140, 0.24);
  }
}

/* Stagger the breathing so the row doesn't pulse in unison */
.process-step:nth-child(2) .process-number { animation-delay: 0s; }
.process-step:nth-child(3) .process-number { animation-delay: 0.4s; }
.process-step:nth-child(4) .process-number { animation-delay: 0.8s; }
.process-step:nth-child(5) .process-number { animation-delay: 1.2s; }

/* Hover gradient overlay revealed on hover */
.process-number::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

/* Sequential strong pulse — each number gets the spotlight in turn */
.process-number::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
  pointer-events: none;
  z-index: -2;
}

.process-step:nth-child(2) .process-number::after { animation: process-pulse 6s ease-out infinite 0s; }
.process-step:nth-child(3) .process-number::after { animation: process-pulse 6s ease-out infinite 1.5s; }
.process-step:nth-child(4) .process-number::after { animation: process-pulse 6s ease-out infinite 3s; }
.process-step:nth-child(5) .process-number::after { animation: process-pulse 6s ease-out infinite 4.5s; }

@keyframes process-pulse {
  0%       { box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.7); }
  35%      { box-shadow: 0 0 0 32px rgba(0, 180, 216, 0); }
  100%     { box-shadow: 0 0 0 32px rgba(0, 180, 216, 0); }
}

/* Sequential digit flash — number itself briefly glows accent color when its pulse fires */
.process-step:nth-child(2) .process-number { animation: process-halo-breath 4.5s ease-in-out infinite, process-digit-flash 6s ease-out infinite 0s; }
.process-step:nth-child(3) .process-number { animation: process-halo-breath 4.5s ease-in-out infinite 0.4s, process-digit-flash 6s ease-out infinite 1.5s; }
.process-step:nth-child(4) .process-number { animation: process-halo-breath 4.5s ease-in-out infinite 0.8s, process-digit-flash 6s ease-out infinite 3s; }
.process-step:nth-child(5) .process-number { animation: process-halo-breath 4.5s ease-in-out infinite 1.2s, process-digit-flash 6s ease-out infinite 4.5s; }

@keyframes process-digit-flash {
  0%, 100% {
    color: var(--primary);
    text-shadow: none;
  }
  5%, 15% {
    color: var(--accent);
    text-shadow: 0 0 14px rgba(0, 180, 216, 0.85);
  }
}

/* Hover: pause flashes so the digit stays clearly white over the gradient */
.process-step:hover .process-number,
.process-step:hover .process-number::after {
  animation-play-state: paused;
}

.process-step:hover .process-number {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-8px) scale(1.1) rotate(-3deg);
  box-shadow:
    0 0 0 3px var(--accent),
    0 0 0 14px rgba(0, 180, 216, 0.28),
    0 22px 44px rgba(10, 77, 140, 0.32);
}

.process-step:hover .process-number::before {
  opacity: 1;
}

.process-step h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.88rem;
}

/* ============ TESTIMONIALS ============ */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10, 77, 140, 0.05);
  position: relative;
  transition: var(--transition);
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #FBBF24;
  margin-bottom: 14px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.testimonial-info strong {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
}

.testimonial-info small {
  color: var(--text-light);
  font-size: 0.8rem;
}

/* ============ FAQ ============ */
.faq {
  max-width: 1080px;
  margin: 0 auto;
  column-count: 2;
  column-gap: 24px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(10, 77, 140, 0.08);
  transition: var(--transition);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 14px;
  display: inline-block;
  width: 100%;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* ============ FINAL CTA ============ */
.final-cta {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 50%);
}

.final-cta .container {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 14px;
}

.final-cta p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary-cta {
  background: var(--white);
  color: var(--whatsapp-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.final-cta .btn-primary-cta:hover {
  background: var(--off-white);
  color: var(--whatsapp-dark);
}

/* ============ FOOTER ============ */
.lp-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 40px 0 20px;
  font-size: 0.9rem;
}

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

.lp-footer p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-top: 12px;
}

.lp-footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 14px;
}

.lp-footer-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}

.lp-footer-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 3px;
}

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

/* ============ FLOATING WHATSAPP ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition);
  animation: wpp-pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background: var(--whatsapp-dark);
}

.whatsapp-float svg { width: 34px; height: 34px; }

@keyframes wpp-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============ COUNTDOWN / URGENCY ============ */
.urgency-strip {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #422006;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.urgency-strip strong {
  color: var(--primary-dark);
}

/* ============ SECTION HEADER HIGHLIGHT ============ */
.section-header h2 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============ SERVICES GRID (Backup-style cards w/ hover) ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(10, 77, 140, 0.05);
  position: relative;
  overflow: hidden;
  color: inherit;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 77, 140, 0.1);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(10, 77, 140, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: rotate(-8deg) scale(1.05);
}

.service-icon svg { width: 32px; height: 32px; }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap 0.25s ease;
}

.service-link svg {
  width: 16px;
  height: 16px;
}

.service-card:hover .service-link { gap: 12px; color: var(--accent); }

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

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.gallery-item:nth-child(3n+1) {
  background: linear-gradient(135deg, #0A4D8C, #1E6FB8);
}
.gallery-item:nth-child(3n+2) {
  background: linear-gradient(135deg, #00B4D8, #48CAE4);
}
.gallery-item:nth-child(3n+3) {
  background: linear-gradient(135deg, #073764, #0A4D8C);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  z-index: 1;
}

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

.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.gallery-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.75;
  margin-bottom: 10px;
}

.gallery-placeholder span {
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 55, 100, 0.82) 0%, rgba(7, 55, 100, 0.25) 45%, transparent 75%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.gallery-overlay-text {
  color: var(--white);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay-text {
  transform: translateY(-4px);
}

.gallery-overlay-text strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 2px;
}

.gallery-overlay-text small {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ============ BEFORE / AFTER SLIDER ============ */
#antes-depois {
  background: linear-gradient(180deg, #eaf4fb 0%, #dbecf6 100%);
}

.ba-hero {
  max-width: 1080px;
  margin: 0 auto;
}

.ba-slider {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  touch-action: pan-y;
}

.ba-slider-large .ba-slider-img {
  aspect-ratio: 16 / 9;
}

.ba-slider-img {
  position: relative;
  aspect-ratio: 4 / 3;
  width: 100%;
  cursor: ew-resize;
}

.ba-slider-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Stats below the slider */
.ba-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.ba-stat {
  background: rgba(0, 180, 216, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
}

.ba-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.ba-stat span {
  font-size: 0.92rem;
  color: var(--text-light);
  font-weight: 500;
}

.ba-slider-after {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 55%),
    linear-gradient(135deg, var(--primary), var(--accent));
}

.ba-slider-after > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  color: var(--white);
  opacity: 0.9;
}

/* When the AFTER side has a real image, hide the SVG fallback */
.ba-slider-after:has(img) > svg { display: none; }

.ba-slider-before {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}

.ba-slider-clip {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background:
    repeating-linear-gradient(45deg, #6b7280 0 18px, #4b5563 18px 36px);
}

.ba-slider-clip > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  color: var(--white);
  opacity: 0.55;
  transform: translate(-50%, -50%);
}

.ba-slider-tag {
  position: absolute;
  top: 14px;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  z-index: 5;
  pointer-events: none;
  white-space: nowrap;
}

.ba-slider-tag-before {
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
}

.ba-slider-tag-after {
  right: 14px;
  background: var(--whatsapp);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%);
  z-index: 4;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.ba-slider-handle svg {
  position: relative;
  width: 12px;
  height: 12px;
  color: var(--primary);
  z-index: 1;
}

.ba-slider-handle svg:first-child { margin-right: 1px; }
.ba-slider-handle svg:last-child  { margin-left: 1px; }

.ba-slider.dragging .ba-slider-handle { background: var(--accent-light); }

.ba-slider-info {
  padding: 20px 22px 22px;
}

.ba-slider-info h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.ba-slider-info p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.contact-info .section-tag {
  margin-bottom: 12px;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  margin-bottom: 14px;
  line-height: 1.15;
}

.contact-info > p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.contact-details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 77, 140, 0.08);
}

.contact-details li:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(10, 77, 140, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-content strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-detail-content a,
.contact-detail-content span {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.contact-detail-content a:hover {
  color: var(--primary);
}

/* Form card */
.contact-form {
  background: var(--white);
  padding: 38px 32px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(10, 77, 140, 0.14), 0 2px 6px rgba(10, 77, 140, 0.06);
  position: relative;
}

.contact-form-tag {
  position: absolute;
  top: -16px;
  left: 28px;
  background: linear-gradient(135deg, var(--yellow), #ff9a00);
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(255, 152, 0, 0.35);
}

.contact-form h3 {
  font-size: 1.45rem;
  margin-bottom: 6px;
  color: var(--text);
  font-family: var(--font-display);
}

.contact-form > p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--text);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.form-submit:hover::before { left: 100%; }

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

.form-note svg {
  width: 14px;
  height: 14px;
  color: var(--whatsapp);
  flex-shrink: 0;
}

/* ============ CONTACT FORM 7 OVERRIDES ============ */
/* Garante que o CF7 fique idêntico ao layout do .contact-form do HTML.
   O filtro wpcf7_autop_or_not (em helpers.php) já remove os <p> automáticos,
   mas o CF7 ainda envelopa cada input em <span class="wpcf7-form-control-wrap">
   e adiciona classes próprias. Estes overrides normalizam tudo. */

.contact-form .wpcf7,
.contact-form .wpcf7-form {
  margin: 0;
  padding: 0;
}

/* Remove margens default de <p> caso ainda apareçam */
.contact-form .wpcf7 p,
.contact-form .wpcf7-form p {
  margin: 0;
  padding: 0;
}

/* Wrapper invisível que o CF7 envolve em cada campo */
.contact-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Aplica os mesmos estilos do .form-group input nos inputs gerados pelo CF7 */
.contact-form .wpcf7 input[type="text"],
.contact-form .wpcf7 input[type="email"],
.contact-form .wpcf7 input[type="tel"],
.contact-form .wpcf7 input[type="url"],
.contact-form .wpcf7 input[type="number"],
.contact-form .wpcf7 select,
.contact-form .wpcf7 textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--text);
  transition: var(--transition);
  box-sizing: border-box;
  line-height: 1.4;
}

.contact-form .wpcf7 input[type="text"]:focus,
.contact-form .wpcf7 input[type="email"]:focus,
.contact-form .wpcf7 input[type="tel"]:focus,
.contact-form .wpcf7 input[type="url"]:focus,
.contact-form .wpcf7 input[type="number"]:focus,
.contact-form .wpcf7 select:focus,
.contact-form .wpcf7 textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.contact-form .wpcf7 textarea {
  resize: vertical;
  min-height: 100px;
}

/* Botão submit do CF7 — usa o mesmo estilo do .form-submit */
.contact-form .wpcf7 input[type="submit"],
.contact-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  margin-top: 8px;
  font-family: inherit;
}

.contact-form .wpcf7 input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}

/* Loader/spinner do CF7 — não deixa empurrar o layout */
.contact-form .wpcf7-spinner {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 10px;
}

/* Mensagens de validação inline (campo a campo) */
.contact-form .wpcf7-not-valid-tip {
  color: #d63638;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
}

.contact-form .wpcf7 input.wpcf7-not-valid,
.contact-form .wpcf7 select.wpcf7-not-valid,
.contact-form .wpcf7 textarea.wpcf7-not-valid {
  border-color: #d63638;
}

/* Mensagens de resposta (sucesso, erro do servidor, validação) */
.contact-form .wpcf7-response-output {
  margin: 18px 0 0;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border-width: 2px;
}

.contact-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  background: rgba(70, 180, 80, 0.08);
  color: #2a6e2f;
}

.contact-form .wpcf7 form.invalid .wpcf7-response-output,
.contact-form .wpcf7 form.failed .wpcf7-response-output {
  border-color: #d63638;
  background: rgba(214, 54, 56, 0.08);
  color: #a02e30;
}

/* ============ BACKUP-STYLE FOOTER ============ */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 60px 0 0;
  font-size: 0.95rem;
}

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

.footer .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.footer .logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.footer .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer .logo-text small {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  margin-top: 8px;
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 0.93rem;
  opacity: 0.85;
  transition: var(--transition);
  color: inherit;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--accent-light);
  margin-top: 2px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.85;
}

.footer-bottom a {
  color: var(--accent-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: var(--white); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .lp-nav-menu {
    gap: 18px;
  }
  .lp-nav-menu a { font-size: 0.9rem; }
}

@media (max-width: 1024px) {
  .lp-hero {
    min-height: auto;
    display: block;
    padding: 40px 0 50px;
  }

  .lp-hero .container,
  .solution {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-visual { height: 400px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }

  .process-line { display: none; }

  .trust-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .carousel-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }

  .marquee-track > .problem-card {
    flex: 0 0 300px;
  }

  .testimonials-track > .testimonial {
    flex: 0 0 340px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq {
    column-count: 1;
  }
  .faq-item {
    margin-bottom: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .lp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    transition: right 0.4s ease;
    padding: 80px 28px 32px;
    z-index: 99;
    display: block;
    overflow-y: auto;
  }

  .lp-nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }

  .lp-nav-menu a {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(10, 77, 140, 0.08);
    font-size: 1rem;
  }

  .lp-nav-menu.active {
    right: 0;
  }

  .lp-menu-toggle {
    display: flex;
    z-index: 101;
    position: relative;
  }
}

@media (max-width: 768px) {
  .lp-header .container {
    gap: 12px;
  }

  .lp-logo-text small {
    display: none;
  }

  .btn-whatsapp-header {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn-primary-cta,
  .hero-ctas .btn-secondary-cta {
    width: 100%;
    justify-content: center;
  }

  .hero-visual { height: 380px; }
  .hero-card-1 { left: 8px; top: 16px; }
  .hero-card-2 { right: 8px; }
  .hero-card-3 { left: 8px; bottom: 16px; }

  .cta-banner-wrap { padding: 40px 0; }
  .cta-banner {
    padding: 48px 24px;
  }
  .cta-banner-btn {
    width: 100%;
    padding: 14px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .announce-bar {
    font-size: 0.8rem;
    padding: 8px 14px;
  }

  .ba-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ba-stat { padding: 18px 14px; }
  .ba-slider-large .ba-slider-img { aspect-ratio: 4 / 3; }

  .carousel-track {
    grid-auto-columns: 88%;
  }

  .marquee-track > .problem-card {
    flex: 0 0 260px;
  }

  .testimonials-track > .testimonial {
    flex: 0 0 300px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-overlay-text { transform: translateY(0); }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 58px;
    height: 58px;
  }

  .whatsapp-float svg { width: 30px; height: 30px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============ CONTACT WHATSAPP CARD (modo alternativo ao formulário) ============ */
.contact-whatsapp-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fc 100%);
  padding: 38px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px rgba(10, 77, 140, 0.14), 0 2px 6px rgba(10, 77, 140, 0.06);
  position: relative;
}

.contact-whatsapp-card .contact-form-tag {
  position: absolute;
  top: -16px;
  left: 28px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.contact-whatsapp-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--text);
  font-family: var(--font-display);
}

.contact-whatsapp-desc {
  color: var(--text-light);
  font-size: 0.98rem;
  margin-bottom: 22px;
  line-height: 1.6;
}

.contact-whatsapp-bullets {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.contact-whatsapp-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-whatsapp-bullets svg {
  width: 20px;
  height: 20px;
  color: var(--whatsapp);
  flex-shrink: 0;
}

.contact-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.contact-whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.contact-whatsapp-btn:hover::before { left: 100%; }

.contact-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.55);
}

.contact-whatsapp-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--text-light);
}

.contact-whatsapp-note svg {
  width: 14px;
  height: 14px;
  color: var(--whatsapp);
}
