:root {
  --bg: #081623;
  --bg-soft: #0f2438;
  --bg-card: #10263b;
  --surface: #ffffff;
  --surface-alt: #f2f6f9;
  --surface-tint: #edf4f7;
  --line: rgba(10, 32, 51, 0.12);
  --line-strong: rgba(142, 204, 244, 0.24);
  --text: #102234;
  --text-soft: #5b6c7c;
  --text-invert: #ebf5ff;
  --primary: #0f5e9c;
  --primary-strong: #0a74bd;
  --accent: #2ecf88;
  --accent-soft: #96f0c3;
  --shadow-lg: 0 28px 70px rgba(8, 22, 35, 0.18);
  --shadow-md: 0 18px 38px rgba(8, 22, 35, 0.11);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 92px;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(64, 162, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eff4f7 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  display: block;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -48px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--text-invert);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.footer-links a:focus-visible,
.footer-social:focus-visible {
  outline: 3px solid rgba(46, 207, 136, 0.35);
  outline-offset: 3px;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary-strong), var(--accent));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(22, 115, 183, 0.26);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text-invert);
}

.section--light .button--secondary,
.section--tint .button--secondary {
  background: transparent;
  border-color: rgba(15, 94, 156, 0.18);
  color: var(--primary);
}

.button--ghost {
  background: rgba(15, 94, 156, 0.08);
  border-color: rgba(15, 94, 156, 0.12);
  color: var(--primary);
}

.button--sm {
  min-height: 46px;
  padding-inline: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 0;
  transition:
    padding 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  padding: 12px 0;
  background: rgba(8, 22, 35, 0.82);
  box-shadow: 0 16px 32px rgba(6, 16, 26, 0.2);
  backdrop-filter: blur(20px);
}

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

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

.brand img {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  object-fit: contain;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.18);
  padding: 7px;
}

.brand-copy {
  display: grid;
  gap: 4px;
  color: var(--text-invert);
}

.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-copy small {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(235, 245, 255, 0.72);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.96rem;
  font-weight: 700;
  color: rgba(235, 245, 255, 0.84);
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #86d4ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-invert);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero-section {
  position: relative;
  overflow: clip;
  padding: calc(var(--header-height) + 56px) 0 80px;
  background:
    linear-gradient(135deg, rgba(7, 17, 28, 0.98), rgba(12, 39, 61, 0.95)),
    radial-gradient(circle at top right, rgba(46, 207, 136, 0.18), transparent 24%);
  color: var(--text-invert);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  opacity: 0.35;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 48px;
}

