:root {
  --navy: #061a3a;
  --navy-2: #102b68;
  --blue: #22c7ff;
  --cyan: #8feaff;
  --orange: #ff6b00;
  --yellow: #ffd200;
  --lime: #c7ff2e;
  --red: #ff3158;
  --ink: #08162d;
  --muted: #526172;
  --paper: #f3f7fb;
  --surface: #ffffff;
  --line: #d8e1ea;
  --radius: 4px;
  --shadow: 0 22px 70px rgba(6, 26, 58, 0.18);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr minmax(250px, 310px) auto;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 10px 34px rgba(6, 26, 58, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: clamp(190px, 20vw, 272px);
  max-height: 58px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 0.88rem;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.site-nav a {
  padding: 9px 0;
  border-bottom: 3px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.header-search {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
}

.header-search input {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.header-search input:focus,
.area-form input:focus,
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

.header-search button,
.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 18px;
  font-weight: 950;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-search button {
  min-height: 42px;
  color: var(--navy);
  background: var(--yellow);
}

.header-cta,
.btn-primary {
  color: var(--navy);
  background: var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 210, 0, 0.28);
}

.btn-secondary {
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta:hover,
.btn:hover,
.header-search button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.search-result {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 72px;
  padding: 14px 46px 14px 14px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.search-result-content {
  display: grid;
  gap: 8px;
}

.result-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  background: #ffffff;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.result-close:hover,
.result-close:focus {
  color: #ffffff;
  background: var(--navy);
}

.search-result strong {
  display: block;
  font-weight: 950;
}

.search-result span {
  color: var(--muted);
}

.search-result a {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.search-result.is-success {
  border-color: #11b981;
  background: #e9fff6;
}

.search-result.is-warning {
  border-color: var(--orange);
  background: #fff4e9;
}

.search-result.is-error {
  border-color: var(--red);
  background: #fff0f3;
}

.header-result {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  z-index: 40;
  display: none;
  width: min(420px, 88vw);
  max-height: min(320px, calc(100svh - 190px));
  overflow-y: auto;
  box-shadow: var(--shadow);
}

.header-result.has-result {
  display: grid;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 88svh;
  padding: 118px 0 74px;
  overflow: hidden;
  color: #ffffff;
  background: var(--navy);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.98) 0%, rgba(6, 26, 58, 0.86) 45%, rgba(6, 26, 58, 0.18) 100%),
    linear-gradient(0deg, rgba(6, 26, 58, 0.78), transparent 42%);
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.hero-copy {
  max-width: 780px;
}

.hero-institutional-video {
  width: min(100%, 520px);
  margin: 0 0 22px;
  overflow: hidden;
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: #000000;
  box-shadow: 0 18px 44px rgba(3, 16, 37, 0.38);
}

.hero-institutional-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000000;
  object-fit: cover;
}

.kicker {
  margin: 0 0 13px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.kicker.dark {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.95rem, 8vw, 6.1rem);
  font-weight: 950;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 950;
}

h3 {
  font-size: 1.17rem;
  font-weight: 950;
}

.hero-text {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.17rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions .btn {
  min-height: 54px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-left: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
  font-weight: 850;
}

.hero-card {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 2px solid rgba(143, 234, 255, 0.56);
  border-radius: var(--radius);
  background: rgba(6, 26, 58, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.image-note,
.placeholder-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 8px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.7px;
}

.hero-card > strong {
  font-size: 1.55rem;
  line-height: 1.05;
}

.hero-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-card span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card b {
  color: var(--yellow);
}

.quick-band {
  position: relative;
  z-index: 3;
  margin-top: -44px;
  padding-bottom: 24px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.quick-grid article {
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 22px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(6, 26, 58, 0.15);
}

.quick-grid span,
.service-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  color: var(--navy);
  background: var(--lime);
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.quick-grid strong {
  font-size: 1.18rem;
  line-height: 1.15;
}

.quick-grid p,
.area-box p,
.section-heading p,
.seo-copy p,
.service-card small,
.service-card p,
.hours-card p,
.steps-grid p,
.social-grid p,
.faq-list p,
.contact-section p,
.site-footer p {
  color: var(--muted);
}

.section {
  padding: 88px 0;
}

.area-section {
  background:
    linear-gradient(135deg, rgba(34, 199, 255, 0.18), transparent 46%),
    #ffffff;
}

.area-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 34px;
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.area-box > div:first-child {
  display: grid;
  gap: 18px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips button,
.chips a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0 10px;
  color: var(--navy);
  background: #ffffff;
  font-weight: 850;
}

.chips button:hover,
.chips a:hover {
  background: var(--yellow);
}

.area-form {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.area-form label,
.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 950;
}

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

.field-row input,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  outline: none;
}

.lead-form textarea {
  min-height: 118px;
  padding-top: 12px;
  resize: vertical;
}

.before-after-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(6, 26, 58, 0.97), rgba(16, 43, 104, 0.96)),
    var(--navy);
}

.section-heading {
  width: min(780px, 100%);
  margin: 0 auto 38px;
  text-align: center;
}

.before-after-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.carousel {
  position: relative;
  display: grid;
  gap: 18px;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 260ms ease;
  will-change: transform;
}

.before-card {
  flex: 0 0 50%;
  min-width: 0;
  padding: 0 8px;
}

.split-photo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 3px solid var(--cyan);
  border-radius: var(--radius);
  background: #000;
}

.split-photo::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.split-photo figure {
  position: relative;
  margin: 0;
}

.split-photo img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.split-photo figcaption {
  position: absolute;
  left: 10px;
  top: 10px;
  min-height: 30px;
  padding: 5px 9px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.placeholder-badge {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  justify-content: center;
  background: rgba(143, 234, 255, 0.94);
}

.zoom-seat {
  object-position: center 62%;
}

.zoom-front {
  object-position: center 84%;
}

.zoom-wide {
  object-position: center top;
}

.before-card h3 {
  margin-top: 16px;
  color: #ffffff;
  font-size: 1.28rem;
}

.before-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.carousel-arrow {
  position: absolute;
  top: 155px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--yellow);
  font-size: 2.2rem;
  line-height: 0;
  font-weight: 950;
  padding: 0 0 4px;
}

.carousel-arrow.prev {
  left: -10px;
}

.carousel-arrow.next {
  right: -10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--cyan);
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.carousel-dot.is-active {
  width: 34px;
  background: var(--yellow);
  border-color: var(--yellow);
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.seo-section {
  background: #ffffff;
}

.seo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
}

.seo-copy {
  display: grid;
  gap: 18px;
  font-size: 1.07rem;
}

.services-section {
  background:
    linear-gradient(180deg, #f3f7fb 0, #ffffff 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  display: grid;
  gap: 13px;
  min-height: 286px;
  padding: 22px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(6, 26, 58, 0.08);
}

.service-card strong,
.service-card b {
  color: var(--navy);
}

.service-card a {
  align-self: end;
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.service-card.strong {
  color: #ffffff;
  background: var(--navy);
  border-color: var(--blue);
}

.service-card.strong p,
.service-card.strong small {
  color: rgba(255, 255, 255, 0.88);
}

.service-card.strong h3,
.service-card.strong b {
  color: #ffffff;
}

.payment-section {
  color: #ffffff;
  background: var(--navy);
}

.payment-grid,
.guarantee-grid,
.hours-grid,
.social-grid,
.faq-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: start;
}

.payment-grid > div:first-child p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.payment-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.payment-cards article {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px;
  border: 2px solid rgba(143, 234, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.payment-cards span {
  display: block;
  color: var(--yellow);
  font-weight: 950;
  margin-bottom: 0;
}

.payment-cards strong {
  font-size: 0.88rem;
  line-height: 1.25;
}

.guarantee-band {
  padding: 58px 0;
  color: var(--navy);
  background: var(--yellow);
}

.guarantee-grid {
  align-items: center;
}

.guarantee-grid p {
  font-size: 1.12rem;
}

.guarantee-grid strong {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  color: #ffffff;
  background: var(--navy);
  border-radius: var(--radius);
}

.hours-section {
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.14), transparent 50%),
    #ffffff;
}

.hours-card {
  min-height: 280px;
  padding: 28px;
  border: 3px solid var(--orange);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hours-card p:last-child {
  margin-top: 18px;
}

.hours-list {
  display: grid;
  gap: 12px;
}

.hours-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 22px;
  border: 2px solid var(--navy);
  border-left: 8px solid var(--orange);
  border-radius: var(--radius);
  background: #ffffff;
}

.hours-list span {
  color: var(--muted);
  font-weight: 800;
}

.hours-list strong {
  color: var(--navy);
  font-size: 1.4rem;
}

.steps-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(16, 43, 104, 0.95), rgba(6, 26, 58, 0.98)),
    var(--navy);
}

.steps-section .section-heading p {
  color: var(--yellow);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.steps-grid article {
  min-height: 230px;
  padding: 22px;
  border: 2px solid rgba(143, 234, 255, 0.5);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
}

.steps-grid p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
}

.social-section {
  background: #ffffff;
}

.placeholder-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.placeholder-stack span {
  padding: 14px;
  border: 2px dashed var(--orange);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff7ee;
  font-weight: 950;
}

.review-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.review-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 2px solid var(--navy);
  border-left: 7px solid var(--yellow);
  border-radius: var(--radius);
  background: #f8fbff;
}

.review-stars {
  color: var(--orange);
  font-size: 1.08rem;
  letter-spacing: 1px;
}

.review-card p {
  color: var(--ink);
}

.review-card strong {
  color: var(--navy);
}

.review-card span {
  color: var(--muted);
  font-weight: 850;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-cards article {
  min-height: 134px;
  padding: 18px;
  border: 2px solid var(--line);
  border-top: 7px solid var(--blue);
  border-radius: var(--radius);
  background: #ffffff;
}

.trust-cards article:nth-child(2n) {
  border-top-color: var(--orange);
}

.trust-cards strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  background: #ffffff;
}

.faq-list summary {
  padding: 18px;
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  padding: 0 18px 18px;
}

.contact-section {
  padding: 90px 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, 0.92), rgba(6, 26, 58, 0.98) 58%),
    var(--navy);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 18px;
}

