:root {
  --navy: #071B33;
  --blue: #0A66C2;
  --sky: #38BDF8;
  --ice: #E0F7FF;
  --white: #FFFFFF;
  --soft: #F6FAFD;
  --text: #102033;
  --muted: #5A6C7F;
  --line: rgba(10, 102, 194, .16);
  --shadow: 0 24px 70px rgba(7, 27, 51, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 102, 194, .12);
}
.nav-shell {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.logo-brand { line-height: 0; }
.brand-logo {
  display: block;
  width: clamp(190px, 17vw, 248px);
  height: auto;
  max-height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 27, 51, .10));
}
.footer-logo {
  width: min(292px, 100%);
  max-height: 92px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, .20));
}
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 15px;
  color: var(--white); font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 34px rgba(10, 102, 194, .28);
}
.brand strong, .brand small { display: block; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 11px; margin-top: 4px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
  border: 1px solid rgba(10,102,194,.1);
  border-radius: 999px;
  background: rgba(246,250,253,.84);
}
.main-nav a { font-weight: 800; font-size: 13px; color: #203348; padding: 9px 12px; border-radius: 999px; white-space: nowrap; }
.main-nav a:hover { color: var(--blue); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-phone {
  display: grid;
  gap: 1px;
  padding: 9px 16px;
  border: 1px solid rgba(10,102,194,.16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(7,27,51,.06);
  white-space: nowrap;
}
.nav-phone span { font-size: 11px; color: var(--muted); font-weight: 900; text-transform: uppercase; }
.nav-phone strong { color: var(--blue); font-size: 14px; }
.nav-whatsapp { padding: 13px 17px; white-space: nowrap; }
.menu-toggle { display: none; border: 0; background: var(--ice); border-radius: 12px; width: 44px; height: 44px; place-items: center; padding: 11px; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 3px 0; border-radius: 2px; background: var(--blue); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 12px 18px; font-weight: 800; border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--sky));
  box-shadow: 0 16px 32px rgba(10, 102, 194, .28);
}
.btn-glow { box-shadow: 0 0 0 6px rgba(56, 189, 248, .12), 0 18px 42px rgba(10, 102, 194, .34); }
.btn-ghost { border-color: var(--line); color: var(--blue); background: rgba(255,255,255,.72); }
.btn-light { background: var(--white); color: var(--blue); }
.btn.light, .btn-ghost.light { color: var(--white); border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.12); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #06182d 0%, #083f7c 54%, #0ea5e9 100%);
}
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slider span {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(7,27,51,.92), rgba(7,27,51,.64), rgba(10,102,194,.38)), var(--hero-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s ease-in-out infinite;
}
.hero-slider span:nth-child(2) { animation-delay: 6s; }
.hero-slider span:nth-child(3) { animation-delay: 12s; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(120deg, transparent 0 46%, rgba(255,255,255,.14) 48%, transparent 51% 100%);
  background-size: 220px 220px;
  opacity: .3;
}
.hero-grid {
  position: relative; z-index: 1;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr .84fr;
  align-items: center;
  gap: 44px;
  padding: 80px 0 64px;
}
.hero-bg { position: absolute; border-radius: 999px; filter: blur(2px); opacity: .75; animation: floatBlob 9s ease-in-out infinite alternate; }
.hero-blob-one { width: 320px; height: 320px; background: rgba(56,189,248,.28); left: -80px; top: 90px; }
.hero-blob-two { width: 420px; height: 420px; background: rgba(224,247,255,.18); right: -120px; bottom: -80px; animation-delay: -3s; }
.eyebrow { display: inline-flex; color: var(--sky); text-transform: uppercase; letter-spacing: 0; font-size: 12px; font-weight: 900; margin-bottom: 12px; }
.hero h1, .page-hero h1 { font-size: clamp(38px, 5.4vw, 68px); line-height: 1.04; margin: 0 0 24px; letter-spacing: 0; }
.hero p { max-width: 700px; color: rgba(255,255,255,.86); font-size: 19px; }
.hero-actions, .card-actions, .chip-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.trust-row span, .chip-row a {
  padding: 11px 15px; border-radius: 999px;
  background: rgba(7,27,51,.44);
  border: 1px solid rgba(224,247,255,.34);
  backdrop-filter: blur(14px);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 12px 26px rgba(0,0,0,.12);
}
.hero-card {
  position: relative; overflow: hidden; padding: 34px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(7,27,51,.82), rgba(7,61,112,.58));
  border: 1px solid rgba(224,247,255,.3);
  box-shadow: 0 36px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.12);
  transform-style: preserve-3d;
}
.hero-card h2 { font-size: 31px; line-height: 1.12; margin: 8px 0 18px; }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.hero-card li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 2px 12px;
  align-items: center;
  padding: 13px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(224,247,255,.22);
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-card li span { grid-row: span 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--sky)); box-shadow: 0 10px 22px rgba(56,189,248,.2); }
.hero-card li small { display: block; color: rgba(255,255,255,.72); font-weight: 700; }
.hero-card-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 16px; }
.hero-card-metrics strong { padding: 12px 10px; border-radius: 16px; text-align: center; color: var(--ice); background: rgba(7,27,51,.34); border: 1px solid rgba(224,247,255,.18); font-size: 13px; }
.shine { position: absolute; inset: -40% auto auto -20%; width: 180px; height: 160%; background: rgba(255,255,255,.18); transform: rotate(18deg); animation: sheen 4.8s ease-in-out infinite; }
.card-kicker { color: var(--ice); font-weight: 900; }

