:root {
  --blue-950: #06202c;
  --blue-900: #0a3243;
  --blue-primary: #0a4d68;
  --blue-secondary: #0f89b8;
  --aqua: #5ce1e6;
  --aqua-soft: #dff8fb;
  --whatsapp: #25d366;
  --white: #ffffff;
  --surface: #f4f8fb;
  --surface-strong: #eef4f7;
  --text: #163847;
  --muted: #5f7480;
  --line: rgba(10, 77, 104, 0.1);
  --shadow: 0 10px 35px rgba(6, 32, 44, 0.08);
  --shadow-hover: 0 18px 40px rgba(10, 77, 104, 0.16);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(92, 225, 230, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f9fbfc 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--blue-primary);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 9999;
}

.skip-link:focus {
  left: 12px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(6, 32, 44, 0.04);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-primary);
  min-width: 0;
}

.brand__mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue-secondary);
  flex: 0 0 auto;
}

.brand__mark svg,
.brand__mark img {
  width: 42px;
  height: 42px;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}

.brand__text strong {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1rem;
}

.brand__text span {
  font-size: 0.88rem;
  color: var(--blue-secondary);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--blue-primary);
  font-weight: 700;
  font-size: 0.94rem;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(15, 137, 184, 0.22);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 12px;
  background: rgba(10, 77, 104, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  flex: 0 0 auto;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-primary);
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  padding: 24px 0 34px;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(125deg, rgba(6, 32, 44, 0.94), rgba(10, 77, 104, 0.85)),
    linear-gradient(135deg, #0a4d68 0%, #0c5877 42%, #0f89b8 100%);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__media {
  background:
    linear-gradient(90deg, rgba(6, 32, 44, 0.58), rgba(6, 32, 44, 0.18)),
    url("../img/foto%201.png") center/cover no-repeat;
  opacity: 0.46;
  transform: scale(1.03);
}

.hero__overlay {
  background:
    radial-gradient(circle at 20% 20%, rgba(92, 225, 230, 0.2), transparent 24%),
    radial-gradient(circle at 82% 28%, rgba(15, 137, 184, 0.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 34%);
}

.hero__shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.75fr);
  gap: 32px;
  align-items: center;
}

.hero__content {
  padding: 18px 0 0;
}

.hero__spotlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero__spotlight-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
  box-shadow: 0 0 0 8px rgba(92, 225, 230, 0.16);
}

.eyebrow,
.section__label {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.9rem, 4.8vw, 4.9rem);
  max-width: 12.5ch;
  color: var(--white);
  text-wrap: balance;
}

.hero__text {
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  max-width: 58ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  margin-top: 22px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  will-change: transform;
  text-align: center;
}

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

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.22);
}

.btn--whatsapp:hover {
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.3);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn--large {
  min-height: 54px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 auto;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
}

.btn__icon i {
  font-size: 1.1rem;
  line-height: 1;
}

.pulse {
  animation: pulse 2.1s infinite;
}

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

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

.hero__trust-item,
.hero-card,
.mini-stats__card,
.card,
.testimonial,
.process-card,
.photo-card {
  box-shadow: var(--shadow);
}