.contact-highlights {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-highlights span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 12px;
  color: var(--navy);
  background: var(--cyan);
  border-radius: var(--radius);
  font-weight: 950;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  display: grid;
  gap: 6px;
  min-height: 24px;
  padding: 16px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  background: #eef8ff;
  box-shadow: 8px 8px 0 rgba(6, 26, 58, 0.12);
}

.form-status[hidden] {
  display: none;
}

.form-status strong {
  font-size: 1.05rem;
  font-weight: 950;
}

.form-status span {
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-success {
  border-color: #00a66a;
  background: #e8fff4;
}

.form-status.is-error {
  border-color: var(--orange);
  background: #fff1e8;
}

.site-footer {
  padding: 44px 0 86px;
  color: #ffffff;
  background: #031025;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer-brand img {
  width: 230px;
  margin-bottom: 16px;
}

.site-footer nav,
.site-footer .footer-grid > div {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer strong {
  color: var(--yellow);
}

.site-footer a,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.floating-whatsapp {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 50;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--yellow);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(6, 26, 58, 0.3);
  font-weight: 950;
}

.floating-whatsapp span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  margin-left: 10px;
  align-items: center;
  justify-content: center;
  color: #25d366;
  font-size: 1rem;
  line-height: 1;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.whatsapp-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(3, 16, 37, 0.68);
}

