:root {
  --primary: #13545A;
  --primary-dark: #073F46;
  --primary-light: #2F7377;
  --primary-soft: #E8F0EF;
  --accent: #C39A5B;
  --accent-dark: #9C743B;
  --accent-soft: #F2E6D3;
  --text: #17383B;
  --muted: #687878;
  --bg: #FFFCF8;
  --bg-alt: #F4EEE6;
  --border: #E5D8CA;
  --dark: #073F46;
  --shadow: 0 18px 45px rgba(7, 63, 70, 0.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: calc(100% - 40px); max-width: 1120px; margin: 0 auto; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(223,231,241,.8);
}
.nav { min-height: 74px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  border-radius: 14px; background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: #fff; font-weight: 800;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text small { color: var(--muted); font-size: .72rem; margin-top: 4px; }
.nav-links { margin-left: auto; display: flex; align-items: center; gap: 24px; }
.nav-links a { color: #53696A; font-size: .94rem; font-weight: 600; }
.nav-links a:hover { color: var(--primary); }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; font-size: 1.6rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 24px; border-radius: 14px;
  background: var(--primary); color: white; font-weight: 700;
  border: 1px solid var(--primary); transition: .2s ease;
  box-shadow: 0 10px 24px rgba(11,102,212,.2);
}
.btn:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-sm { min-height: 44px; padding: 0 18px; font-size: .9rem; }
.btn-outline { background: #fff; color: var(--primary); box-shadow: none; }
.btn-light { background: #fff; color: var(--primary); border-color: #fff; }
.full { width: 100%; }

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(195,154,91,.20), transparent 30%),
    linear-gradient(180deg, #FFFCF8 0%, #fff 100%);
  padding-top: 88px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 68px; }
.eyebrow {
  display: inline-flex; margin-bottom: 18px; color: var(--primary);
  font-weight: 800; font-size: .78rem; letter-spacing: .09em; text-transform: uppercase;
}
.hero h1, .section-heading h2, .problem-grid h2, .contact-grid h2, .about-grid h2, .final-cta h2 {
  margin: 0; line-height: 1.12; letter-spacing: -.035em;
}
.hero h1 { font-size: 4.2rem; max-width: 790px; }
.hero h1 span { color: var(--primary); }
.hero-copy > p { color: var(--muted); font-size: 1.08rem; max-width: 680px; margin: 24px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trust-list { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 24px; color: #607273; font-size: .9rem; }
.hero-card { position: relative; }
.image-placeholder { min-height: 490px; border-radius: 30px;
  background: linear-gradient(145deg, #E8DDD0, #F8F1E7);
  display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; padding: 32px;
  border: 1px solid #DCCCB8; box-shadow: var(--shadow);
}
.image-placeholder span { color: var(--muted); font-size: .9rem; max-width: 260px; }
.image-icon { font-size: 4.6rem; margin-bottom: 12px; }
.experience-badge {
  position: absolute; left: -28px; bottom: 34px; background: #fff; padding: 18px 22px;
  border-radius: 18px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.experience-badge strong { color: var(--primary); font-size: 1.5rem; }

.stats-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { padding: 26px 20px; text-align: center; border-right: 1px solid var(--border); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong, .stats-grid span { display: block; }
.stats-grid strong { color: var(--primary); }

.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading h2 { font-size: 3rem; }
.section-heading p { color: var(--muted); margin: 16px auto 0; }

.cards-grid { display: grid; gap: 22px; }
.benefits-grid, .services-grid { grid-template-columns: repeat(3, 1fr); }
.card, .service-card, .testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; transition: .2s ease;
}
.card:hover, .service-card:hover, .testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.icon, .service-card > span { font-size: 2rem; }
.card h3, .service-card h3 { margin: 14px 0 8px; }
.card p, .service-card p, .testimonial p { color: var(--muted); margin: 0; }
.service-card a, .text-link { display: inline-block; color: var(--primary); font-weight: 800; margin-top: 18px; }
.centered-cta { text-align: center; margin-top: 38px; }

.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.problem-grid h2 { font-size: 2.8rem; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 13px; }
.check-list li::before { content: "✓"; color: var(--primary); font-weight: 900; margin-right: 10px; }
.solution-box { padding: 40px; background: var(--primary-soft); border-radius: 28px; border: 1px solid #DCCCB8; }
.solution-box .large { display: block; font-size: 3rem; }
.solution-box h3 { font-size: 1.6rem; margin: 16px 0 10px; }
.solution-box p { color: var(--muted); }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.steps-grid article { background: #fff; border: 1px solid var(--border); border-radius: 20px; padding: 26px; }
.steps-grid article > span {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 800;
}
.steps-grid h3 { margin: 18px 0 8px; }
.steps-grid p { color: var(--muted); margin: 0; }

.before-after-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.comparison-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 12px; border: 1px solid var(--border); border-radius: 22px; background: #fff;
}
.comparison-card strong { grid-column: 1 / -1; padding: 10px 8px 4px; }


.section-dark { background: var(--dark); color: #fff; }
.eyebrow-light { color: #E1BD83; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: center; }
.about-grid h2 { font-size: 3rem; }
.about-grid p { color: #E9E1D7; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-points div { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); padding: 24px; border-radius: 18px; }
.about-points strong, .about-points span { display: block; }
.about-points strong { color: #fff; }
.about-points span { color: #D8CCC0; font-size: .9rem; margin-top: 5px; }

.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
.stars { color: #C39A5B; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial strong { display: block; margin-top: 18px; }

.faq-container { max-width: 860px; }
.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 0 20px; }
summary { cursor: pointer; list-style: none; font-weight: 700; padding: 20px 0; }
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 0; padding: 0 0 20px; }

.contact-section { background: linear-gradient(180deg, #fff, #F4EEE6); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
.contact-grid h2 { font-size: 3rem; }
.contact-grid > div > p { color: var(--muted); }
.contact-info { display: grid; gap: 10px; margin-top: 28px; color: #607273; }
.contact-form {
  background: #fff; padding: 30px; border: 1px solid var(--border); border-radius: 24px;
  box-shadow: var(--shadow); display: grid; gap: 16px;
}
.contact-form label { display: grid; gap: 7px; font-weight: 700; font-size: .92rem; }
input, select, textarea {
  width: 100%; border: 1px solid #D9CCBE; border-radius: 12px; padding: 13px 14px;
  outline: none; background: #fff; color: var(--text);
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,102,212,.1); }
.consent { grid-template-columns: auto 1fr; align-items: flex-start; font-weight: 500; color: var(--muted); }
.consent input { width: auto; margin-top: 4px; }
.contact-form small { color: var(--muted); text-align: center; }

.final-cta { background: var(--primary); color: #fff; padding: 56px 0; }
.final-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.final-cta h2 { font-size: 2.5rem; }
.final-cta p { margin: 10px 0 0; color: #F0E4D3; }

.footer { background: #052F35; color: #E8DFD5; padding: 64px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 46px; }
.footer-grid > div { display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: #D4C8BC; }
.footer-grid a:hover { color: #fff; }
.footer-brand { margin-bottom: 8px; }
.footer .brand-text small { color: #C9BDAF; }
.footer-bottom { margin-top: 42px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; font-size: .85rem; color: #B9ADA0; }

.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
  box-shadow: 0 15px 34px rgba(0,0,0,.22); transition: .2s ease;
}
.whatsapp-float:hover { transform: scale(1.06); }

@media (max-width: 960px) {
  .desktop-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute; top: 74px; left: 20px; right: 20px; display: none;
    flex-direction: column; align-items: stretch; background: #fff; padding: 18px;
    border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero-grid, .problem-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 42px; }
  .hero-card { max-width: 640px; }
  .image-placeholder { min-height: 420px; }
  .experience-badge { left: 20px; }
  .benefits-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .before-after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .container { width: calc(100% - 28px); max-width: 1120px; }
  .section { padding: 72px 0; }
  .hero { padding-top: 58px; }
  .hero h1 { font-size: 2.45rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .image-placeholder { min-height: 340px; }
  .experience-badge { bottom: 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .stats-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .benefits-grid, .services-grid, .testimonials-grid, .steps-grid, .about-points { grid-template-columns: 1fr; }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .final-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}


/* Detalhes dourados inspirados na identidade visual da Galv.Clean */
.eyebrow {
  color: var(--accent);
}

.hero h1 span {
  color: var(--primary);
}

.experience-badge {
  border: 1px solid rgba(195, 154, 91, 0.35);
}

.experience-badge strong {
  color: var(--accent-dark);
}

.stats-grid strong,
.service-card a,
.text-link {
  color: var(--primary);
}

.card .icon,
.service-card > span {
  filter: saturate(.85);
}

.solution-box {
  background: linear-gradient(145deg, var(--primary-soft), var(--accent-soft));
  border-color: #D9C5A8;
}

.steps-grid article > span {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 8px 18px rgba(7, 63, 70, .18);
}

.section-dark {
  background:
    radial-gradient(circle at 85% 20%, rgba(195,154,91,.14), transparent 28%),
    var(--dark);
}

.about-points div {
  border-color: rgba(195,154,91,.18);
}

.final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-light {
  color: var(--primary-dark);
}

.whatsapp-float {
  background: var(--primary);
  border: 2px solid var(--accent);
}

.contact-form,
.card,
.service-card,
.testimonial,
.steps-grid article,
details {
  background: #FFFCF8;
}


/* Logo com imagem */


.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  max-width: 180px;
}

/* Melhorias extras de responsividade */
.hero-copy,
.hero-card,
.contact-grid > div,
.contact-form,
.problem-grid > div,
.about-grid > div {
  min-width: 0;
}

.hero-card,
.contact-form,
.card,
.service-card,
.testimonial,
.steps-grid article,
.comparison-card,
.solution-box,
.about-points div {
  overflow: hidden;
}

.cards-grid,
.steps-grid,
.before-after-grid,
.stats-grid,
.about-points,
.footer-grid,
.contact-grid,
.problem-grid,
.hero-grid {
  align-items: stretch;
}

.hero-actions .btn,
.centered-cta .btn {
  text-align: center;
}

.nav {
  position: relative;
}

@media (max-width: 1100px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1120px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero h1 {
    font-size: 3.6rem;
  }
}

@media (max-width: 960px) {
  .header {
    position: sticky;
  }

  .nav {
    min-height: 82px;
    gap: 14px;
  }

  

  .brand-text strong {
    font-size: .96rem;
  }

  .brand-text small {
    font-size: .7rem;
    max-width: 150px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #FFFCF8;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(7,63,70,.08);
  }

  .nav-links {
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px;
    gap: 6px;
    border-radius: 18px;
  }

  .nav-links a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--bg-alt);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy {
    order: 1;
  }

  .hero-card {
    order: 2;
    max-width: 100%;
  }

  .image-placeholder {
    min-height: 320px;
    padding: 22px;
  }

  .experience-badge {
    left: 14px;
    right: auto;
    bottom: 14px;
    padding: 14px 16px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid div:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid div:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-grid,
  .contact-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: 1fr 1fr;
  }

  .final-cta-inner {
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .problem-grid h2,
  .contact-grid h2,
  .about-grid h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

  .hero-copy > p {
    font-size: 1rem;
    margin: 18px 0 24px;
  }

  .trust-list {
    gap: 10px;
    font-size: .88rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline {
    width: 100%;
  }

  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .service-card,
  .card,
  .testimonial,
  .steps-grid article {
    padding: 22px;
  }

  .final-cta {
    padding: 42px 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 24px);
    max-width: 1120px;
  }

  .nav {
    min-height: 78px;
  }

  

  .brand-text strong {
    font-size: .9rem;
  }

  .brand-text small {
    font-size: .64rem;
    max-width: 120px;
  }

  .hero {
    padding-top: 34px;
  }

  .image-placeholder {
    min-height: 260px;
    border-radius: 22px;
  }

  .experience-badge {
    position: static;
    margin-top: 14px;
    width: auto; display: inline-flex;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .stats-grid div:last-child {
    border-bottom: 0;
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .about-points {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  

  .contact-info {
    gap: 8px;
    font-size: .95rem;
  }

  .contact-form label {
    font-size: .9rem;
  }

  input,
  select,
  textarea {
    padding: 12px 13px;
  }

  .final-cta-inner {
    gap: 18px;
  }

  .final-cta .btn {
    width: 100%;
  }

  .footer {
    padding-top: 48px;
  }

  .footer-bottom {
    text-align: center;
  }
}


/* =========================================================
   AJUSTES FINAIS DE COMPATIBILIDADE E RESPONSIVIDADE
   ========================================================= */


img { max-width: 100%; height: auto; }
@media (max-width: 960px) {
  .hero h1 { font-size: 3rem; }
  .section-heading h2, .problem-grid h2, .contact-grid h2, .about-grid h2 { font-size: 2.4rem; }
  .image-placeholder { min-height: 320px; }
}
@media (max-width: 680px) {
  .container { width: calc(100% - 28px); max-width: 1120px; }
  .hero h1 { font-size: 2.45rem; }
  .section-heading h2, .problem-grid h2, .contact-grid h2, .about-grid h2, .final-cta h2 { font-size: 2rem; }
  
  
  .image-placeholder { min-height: 260px; }
}
@media (max-width: 420px) {
  .container { width: calc(100% - 20px); }
  .hero h1 { font-size: 2.1rem; }
  .brand-text small { display: none; }
  .nav { gap: 8px; }
  .btn { padding-left: 16px; padding-right: 16px; }
}


/* =========================================================
   LOGO TEXTUAL - SEM IMAGEM
   ========================================================= */

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-wordmark strong {
  color: var(--primary-dark);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-wordmark small {
  color: var(--muted);
  font-size: 0.70rem;
  margin-top: 5px;
  white-space: nowrap;
}

.footer-wordmark strong {
  color: #FFFCF8;
}

.footer-wordmark small {
  color: #C9BDAF;
}

@media (max-width: 600px) {
  .brand-wordmark strong {
    font-size: 1.15rem;
  }

  .brand-wordmark small {
    font-size: 0.62rem;
  }
}

@media (max-width: 420px) {
  .brand-wordmark small {
    white-space: normal;
    max-width: 130px;
  }
}


/* =========================================================
   REVISÃO RESPONSIVA FINAL
   Evita cortes horizontais em desktop, tablet e celular
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-width: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Impede elementos de Grid/Flex de forçarem largura maior que a tela */
.hero-grid,
.problem-grid,
.about-grid,
.contact-grid,
.cards-grid,
.benefits-grid,
.services-grid,
.testimonials-grid,
.steps-grid,
.before-after-grid,
.stats-grid,
.about-points,
.footer-grid,
.final-cta-inner,
.hero-copy,
.hero-card,
.card,
.service-card,
.testimonial,
.solution-box,
.contact-form,
.comparison-card,
.steps-grid article,
.about-points div {
  min-width: 0;
  max-width: 100%;
}

/* Grid seguro: as colunas podem realmente encolher */
.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
}

.contact-grid {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.benefits-grid,
.services-grid,
.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.before-after-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-grid {
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
}

/* Textos e links compridos não podem estourar o viewport */
h1,
h2,
h3,
p,
span,
strong,
small,
a,
li,
label,
summary {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contact-info a,
.footer a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

.btn {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding-top: 12px;
  padding-bottom: 12px;
}

input,
select,
textarea {
  min-width: 0;
  max-width: 100%;
}

.contact-form {
  overflow: visible;
}

.contact-form label {
  min-width: 0;
}

.consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
}

.consent input {
  width: 18px;
  height: 18px;
}

/* Evita que cards cortem conteúdo textual */
.hero-card,
.card,
.service-card,
.testimonial,
.steps-grid article,
.comparison-card,
.solution-box,
.about-points div {
  overflow: visible;
}

/* Avaliações Google */
.google-reviews-cta {
  margin-top: 36px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  background: #FFFCF8;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.google-rating > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.google-rating strong {
  font-size: 1rem;
}

.google-rating span {
  color: var(--muted);
  font-size: .85rem;
}

.google-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  color: #4285F4;
  font-size: 1.25rem;
  font-weight: 800;
}

.btn-google {
  flex-shrink: 0;
}

/* Cabeçalho */
.nav {
  width: 100%;
  min-width: 0;
}

.brand {
  min-width: 0;
  flex-shrink: 1;
}

.brand-wordmark {
  min-width: 0;
}

.menu-toggle {
  flex-shrink: 0;
}

/* Tablets */
@media (max-width: 960px) {
  .container {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-grid,
  .problem-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-after-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    width: 100%;
    max-width: 100%;
  }

  .experience-badge {
    left: 14px;
  }

  .nav-links {
    width: auto;
    max-width: 100%;
    left: 0;
    right: 0;
  }

  .google-reviews-cta {
    flex-wrap: wrap;
  }
}

/* Celulares */
@media (max-width: 680px) {
  .container {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .nav {
    min-height: 70px;
    gap: 10px;
  }

  .brand-wordmark strong {
    font-size: 1.1rem;
  }

  .brand-wordmark small {
    font-size: .62rem;
    max-width: 145px;
    white-space: normal;
  }

  .hero {
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .section-heading h2,
  .problem-grid h2,
  .contact-grid h2,
  .about-grid h2,
  .final-cta h2 {
    font-size: 1.9rem;
  }

  .hero-actions,
  .final-cta-inner {
    width: 100%;
  }

  .hero-actions .btn,
  .hero-actions .btn-outline,
  .final-cta .btn,
  .centered-cta .btn,
  .btn-google {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid,
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .about-points {
    grid-template-columns: minmax(0, 1fr);
  }

  .stats-grid div {
    border-right: 0;
  }

  .comparison-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .image-placeholder {
    min-height: 240px;
    padding: 20px;
  }

  .experience-badge {
    position: static;
    width: 100%;
    margin-top: 12px;
    align-items: center;
    text-align: center;
  }

  .solution-box,
  .contact-form,
  .card,
  .service-card,
  .testimonial,
  .steps-grid article {
    padding-left: 18px;
    padding-right: 18px;
  }

  .google-reviews-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .google-rating {
    width: 100%;
  }

  .contact-info {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
  }
}

/* Celulares pequenos */
@media (max-width: 420px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .problem-grid h2,
  .contact-grid h2,
  .about-grid h2,
  .final-cta h2 {
    font-size: 1.7rem;
  }

  .brand-wordmark small {
    display: block;
    max-width: 115px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .btn {
    font-size: .92rem;
    padding-left: 14px;
    padding-right: 14px;
  }

  .contact-form {
    padding: 18px 14px;
  }

  .google-reviews-cta {
    padding: 16px;
  }
}


/* =========================================================
   CORREÇÃO MOBILE - CENTRALIZAÇÃO E OVERFLOW
   ========================================================= */

html {
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Desktop: container centralizado sem somar padding à largura */
.container {
  width: auto;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Nenhum filho pode aumentar a largura da página */
main,
header,
footer,
section,
nav,
form,
.hero,
.hero-grid,
.hero-copy,
.hero-card,
.stats-strip,
.stats-grid,
.cards-grid,
.card,
.service-card,
.problem-grid,
.solution-box,
.steps-grid,
.before-after-grid,
.comparison-card,
.about-grid,
.about-points,
.testimonials-grid,
.testimonial,
.google-reviews-cta,
.contact-grid,
.contact-form,
.final-cta,
.final-cta-inner,
.footer-grid {
  max-width: 100%;
  min-width: 0;
}

/* URLs e textos longos sempre quebram */
a,
p,
span,
strong,
small,
li,
label,
summary {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contact-info,
.contact-info span,
.contact-info a,
.footer,
.footer a {
  overflow-wrap: anywhere;
}

/* =========================================================
   TABLET E CELULAR
   ========================================================= */

@media (max-width: 768px) {

  .container {
    width: auto;
    max-width: none;
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  /* No mobile usamos blocos simples para impedir overflow de Grid */
  .hero-grid,
  .problem-grid,
  .about-grid,
  .contact-grid,
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .before-after-grid,
  .about-points,
  .footer-grid {
    display: block;
    width: auto;
    max-width: 100%;
  }

  .hero-copy,
  .hero-card,
  .card,
  .service-card,
  .testimonial,
  .steps-grid article,
  .comparison-card,
  .solution-box,
  .about-points > div,
  .contact-form,
  .footer-grid > div {
    width: auto;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .card,
  .service-card,
  .testimonial,
  .steps-grid article,
  .comparison-card,
  .about-points > div {
    margin-bottom: 16px;
  }

  .hero-card {
    margin-top: 28px;
  }

  /* Faixa de estatísticas pode continuar em grid, mas segura */
  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .stats-grid > div {
    min-width: 0;
  }

  /* Cabeçalho ocupa exatamente a área disponível */
  .nav {
    width: auto;
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .nav-links {
    left: 0;
    right: 0;
    width: auto;
    max-width: 100%;
  }

  /* Textos */
  .hero h1 {
    font-size: 2.2rem;
    max-width: 100%;
  }

  .hero-copy > p,
  .section-heading,
  .section-heading p {
    max-width: 100%;
  }

  /* Botões não ultrapassam a tela */
  .btn,
  .hero-actions .btn,
  .hero-actions .btn-outline,
  .centered-cta .btn,
  .btn-google,
  .final-cta .btn {
    width: 100%;
    max-width: 100%;
  }

  /* Formulário */
  .contact-form {
    box-sizing: border-box;
    margin-top: 28px;
  }

  input,
  select,
  textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Avaliações Google */
  .google-reviews-cta {
    display: block;
    width: auto;
    max-width: 100%;
    box-sizing: border-box;
  }

  .google-rating {
    width: auto;
    max-width: 100%;
    margin-bottom: 18px;
  }

  /* Antes e depois */
  .comparison-card {
    display: block;
  }

  

  /* Badge de experiência não fica para fora */
  .experience-badge {
    position: static;
    left: auto;
    right: auto;
    width: auto;
    max-width: 100%;
    margin-top: 12px;
  }

  /* CTA final */
  .final-cta-inner {
    display: block;
    width: auto;
  }

  .final-cta-inner .btn {
    margin-top: 18px;
  }

  /* Rodapé */
  .footer-grid > div {
    margin-bottom: 28px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span {
    display: block;
  }
}

@media (max-width: 480px) {

  .container {
    margin-left: 12px;
    margin-right: 12px;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid > div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .section-heading h2,
  .problem-grid h2,
  .contact-grid h2,
  .about-grid h2,
  .final-cta h2 {
    font-size: 1.7rem;
  }

  .contact-form,
  .solution-box,
  .card,
  .service-card,
  .testimonial,
  .steps-grid article {
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand-wordmark strong {
    font-size: 1.05rem;
  }

  .brand-wordmark small {
    font-size: .6rem;
    max-width: 125px;
  }
}

/* =========================================================
   VÍDEOS - SEÇÃO DE RESULTADOS
   ========================================================= */

/* =========================================================
   VÍDEOS - CARDS COMPACTOS
   ========================================================= */

.before-after-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.comparison-card {
  width: 220px;
  max-width: 220px;
  padding: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;

  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;

  margin: 0;
}

.result-video {
  display: block;

  width: 200px;
  height: 112px;

  max-width: 100%;

  object-fit: cover;

  background: #000;
  border-radius: 10px;

  cursor: pointer;
}

.comparison-card strong {
  margin-top: 8px;
  padding: 0;

  font-size: 0.9rem;
  text-align: center;
}

/* Tablet */
@media (max-width: 768px) {

  .before-after-grid {
    gap: 14px;
  }

  .comparison-card {
    width: 200px;
    max-width: 200px;
  }

  .result-video {
    width: 180px;
    height: 101px;
  }
}

/* Celular */
@media (max-width: 480px) {

  .before-after-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .comparison-card {
    width: 190px;
    max-width: 190px;
  }

  .result-video {
    width: 170px;
    height: 96px;
  }
}