.section, .quote-band, .split-section, .cta-section, .page-hero, .detail-hero, .article-detail {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.section { padding: 88px 0; }
.section.alt, .quote-band {
  width: 100%;
  padding: 82px max(16px, calc((100% - 1180px)/2));
  background: linear-gradient(180deg, var(--soft), #fff);
}
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.compact { margin-bottom: 20px; }
.section-head h2, .split-section h2, .cta-section h2, .detail-content h2 { font-size: clamp(28px, 4vw, 48px); line-height: 1.1; margin: 0 0 14px; }
.section-head p, .split-section p { color: var(--muted); font-size: 18px; }

.quote-form, .contact-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(10,102,194,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.quote-form textarea { min-height: 52px; }
input, select, textarea {
  width: 100%; border: 1px solid rgba(10,102,194,.18); border-radius: 16px; padding: 14px 15px;
  font: inherit; color: var(--text); background: #fff;
}
textarea { min-height: 130px; resize: vertical; }
.notice { margin: 14px 0; padding: 14px 16px; border-radius: 16px; background: var(--ice); color: var(--navy); font-weight: 800; }
.notice.success { background: #dcfce7; color: #14532d; }

.card-grid, .feature-grid, .testimonial-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card, .mini-card, .testimonial-card, .blog-card, .contact-card {
  position: relative; overflow: hidden; border-radius: 24px; padding: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(10,102,194,.12);
  box-shadow: 0 18px 48px rgba(7,27,51,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-card::before, .mini-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(56,189,248,.18), transparent 45%);
  opacity: 0; transition: opacity .28s ease; pointer-events: none;
}
.service-card:hover, .mini-card:hover, .blog-card:hover { transform: translateY(-9px) rotateX(2deg); box-shadow: 0 26px 70px rgba(10,102,194,.18); border-color: rgba(56,189,248,.42); }
.service-card:hover::before, .mini-card:hover::before { opacity: 1; }
.service-thumb { width: calc(100% + 52px); max-width: none; height: 172px; object-fit: cover; margin: -26px -26px 22px; transition: transform .45s ease; }
.service-card:hover .service-thumb { transform: scale(1.04); }
.service-card .icon { position: absolute; top: 132px; left: 24px; box-shadow: 0 12px 30px rgba(7,27,51,.12); }
.service-card h3, .service-card h2 { padding-top: 22px; }
.icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: linear-gradient(135deg, var(--ice), #fff); color: var(--blue); font-weight: 900; font-size: 22px; }
.service-card h3, .service-card h2, .mini-card h3, .mini-card h2 { margin: 18px 0 10px; line-height: 1.2; }
.service-card p, .mini-card p, .testimonial-card p, .blog-card p { color: var(--muted); }
.card-actions { margin-top: 20px; }
.card-actions a { font-weight: 900; color: var(--blue); }

.split-section { padding: 96px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: center; }
.about-premium { position: relative; }
.about-premium::before { content: ""; position: absolute; inset: 48px auto auto 38%; width: 360px; height: 360px; border-radius: 999px; background: rgba(56,189,248,.12); filter: blur(44px); z-index: -1; }
.visual-panel { position: relative; border-radius: 34px; overflow: hidden; box-shadow: var(--shadow); transform: perspective(900px) rotateY(4deg); }
.visual-panel img { aspect-ratio: 4 / 3; object-fit: cover; transition: transform .45s ease; }
.visual-panel:hover img, .gallery-item:hover img, .blog-card:hover img { transform: scale(1.06); }
.visual-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 16px 18px; border-radius: 20px; color: #fff; background: rgba(7,27,51,.78); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.18); }
.visual-badge strong, .visual-badge span { display: block; }
.visual-badge span { color: rgba(255,255,255,.78); font-size: 13px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.stats strong { display: flex; align-items: center; gap: 10px; padding: 15px; border-radius: 18px; background: linear-gradient(135deg, var(--soft), #fff); color: var(--navy); border: 1px solid rgba(10,102,194,.08); }
.stats strong span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--sky)); }
.about-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 16px; }
.about-proof div { padding: 18px; border-radius: 20px; color: #fff; background: linear-gradient(135deg, var(--navy), #0b477f); box-shadow: 0 18px 42px rgba(7,27,51,.14); }
.about-proof b, .about-proof small { display: block; }
.about-proof small { color: rgba(255,255,255,.72); margin-top: 4px; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.timeline-item { position: relative; padding: 74px 22px 22px; border-radius: 24px; background: linear-gradient(145deg, var(--navy), #0b3f75); color: var(--white); overflow: hidden; }
.timeline-item::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 18px; left: 22px; font-size: 30px; font-weight: 900; color: var(--sky); }
.timeline-item p { color: rgba(255,255,255,.78); }

.region-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.region-card { display: flex; flex-direction: column; gap: 10px; min-height: 104px; padding: 20px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 36px rgba(7,27,51,.07); font-weight: 900; color: var(--navy); transition: .25s ease; }
.region-card:hover { color: var(--blue); transform: translateY(-5px); box-shadow: 0 20px 52px rgba(10,102,194,.16); }
.region-card small { color: var(--muted); font-weight: 600; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { position: relative; overflow: hidden; min-height: 260px; border-radius: 24px; box-shadow: var(--shadow); background: var(--navy); }
.gallery-item img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; transition: transform .45s ease; }
.gallery-item span { position: absolute; left: 16px; bottom: 16px; padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.86); color: var(--blue); font-weight: 900; }
.masonry .gallery-item:nth-child(2n) { transform: translateY(24px); }
.stars { color: var(--blue); letter-spacing: 0; }

.blog-card { padding: 0; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; transition: transform .45s ease; }
.blog-card div { padding: 24px; }
.blog-card a { color: var(--blue); font-weight: 900; }

.cta-section {
  margin-bottom: 80px;
  padding: 54px;
  border-radius: 34px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--blue), var(--sky));
  box-shadow: var(--shadow);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.cta-section h2 { max-width: 760px; margin: 0; }

.page-hero {
  padding: 96px 0 58px;
  min-height: 360px;
}
.page-hero h1, .page-hero p { max-width: 840px; }
.page-hero p { color: var(--muted); font-size: 19px; }
.detail-hero { padding: 76px 0; display: grid; grid-template-columns: 1fr .82fr; gap: 42px; align-items: center; }
.detail-hero h1 { font-size: clamp(38px, 5vw, 64px); line-height: 1.04; margin: 0 0 18px; }
.detail-hero p { color: var(--muted); font-size: 19px; }
.detail-hero img { border-radius: 30px; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--shadow); }
.detail-content { max-width: 1180px; }
.detail-content p, .article-body { color: var(--muted); font-size: 18px; }
.faq { padding: 24px; border-radius: 22px; background: var(--soft); }
.chip-row a { color: var(--blue); background: var(--ice); border-color: transparent; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.detail-pro { display: grid; grid-template-columns: 1fr 330px; gap: 24px; align-items: start; }
.detail-main { display: grid; gap: 18px; }
.detail-block, .detail-sidebar {
  position: relative;
  padding: 26px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(10,102,194,.12);
  box-shadow: 0 18px 52px rgba(7,27,51,.07);
}
.detail-block > span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--sky)); font-weight: 900; margin-bottom: 14px; }
.detail-block ul { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; list-style: none; }
.detail-block li { padding: 14px 16px; border-radius: 16px; background: var(--soft); color: var(--navy); font-weight: 800; }
.detail-sidebar { position: sticky; top: 96px; background: linear-gradient(180deg, #fff, var(--soft)); }
.detail-sidebar .btn { width: 100%; margin: 8px 0 22px; }
.detail-sidebar .chip-row { display: grid; }

.article-detail { max-width: 920px; padding: 76px 0; }
.article-detail > img { width: 100%; max-height: 440px; object-fit: cover; border-radius: 30px; box-shadow: var(--shadow); margin-bottom: 34px; }
.article-detail h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
.lead { color: var(--muted); font-size: 20px; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 24px; }
.contact-form { grid-template-columns: 1fr 1fr; }
.contact-form textarea, .contact-form .notice, .contact-form button, .contact-form select:nth-of-type(1) { grid-column: 1 / -1; }
.map-placeholder { min-height: 220px; border-radius: 22px; display: grid; place-items: center; margin-top: 18px; background: linear-gradient(135deg, var(--ice), #fff); color: var(--blue); font-weight: 900; border: 1px dashed rgba(10,102,194,.26); }
.narrow { max-width: 840px; }

.site-footer { background: var(--navy); color: var(--white); padding: 70px 0 24px; }
.footer-grid { width: min(1180px, calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr .8fr .8fr; gap: 34px; }
.site-footer p, .site-footer small { color: rgba(255,255,255,.72); }
.site-footer a { display: block; color: rgba(255,255,255,.82); margin: 8px 0; }
.site-footer .btn { display: inline-flex; color: #fff; }
.footer-bottom { width: min(1180px, calc(100% - 32px)); margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.64); }
.footer-bottom span { display: inline-block; margin-left: 10px; }
.footer-bottom a { display: inline; color: var(--sky); font-weight: 900; margin: 0; }

.float-whatsapp {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 112px; min-height: 58px; padding: 10px 16px; border-radius: 999px;
  color: #fff; background: linear-gradient(135deg, #16a34a, #22c55e);
  box-shadow: 0 18px 48px rgba(22,163,74,.34);
  font-size: 12px; font-weight: 900;
}
.float-whatsapp strong { font-size: 15px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes floatBlob { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(28px,-24px,0) scale(1.08); } }
@keyframes sheen { 0%, 40% { transform: translateX(-180px) rotate(18deg); } 70%, 100% { transform: translateX(520px) rotate(18deg); } }
@keyframes heroFade { 0%, 8% { opacity: 0; transform: scale(1.04); } 14%, 38% { opacity: 1; transform: scale(1); } 46%, 100% { opacity: 0; transform: scale(1.04); } }

@media (max-width: 1180px) {
  .nav-actions { display: none; }
}

@media (max-width: 1040px) {
  .nav-actions { display: none; }
  .main-nav { position: fixed; inset: 82px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border-radius: 22px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); }
  .main-nav.is-open { display: flex; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .hero-grid, .detail-hero, .split-section, .contact-grid, .detail-pro { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding-top: 56px; }
  .quote-form { grid-template-columns: 1fr 1fr; }
  .quote-form button, .quote-form textarea { grid-column: 1 / -1; }
  .card-grid, .feature-grid, .testimonial-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { align-items: flex-start; flex-direction: column; }
  .detail-sidebar { position: static; }
}

@media (max-width: 680px) {
  .nav-shell { width: min(100% - 24px, 1180px); min-height: 72px; }
  .brand-logo { width: 176px; max-height: 58px; }
  .brand small { display: none; }
  .hero h1, .page-hero h1 { font-size: 38px; }
  .hero-grid, .section, .split-section, .detail-hero, .article-detail { width: min(100% - 24px, 1180px); }
  .quote-form, .contact-form, .card-grid, .feature-grid, .testimonial-grid, .blog-grid, .gallery-grid, .region-grid, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .quote-form > *, .contact-form > * { grid-column: 1 / -1; }
  .section, .section.alt, .quote-band { padding-top: 56px; padding-bottom: 56px; }
  .hero-actions .btn, .quote-form .btn, .contact-form .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; }
  .about-proof, .detail-block ul, .hero-card-metrics { grid-template-columns: 1fr; }
  .masonry .gallery-item:nth-child(2n) { transform: none; }
  .cta-section { width: min(100% - 24px, 1180px); padding: 32px 22px; border-radius: 26px; }
  .float-whatsapp { right: 12px; bottom: 12px; min-width: 98px; }
}