.whatsapp-lead-modal[hidden] {
  display: none;
}

.whatsapp-lead-dialog {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(100%, 430px);
  padding: 26px;
  border: 3px solid var(--yellow);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(3, 16, 37, 0.32);
}

.whatsapp-lead-dialog h2 {
  font-size: 1.65rem;
  line-height: 1.05;
}

.whatsapp-lead-dialog form {
  display: grid;
  gap: 14px;
}

.whatsapp-lead-dialog label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 950;
}

.whatsapp-lead-dialog input {
  width: 100%;
  min-height: 50px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 0 13px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  outline: none;
}

.whatsapp-lead-dialog input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.18);
}

.whatsapp-lead-dialog .btn {
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  color: var(--navy);
  background: #ffffff;
  font-size: 1.4rem;
  font-weight: 950;
  line-height: 1;
}

.home-page {
  --home-wide-container: min(calc(100% - 36px), max(1180px, 74vw));
}

.home-video-hero {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(34px, 5svh, 72px) 0;
}

.home-video-hero .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 26, 58, 0.94) 0%, rgba(6, 26, 58, 0.84) 48%, rgba(6, 26, 58, 0.42) 100%),
    linear-gradient(0deg, rgba(6, 26, 58, 0.78), rgba(6, 26, 58, 0.08) 54%);
}