.hero-copy h1,
.section-heading h2,
.cta-shell h2,
.site-footer h3,
.contact-form h3,
.service-card h3,
.info-card h3,
.advantage-card h3,
.timeline-card h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.85rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-lead {
  max-width: 60ch;
  margin: 24px 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: rgba(235, 245, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-sectors {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-sectors li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
  color: rgba(235, 245, 255, 0.86);
}

.hero-visual {
  position: relative;
}

.visual-panel {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(143, 207, 255, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(5, 14, 22, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-diagram {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-diagram svg {
  width: 100%;
  height: auto;
}

.hero-diagram--image {
  position: relative;
  min-height: 440px;
  background: #0b2134;
}

.hero-diagram--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 29, 0.08), rgba(6, 18, 29, 0.34)),
    radial-gradient(circle at top right, rgba(24, 163, 255, 0.18), transparent 26%);
  z-index: 1;
}

.hero-diagram--image::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  z-index: 2;
}

.hero-visual-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.visual-badge {
  position: absolute;
  display: grid;
  gap: 6px;
  width: min(220px, 60%);
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(143, 207, 255, 0.26);
  background: rgba(6, 18, 29, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  z-index: 4;
}

.visual-badge strong {
  font-size: 1rem;
}

.visual-badge span {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(235, 245, 255, 0.7);
}

.visual-badge--top {
  top: 18px;
  right: 18px;
}

.visual-badge--bottom {
  left: -18px;
  bottom: -18px;
}

.hero-highlights {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.highlight-card {
  padding: 22px 22px 20px;
  border: 1px solid rgba(143, 207, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.highlight-card p {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(235, 245, 255, 0.76);
}

.highlight-value {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.section {
  padding: 108px 0;
}

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

.section--tint {
  background: linear-gradient(180deg, #eff5f8 0%, #eaf0f4 100%);
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(46, 207, 136, 0.12), transparent 26%),
    linear-gradient(180deg, #081623 0%, #0b1f30 100%);
  color: var(--text-invert);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.cta-shell h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.section-heading p,
.cta-shell p,
.service-card p,
.info-card p,
.advantage-card p,
.timeline-card p,
.contact-form p,
.site-footer p {
  margin: 18px 0 0;
  font-size: 1rem;
  line-height: 1.78;
  color: var(--text-soft);
}

.section-heading--light p,
.section-heading--light h2,
.section--dark .advantage-card p,
.cta-shell p,
.cta-shell h2 {
  color: var(--text-invert);
}

.section-heading--light p,
.cta-shell p {
  color: rgba(235, 245, 255, 0.74);
}

.about-grid,
.services-grid,
.advantages-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

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

.info-card,
.service-card,
.advantage-card,
.timeline-card,
.contact-form {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.info-card,
.service-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
}

.info-card,
.service-card,
.advantage-card,
.timeline-card,
.contact-form {
  padding: 30px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 94, 156, 0.12), rgba(46, 207, 136, 0.16));
  color: var(--primary);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.info-card h3,
.service-card h3,
.contact-form h3 {
  margin-top: 22px;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 94, 156, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.chip-list li,
.clients-grid span {
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 94, 156, 0.12);
  background: rgba(15, 94, 156, 0.05);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.advantage-card {
  border: 1px solid rgba(143, 207, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(9, 22, 35, 0.16));
}

.advantage-card span,
.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(24, 163, 255, 0.18), rgba(63, 208, 143, 0.24));
  color: var(--accent-soft);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.advantage-card h3,
.timeline-card h3 {
  margin-top: 20px;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

.timeline-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border: 1px solid var(--line);
}

.timeline-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-strong), var(--accent));
}

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

.clients-grid span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 24px rgba(8, 22, 35, 0.06);
}

.cta-section {
  background:
    radial-gradient(circle at center left, rgba(63, 208, 143, 0.13), transparent 25%),
    linear-gradient(135deg, #071421 0%, #0d2a44 100%);
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(143, 207, 255, 0.18);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: 32px;
  align-items: start;
}

.contact-heading {
  margin-bottom: 0;
  padding-top: 12px;
}

.footer-links {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-form {
  padding: 34px;
}

.contact-form label {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f7fafc;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(15, 94, 156, 0.42);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(24, 163, 255, 0.12);
}

.form-note {
  min-height: 24px;
  font-size: 0.92rem;
}

.form-note.is-error {
  color: #b63d3d;
}

.form-note.is-success {
  color: #0f7c52;
}

.site-footer {
  padding: 90px 0 28px;
  background:
    radial-gradient(circle at top left, rgba(24, 163, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #071421 0%, #081623 100%);
  color: var(--text-invert);
}

.footer-grid {
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.95fr;
  align-items: start;
}

.brand--footer {
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 36ch;
  color: rgba(235, 245, 255, 0.74);
}

.site-footer h3 {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.footer-links li {
  margin-top: 12px;
  color: rgba(235, 245, 255, 0.76);
}

.footer-links a {
  color: rgba(235, 245, 255, 0.76);
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 800;
  color: #9fd8ff;
}

.footer-social::after {
  content: "↗";
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(235, 245, 255, 0.7);
}

.footer-bottom a {
  font-weight: 800;
  color: #9fd8ff;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  padding: 0;
  border: 4px solid #ffffff;
  border-radius: 50%;
  background: #10d75a;
  color: #ffffff;
  box-shadow:
    0 20px 36px rgba(16, 215, 90, 0.28),
    0 0 0 10px rgba(16, 215, 90, 0.12);
  line-height: 0;
  animation: whatsappPulse 2.8s ease-in-out infinite;
}

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

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px) scale(1.03);
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow:
      0 20px 36px rgba(16, 215, 90, 0.28),
      0 0 0 0 rgba(16, 215, 90, 0.18);
  }

  50% {
    box-shadow:
      0 20px 36px rgba(16, 215, 90, 0.32),
      0 0 0 12px rgba(16, 215, 90, 0.08);
  }
}

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

body.has-motion .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

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

  .button,
  .reveal,
  .site-header,
  .menu-toggle span,
  .whatsapp-float {
    transition: none;
  }

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

@media (max-width: 1120px) {
  .about-grid,
  .advantages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-grid,
  .contact-layout,
  .cta-shell {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    display: grid;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 82px;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 8px) 20px auto;
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid rgba(143, 207, 255, 0.16);
    border-radius: 26px;
    background: rgba(8, 22, 35, 0.94);
    box-shadow: var(--shadow-lg);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    padding: 12px 6px;
  }

  .nav-cta {
    margin-top: 8px;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-grid,
  .contact-layout,
  .footer-grid,
  .services-grid,
  .about-grid,
  .advantages-grid,
  .timeline,
  .clients-grid {
    grid-template-columns: 1fr;
  }

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

  .visual-badge {
    position: static;
    width: 100%;
    margin-bottom: 16px;
  }

  .visual-badge--bottom {
    margin-top: 16px;
    margin-bottom: 0;
  }

  .hero-diagram--image {
    min-height: 360px;
  }

  .hero-visual-image {
    min-height: 360px;
  }

}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 28px, 1180px);
  }

  .section {
    padding: 86px 0;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-diagram--image {
    min-height: 280px;
  }

  .hero-visual-image {
    min-height: 280px;
  }

  .brand {
    gap: 12px;
  }

  .brand img {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    padding: 6px;
  }

  .brand-copy strong {
    font-size: 1.24rem;
  }

  .brand-copy small {
    font-size: 0.78rem;
  }

  .hero-actions,
  .cta-shell,
  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

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

  .info-card,
  .service-card,
  .advantage-card,
  .timeline-card,
  .contact-form {
    padding: 24px;
  }

  .visual-panel,
  .cta-shell {
    padding: 24px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 68px;
    height: 68px;
    border-width: 3px;
  }
}