.hero__trust-item {
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero__trust-item strong,
.hero-card__list strong {
  display: block;
  font-size: 0.93rem;
  color: var(--white);
  margin-bottom: 2px;
}

.hero__trust-item span,
.hero-card__list span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card {
  align-self: stretch;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.hero-card__label {
  margin: 0 0 12px;
  color: var(--aqua);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.hero-card h2 {
  color: var(--white);
  font-size: clamp(1.55rem, 2.1vw, 2rem);
}

.hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.hero-card__list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hero-card__list div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

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

.section {
  padding: 96px 0;
}

.section--tight {
  padding-top: 0;
}

.section--soft {
  background: var(--surface);
}

.section__head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section__content h2,
.section__head h2,
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--blue-primary);
  text-wrap: balance;
}

.section__content p,
.section__head p,
.mini-stats__card p,
.card p,
.process-step p {
  color: var(--muted);
  font-size: 1rem;
}

.grid {
  display: grid;
  gap: 40px;
}

.grid--2 {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.mini-stats {
  margin-top: -42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.mini-stats__card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.mini-stats__card span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-secondary);
}

.mini-stats__card strong {
  display: block;
  margin-top: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 1.45rem;
  color: var(--blue-900);
}

.mini-stats__card p {
  margin: 8px 0 0;
}

.signature-band {
  padding: 12px 0 84px;
  background:
    radial-gradient(circle at 10% 50%, rgba(92, 225, 230, 0.12), transparent 20%),
    linear-gradient(180deg, var(--surface) 0%, #ffffff 100%);
}

.signature-band__inner {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 26px;
  align-items: start;
  padding: 28px 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(10, 77, 104, 0.08);
  box-shadow: var(--shadow);
}

.signature-band__lead {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  color: var(--blue-900);
}

.signature-band__text {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  color: var(--muted);
  max-width: 54ch;
}

.photo-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, rgba(0, 168, 232, 0.14), rgba(255, 255, 255, 0));
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(6, 32, 44, 0.08) 100%);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

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

.card,
.testimonial,
.process-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(10, 77, 104, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card:hover,
.testimonial:hover,
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(15, 137, 184, 0.18);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--blue-secondary);
  background: linear-gradient(180deg, rgba(15, 137, 184, 0.14), rgba(92, 225, 230, 0.08));
  margin-bottom: 18px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
}

.card h3,
.process-card h3 {
  font-size: 1.2rem;
  color: var(--blue-primary);
  margin-bottom: 10px;
}

.card p {
  margin: 0;
}

.benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}

.benefits li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 16px;
  align-items: flex-start;
}

.benefits li span {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.12);
  color: var(--whatsapp);
  font-weight: 800;
  margin-top: 2px;
}

.benefits strong,
.process-step strong {
  display: block;
  color: var(--blue-primary);
  margin-bottom: 3px;
}

.benefits p {
  margin: 0;
  color: var(--muted);
}

.process-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(92, 225, 230, 0.12), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.98));
}

.process-card__top {
  margin-bottom: 22px;
}

.shape-panel__kicker {
  margin: 0 0 12px;
  color: var(--blue-secondary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.process-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.process-step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-secondary));
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.process-step p {
  margin: 0;
}

.section--editorial {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(92, 225, 230, 0.12), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.editorial__panel,
.editorial-quote {
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.editorial__panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.98));
  border: 1px solid rgba(10, 77, 104, 0.08);
}

.editorial__panel h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--blue-primary);
}

.editorial__panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.editorial-quote {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(6, 32, 44, 0.94), rgba(10, 77, 104, 0.94)),
    linear-gradient(135deg, #0a4d68 0%, #0f89b8 100%);
  color: var(--white);
}

.editorial-quote p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.editorial-quote span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}

.testimonial {
  border-top: 4px solid rgba(37, 211, 102, 0.55);
}

.stars {
  color: #f4b400;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.testimonial p {
  margin: 0 0 18px;
  color: var(--text);
}

.testimonial strong {
  display: block;
  color: var(--blue-primary);
}