.home-video-hero .hero-grid {
  width: var(--home-wide-container);
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(12px, 1.7vw, 26px);
  align-items: stretch;
}

.home-video-hero .hero-institutional-video {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: clamp(420px, 48svh, 640px);
  justify-self: center;
  margin: 0;
  border: 4px solid var(--cyan);
  box-shadow: 0 24px 70px rgba(3, 16, 37, 0.44);
}

.home-video-hero .hero-institutional-video video {
  height: 100%;
  aspect-ratio: auto;
  object-position: center;
}

.home-video-hero .hero-copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  justify-self: center;
  padding: clamp(24px, 2.8vw, 36px);
  border: 2px solid rgba(143, 234, 255, 0.48);
  border-left: 8px solid var(--yellow);
  border-radius: var(--radius);
  background: rgba(6, 26, 58, 0.84);
  box-shadow: 0 24px 70px rgba(3, 16, 37, 0.34);
  backdrop-filter: blur(10px);
}

.home-video-hero h1 {
  max-width: 11ch;
  margin-top: 14px;
  font-size: clamp(3rem, 4.2vw, 5rem);
}

.home-video-hero .hero-text {
  max-width: 46ch;
  margin-top: 18px;
  font-size: clamp(1.05rem, 1.12vw, 1.28rem);
}

.home-video-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 26px;
}

.home-video-hero .hero-actions .btn {
  min-height: 52px;
  padding: 0 18px;
  font-size: 0.98rem;
}

.home-video-hero .trust-strip {
  margin-top: 24px;
}

.home-video-hero .trust-strip span {
  min-height: 38px;
  font-size: 0.86rem;
}

.home-page .social-grid {
  grid-template-columns: minmax(0, 1fr);
}

.home-page .social-grid > div:first-child {
  width: min(100%, 860px);
  margin: 0 auto;
}

.home-page .section > .container,
.home-page .guarantee-band > .container,
.home-page .contact-section > .container,
.home-page .site-footer > .container {
  width: var(--home-wide-container);
}

@media (min-width: 1440px) {
  .home-page {
    font-size: 17px;
  }

  .home-page .site-header {
    grid-template-columns: auto 1fr minmax(300px, 380px) auto;
    gap: clamp(20px, 1.6vw, 30px);
    min-height: 88px;
    padding: 0 clamp(28px, 2.2vw, 42px);
  }

  .home-page .brand img {
    width: clamp(230px, 15vw, 320px);
    max-height: 68px;
  }

  .home-page .site-nav {
    gap: 24px;
    font-size: 0.94rem;
  }

  .home-page .header-search input,
  .home-page .header-search .btn,
  .home-page .header-cta {
    min-height: 50px;
  }

  .home-video-hero .hero-institutional-video {
    height: clamp(460px, 48svh, 640px);
  }

  .home-page .section {
    padding: clamp(96px, 8svh, 132px) 0;
  }

  .home-page .guarantee-band {
    padding: clamp(64px, 6svh, 90px) 0;
  }

  .home-page .contact-section {
    padding: clamp(96px, 8svh, 136px) 0;
  }

  .home-page .area-box,
  .home-page .payment-grid,
  .home-page .guarantee-grid,
  .home-page .hours-grid,
  .home-page .contact-grid {
    gap: clamp(42px, 3vw, 70px);
  }

  .home-page .area-box,
  .home-page .hours-card,
  .home-page .lead-form {
    padding: clamp(30px, 2.1vw, 44px);
  }

  .home-page .section-heading {
    width: min(900px, 100%);
    margin-bottom: 48px;
  }

  .home-page .split-photo img {
    height: clamp(380px, 22vw, 520px);
  }

  .home-page .service-grid,
  .home-page .payment-cards,
  .home-page .steps-grid {
    gap: 20px;
  }

  .home-page .service-card {
    min-height: 330px;
    padding: 28px;
  }

  .home-page .steps-grid article {
    min-height: 270px;
    padding: 28px;
  }

  .home-page .review-stack {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
  }

  .home-page .social-grid > div:first-child {
    width: 100%;
  }
}

@media (min-width: 1800px) {
  .home-page {
    --home-wide-container: min(calc(100% - 56px), 1680px);
    font-size: 18px;
  }

  .home-video-hero .hero-institutional-video {
    height: clamp(520px, 52svh, 700px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
    align-items: center;
    min-height: 112px;
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 112px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: #ffffff;
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 22px 50px rgba(6, 26, 58, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - 24px));
    transition: transform 200ms ease, opacity 160ms ease, visibility 160ms ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-grid,
  .area-box,
  .seo-grid,
  .payment-grid,
  .guarantee-grid,
  .hours-grid,
  .social-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 520px;
  }

  .home-video-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .home-video-hero .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-video-hero .hero-institutional-video {
    grid-column: auto;
    grid-row: auto;
    height: clamp(390px, 50svh, 540px);
  }

  .home-video-hero .hero-copy {
    grid-column: auto;
    grid-row: auto;
    display: block;
    padding: 22px;
    border-top: 0;
  }

  .home-video-hero .hero-actions {
    justify-content: flex-start;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-cards,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .before-card {
    flex-basis: 100%;
  }
}

@media (max-width: 720px) {
  .home-page {
    --home-wide-container: min(calc(100% - 28px), var(--container));
  }

  body {
    padding-bottom: 68px;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    min-height: 116px;
    padding: 10px 14px;
  }

  .site-nav {
    top: calc(116px + 10px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 14px;
    background: #f3f8ff;
    border-top: 2px solid var(--blue);
    border-bottom: 3px solid var(--blue);
    box-shadow: 0 18px 42px rgba(6, 26, 58, 0.18);
  }

  .site-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 2px solid #b8d7f4;
    color: var(--navy);
    background: #ffffff;
    text-align: center;
    font-size: 0.9rem;
  }

  .site-nav a[href="#orcamento"] {
    grid-column: 1 / -1;
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .brand img {
    width: 186px;
  }

  .header-search {
    grid-template-columns: 1fr 86px;
  }

  .header-result {
    left: 0;
    right: 0;
    width: 100%;
    max-height: min(250px, calc(100svh - 170px));
  }

  .header-search input {
    min-width: 0;
    font-size: 0.9rem;
  }

  .header-search button {
    padding: 0 8px;
    font-size: 0.84rem;
  }

  .hero {
    min-height: auto;
    padding: 92px 0 58px;
  }

  .hero-media img {
    object-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(6, 26, 58, 0.98) 0%, rgba(6, 26, 58, 0.88) 74%, rgba(6, 26, 58, 0.42) 100%),
      linear-gradient(0deg, rgba(6, 26, 58, 0.78), transparent 46%);
  }

  h1 {
    font-size: 2.65rem;
  }

  .hero-text {
    font-size: 1.03rem;
  }

  .hero-copy {
    padding-bottom: 72px;
  }

  .home-video-hero {
    padding: 54px 0 58px;
  }

  .home-video-hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .home-video-hero .hero-copy {
    display: block;
    padding: 20px;
    padding-bottom: 20px;
  }

  .home-video-hero .hero-actions {
    justify-content: flex-start;
  }

  .home-video-hero h1 {
    font-size: 2.45rem;
  }

  .home-video-hero .hero-institutional-video {
    height: clamp(230px, 40svh, 330px);
    aspect-ratio: auto;
  }

  .hero-actions,
  .hero-actions .btn,
  .center-cta .btn,
  .lead-form .btn {
    width: 100%;
  }

  .trust-strip span {
    width: 100%;
  }

  .quick-band {
    margin-top: 0;
    padding-top: 14px;
  }

  .quick-grid,
  .service-grid,
  .payment-cards,
  .steps-grid,
  .trust-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 64px 0;
  }

  .area-box,
  .lead-form,
  .hours-card {
    padding: 20px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .field-row .btn {
    width: 100%;
  }

  .split-photo img {
    height: 230px;
  }

  .carousel-arrow {
    top: 102px;
    width: 42px;
    height: 42px;
  }

  .hours-list article {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    display: none;
  }

  .floating-whatsapp.is-visible {
    display: flex;
  }
}