.testimonial span {
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(6, 32, 44, 0.95), rgba(10, 77, 104, 0.98)),
    radial-gradient(circle at top left, rgba(92, 225, 230, 0.2), transparent 30%),
    radial-gradient(circle at bottom right, rgba(15, 137, 184, 0.22), transparent 26%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(225deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(100%, 840px);
}

.section__label--light {
  color: var(--aqua);
}

.cta-section h2 {
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 60ch;
  margin: 14px auto 0;
}

.cta-section__info {
  margin: 24px 0 30px;
  display: flex;
  justify-content: center;
  gap: 16px 28px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.cta-note {
  width: min(100%, 620px);
  margin: 0 auto 28px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.cta-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1rem;
}

.cta-note span {
  color: rgba(255, 255, 255, 0.78);
}

.footer {
  background: #071a24;
  color: rgba(255, 255, 255, 0.82);
  padding: 34px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand--footer {
  color: var(--white);
}

.brand--footer .brand__text span {
  color: var(--aqua);
}

.footer__copy {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.footer__links a:hover {
  color: var(--white);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
  z-index: 1200;
  transition: transform 0.2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp i {
  font-size: 30px;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero__shell,
  .grid--2,
  .editorial,
  .signature-band__inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .hero {
    padding: 30px 0 46px;
  }

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

  .cards-grid--3,
  .mini-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header__cta {
    display: none;
  }

  .hero__content {
    padding-top: 38px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header__inner {
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 77, 104, 0.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 16px 34px rgba(10, 77, 104, 0.12);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 999;
  }

  .nav a {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(10, 77, 104, 0.04);
    white-space: normal;
  }

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

  .hero {
    min-height: auto;
    display: block;
    padding: 26px 0 58px;
  }

  .hero__shell {
    gap: 20px;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .hero__text {
    font-size: 1rem;
  }

  .hero__actions,
  .hero__trust {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-card,
  .mini-stats__card,
  .card,
  .testimonial,
  .process-card {
    padding: 22px;
  }

  .section {
    padding: 72px 0;
  }

  .section__content h2,
  .section__head h2,
  .cta-section h2 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .cards-grid--4,
  .cards-grid--3 {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 78px 0;
  }

  .cta-section__info {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 900px) and (max-height: 860px) {
  .header__inner {
    min-height: 74px;
  }

  .hero {
    min-height: calc(100svh - 74px);
    padding: 18px 0 24px;
  }

  .hero__shell {
    gap: 24px;
  }

  .hero__content {
    padding-top: 8px;
  }

  .hero__spotlight {
    margin-bottom: 14px;
    padding: 9px 14px;
    font-size: 0.8rem;
  }

  .eyebrow,
  .section__label {
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 4.2vw, 4.1rem);
    max-width: 13.5ch;
    line-height: 0.98;
  }

  .hero__text {
    margin-top: 12px;
    font-size: 0.95rem;
    max-width: 52ch;
  }

  .hero__actions {
    margin-top: 18px;
    gap: 12px;
  }

  .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .hero__trust {
    margin-top: 18px;
    gap: 10px;
  }

  .hero__trust-item {
    padding: 12px;
    border-radius: 16px;
  }

  .hero__trust-item strong {
    font-size: 0.88rem;
  }

  .hero__trust-item span {
    font-size: 0.79rem;
    line-height: 1.35;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
  }

  .hero-card__label {
    margin-bottom: 8px;
    font-size: 0.74rem;
  }

  .hero-card h2 {
    font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  }

  .hero-card p {
    margin-top: 10px;
    font-size: 0.93rem;
  }

  .hero-card__list {
    margin-top: 12px;
    gap: 8px;
  }

  .hero-card__list div {
    padding-top: 10px;
  }

  .hero-card__list strong {
    font-size: 0.88rem;
  }

  .hero-card__list span {
    font-size: 0.8rem;
  }
}

@media (min-width: 900px) and (max-height: 760px) {
  .hero {
    padding: 14px 0 18px;
  }

  .hero__shell {
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 3.8vw, 3.6rem);
    max-width: 14ch;
  }

  .hero__text {
    font-size: 0.91rem;
    max-width: 50ch;
  }

  .hero__actions {
    margin-top: 14px;
  }

  .hero__trust {
    margin-top: 14px;
  }

  .hero-card h2 {
    font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  }

  .hero-card p,
  .hero-card__list span {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .brand__mark,
  .brand__mark svg,
  .brand__mark img {
    width: 38px;
    height: 38px;
  }

  .brand__text strong {
    font-size: 0.92rem;
  }

  .brand__text span,
  .eyebrow,
  .section__label {
    font-size: 0.78rem;
  }

  .hero {
    padding-bottom: 48px;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  .section {
    padding: 60px 0;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }

  .floating-whatsapp i {
    font-size: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
