:root {
  --navy-950: #02132f;
  --navy-900: #031a3d;
  --navy-800: #062b5c;
  --navy-700: #0b3d75;
  --blue-600: #078fda;
  --blue-500: #079ce8;
  --cyan-400: #10c8f4;
  --cyan-300: #82ddf8;
  --ice-100: #f2fafd;
  --ice-200: #ddf5ff;
  --white: #ffffff;
  --text: #102b4c;
  --muted: #6b8094;
  --green: #19b968;
  --green-dark: #0f9852;
  --border: #dbeaf1;
  --shadow: 0 15px 40px rgba(3, 26, 61, 0.1);
  --shadow-strong: 0 22px 55px rgba(0, 15, 38, 0.22);
  --radius: 18px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--white);
  font-family: Inter, Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 4.75rem);
  font-weight: 800;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
  font-weight: 750;
}

p {
  margin-bottom: 20px;
}

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

.section {
  padding-block: 88px;
}

section[id] {
  scroll-margin-top: 96px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--cyan-400);
  outline-offset: 4px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 18px;
  height: 18px;
}

.eyebrow-light {
  color: var(--cyan-400);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-400));
  box-shadow: 0 12px 28px rgba(7, 156, 232, 0.25);
}

.button-secondary {
  color: var(--navy-900);
  background: var(--white);
  border-color: #badce9;
}

.button-whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  box-shadow: 0 14px 28px rgba(25, 185, 104, 0.24);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.56);
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-layout {
  display: flex;
  min-height: 84px;
  align-items: center;
  gap: 28px;
  padding-block: 8px;
}

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

.logo-img {
  width: 138px;
  height: 68px;
  object-fit: contain;
  mix-blend-mode: screen;
}

.main-nav {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 29px);
}

.main-nav a {
  position: relative;
  padding-block: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
}

.main-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--cyan-400);
  transition: right 180ms ease, left 180ms ease;
}

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

.main-nav a:hover::after {
  right: 0;
  left: 0;
}

.button-header {
  min-height: 44px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue-500);
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(16, 200, 244, 0.2), transparent 28%),
    linear-gradient(118deg, var(--navy-950) 0%, var(--navy-900) 48%, var(--navy-800) 100%);
}

.hero::after {
  position: absolute;
  right: -110px;
  bottom: -180px;
  width: 480px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(130, 221, 248, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(130, 221, 248, 0.035),
    0 0 0 116px rgba(130, 221, 248, 0.025);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  align-items: center;
  gap: 58px;
  padding-block: 76px;
}

.hero h1,
.differentials h2,
.differentials h3 {
  color: var(--white);
}

.hero h1 span {
  color: var(--cyan-400);
}

.hero-description {
  max-width: 600px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.hero-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-hours svg {
  width: 21px;
  height: 21px;
  color: var(--cyan-400);
}

.hero-visual {
  position: relative;
  padding: 8px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-strong);
}

.hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 19px;
}

.hero-badge {
  position: absolute;
  right: 28px;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 13px;
  box-shadow: 0 12px 32px rgba(0, 16, 40, 0.22);
  backdrop-filter: blur(8px);
}

.hero-badge span:last-child {
  display: grid;
  font-size: 0.76rem;
  line-height: 1.35;
}

.hero-badge strong {
  font-size: 0.86rem;
}

.badge-icon {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--blue-500);
  border-radius: 10px;
}

.badge-icon svg {
  width: 21px;
  height: 21px;
}

.trust-strip {
  padding-block: 32px;
  background: var(--white);
  border-bottom: 1px solid #ebf2f6;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 15px;
  padding-inline: 25px;
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  padding-right: 0;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--border);
}

.feature-icon {
  display: grid;
  width: 48px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  color: var(--blue-500);
  background: var(--ice-100);
  border-radius: 13px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.trust-item > span:last-child {
  display: grid;
  gap: 4px;
  line-height: 1.3;
}

.trust-item strong {
  color: var(--navy-900);
  font-size: 0.92rem;
}

.trust-item small {
  color: var(--muted);
  font-size: 0.76rem;
}

.services {
  background: #f7fcfe;
}

.section-heading {
  max-width: 810px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.service-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(3, 26, 61, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(3, 26, 61, 0.15);
}

.service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ice-200);
}

.service-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-media-one img {
  object-position: 14% 18%;
}

.service-media-two img {
  object-position: 88% 18%;
}

.service-media-three img {
  object-position: 14% 86%;
}

.service-media-four img {
  object-position: 64% 50%;
}

.service-content {
  position: relative;
  display: flex;
  min-height: 305px;
  flex-direction: column;
  padding: 28px 22px 22px;
}

.card-icon {
  position: absolute;
  top: -22px;
  left: 20px;
  display: grid;
  width: 45px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), var(--cyan-400));
  border: 4px solid var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(7, 156, 232, 0.28);
}

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

.service-content h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
}

.service-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-content ul {
  display: grid;
  gap: 7px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: 0.82rem;
  list-style: none;
}

.service-content li {
  position: relative;
  padding-left: 16px;
}

.service-content li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--cyan-400);
  border-radius: 50%;
  transform: translateY(-50%);
}

.service-content > a {
  margin-top: auto;
  color: var(--blue-600);
  font-size: 0.84rem;
  font-weight: 750;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.differentials {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.77);
  background:
    radial-gradient(circle at 8% 95%, rgba(7, 156, 232, 0.2), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.differentials-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.differentials-content {
  order: 2;
}

.differentials-intro {
  max-width: 610px;
  font-size: 1.05rem;
}

.differential-list {
  display: grid;
  margin: 28px 0 32px;
}

.differential-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  padding-block: 17px;
}

.differential-list article + article {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.differential-list article > span {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--cyan-400);
  background: rgba(16, 200, 244, 0.08);
  border: 1px solid rgba(16, 200, 244, 0.25);
  border-radius: 11px;
}

.differential-list svg {
  width: 24px;
  height: 24px;
}

.differential-list h3 {
  margin: 1px 0 6px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.differential-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.87rem;
}

.differentials-visual {
  position: relative;
  order: 1;
}

.differentials-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 75% center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 23px;
  box-shadow: var(--shadow-strong);
}

.visual-caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
}

.visual-caption > span {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--blue-500);
  border-radius: 11px;
  font-weight: 850;
}

.visual-caption p {
  display: grid;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
}

.visual-caption strong {
  font-size: 0.9rem;
}

.audiences {
  background: var(--white);
}

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

.audience-card {
  position: relative;
  padding: 27px 25px 24px 82px;
  background: linear-gradient(145deg, var(--ice-100), #f9fdff);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan-300);
}

.audience-icon {
  position: absolute;
  top: 24px;
  left: 23px;
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-500);
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 8px 18px rgba(3, 26, 61, 0.08);
}

.audience-icon svg {
  width: 24px;
  height: 24px;
}

.audience-card h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.audience-contact {
  margin: 34px 0 0;
  color: var(--muted);
  text-align: center;
}

.audience-contact a {
  color: var(--blue-600);
  font-weight: 750;
}

.service-area {
  overflow: hidden;
  background: linear-gradient(120deg, #e8f7fd, #f8fcfe);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 70px;
}

.area-graphic {
  position: relative;
  display: grid;
  min-height: 410px;
  place-items: center;
  overflow: hidden;
  color: var(--navy-900);
  background:
    radial-gradient(circle at center, rgba(16, 200, 244, 0.18), transparent 28%),
    linear-gradient(145deg, #d6f2fc, #f6fcff);
  border: 1px solid rgba(7, 156, 232, 0.14);
  border-radius: 24px;
}

.area-ring {
  position: absolute;
  aspect-ratio: 1;
  border: 1px solid rgba(7, 156, 232, 0.18);
  border-radius: 50%;
}

.area-ring-one {
  width: 240px;
}

.area-ring-two {
  width: 340px;
}

.area-route {
  position: absolute;
  width: 72%;
  height: 44%;
  border-top: 2px dashed rgba(7, 156, 232, 0.24);
  border-bottom: 2px dashed rgba(7, 156, 232, 0.16);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.location-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 74px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-600), var(--cyan-400));
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(7, 156, 232, 0.27);
}

.location-marker svg {
  width: 31px;
  height: 31px;
}

.area-graphic > p {
  position: absolute;
  bottom: 61px;
  display: grid;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.area-graphic > p strong {
  font-size: 1.08rem;
}

.area-graphic > small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
}

.area-content > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 32px;
  font-style: normal;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  align-items: start;
  gap: 14px;
}

.contact-list span {
  display: grid;
  width: 43px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--blue-500);
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(3, 26, 61, 0.08);
}

.contact-list svg {
  width: 23px;
  height: 23px;
}

.contact-list p {
  display: grid;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.contact-list strong {
  color: var(--navy-900);
  font-size: 0.97rem;
}

.area-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.conversion-cta {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 130%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(120deg, #047fc4, #10c8f4);
}

.conversion-cta::after {
  position: absolute;
  right: -4%;
  bottom: -180px;
  width: 560px;
  aspect-ratio: 2 / 1;
  content: "";
  border: 2px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 -30px 0 rgba(255, 255, 255, 0.035),
    0 -60px 0 rgba(255, 255, 255, 0.025);
  pointer-events: none;
}

.conversion-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 50px;
}

.conversion-content h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.conversion-content p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.conversion-actions {
  display: grid;
  justify-items: stretch;
  gap: 10px;
  text-align: center;
}

.conversion-button {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 14px 30px rgba(3, 26, 61, 0.22);
}

.phone-link {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: 70px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.text-link {
  color: var(--blue-600);
  font-weight: 750;
}

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

.faq-list details {
  overflow: hidden;
  background: #fbfdfe;
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-list details[open] {
  background: var(--white);
  border-color: var(--cyan-300);
  box-shadow: 0 10px 28px rgba(3, 26, 61, 0.08);
}

.faq-list summary {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  color: var(--navy-900);
  cursor: pointer;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-symbol {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: var(--blue-500);
}

.faq-symbol::before,
.faq-symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-symbol::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-symbol::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  padding: 0 58px 18px 20px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  position: relative;
  padding: 62px 0 28px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy-950);
  border-bottom: 5px solid var(--cyan-400);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.15fr 0.75fr;
  gap: 50px;
  padding-bottom: 45px;
}

.footer-brand .footer-logo {
  width: 148px;
  height: 88px;
  margin-bottom: 18px;
}

.footer-brand p {
  max-width: 280px;
  margin: 0;
  font-size: 0.87rem;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
  font-size: 0.85rem;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0;
}

.footer-column p,
.footer-column address {
  margin: 0;
  font-style: normal;
}

.footer-column a:hover {
  color: var(--cyan-400);
}

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

.footer-bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 40;
  display: grid;
  width: 56px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(3, 26, 61, 0.28);
  transition: transform 180ms ease, background-color 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--green-dark);
  transform: translateY(-3px) scale(1.03);
}

.floating-whatsapp svg {
  width: 29px;
  height: 29px;
}

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

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 0.75rem;
  }

  .button-header {
    font-size: 0.78rem;
  }

  .hero-grid {
    gap: 38px;
  }

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

  .service-content {
    min-height: 280px;
  }

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

  .trust-item:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 880px) {
  .button-header {
    display: none;
  }

  .header-layout {
    flex-wrap: wrap;
  }

  .brand {
    margin-right: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 46px;
    padding: 12px 4px;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-content {
    max-width: 720px;
  }

  .differentials-grid {
    grid-template-columns: 1fr;
  }

  .differentials-content {
    order: 1;
  }

  .differentials-visual {
    order: 2;
  }

  .differentials-visual > img {
    aspect-ratio: 4 / 3;
  }

  .area-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .conversion-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .conversion-content p {
    margin-inline: auto;
  }

  .conversion-actions {
    width: min(100%, 390px);
    margin-inline: auto;
  }

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

@media (max-width: 768px) {
  body {
    font-size: 16px;
    padding-bottom: 12px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .section {
    padding-block: 56px;
  }

  section[id] {
    scroll-margin-top: 78px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.65rem);
    line-height: 1.06;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.1rem);
  }

  h3 {
    font-size: 1.18rem;
  }

  .site-header {
    position: relative;
  }

  .header-layout {
    min-height: 72px;
    gap: 14px;
    padding-block: 8px;
  }

  .logo-img {
    width: 106px;
    height: 55px;
  }

  .hero-grid {
    gap: 32px;
    padding-block: 46px 44px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-hours {
    font-size: 0.83rem;
  }

  .hero-visual {
    padding: 5px;
    border-radius: 20px;
  }

  .hero-visual > img {
    border-radius: 15px;
  }

  .hero-badge {
    position: static;
    margin-top: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .trust-strip {
    padding-block: 28px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child,
  .trust-item:nth-child(3) {
    padding: 17px 0;
    border-left: 0;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--border);
  }

  .feature-icon {
    width: 45px;
  }

  .section-heading {
    margin-bottom: 34px;
    text-align: left;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card:hover {
    transform: none;
  }

  .service-content {
    min-height: 0;
    padding: 28px 21px 23px;
  }

  .service-content > a {
    margin-top: 4px;
  }

  .section-action {
    margin-top: 30px;
  }

  .section-action .button {
    width: 100%;
  }

  .differentials-grid {
    gap: 32px;
  }

  .differential-list {
    margin-block: 23px 27px;
  }

  .differential-list article {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .differential-list article > span {
    width: 40px;
  }

  .differentials-content > .button {
    width: 100%;
  }

  .visual-caption {
    position: static;
    margin-top: 10px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
  }

  .audiences-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-card {
    padding: 23px 20px 21px 75px;
  }

  .audience-icon {
    top: 21px;
    left: 18px;
  }

  .audience-contact {
    text-align: left;
  }

  .area-grid {
    gap: 34px;
  }

  .area-graphic {
    min-height: 330px;
  }

  .area-ring-one {
    width: 190px;
  }

  .area-ring-two {
    width: 275px;
  }

  .area-actions {
    display: grid;
  }

  .area-actions .button {
    width: 100%;
  }

  .conversion-cta {
    padding-block: 48px;
  }

  .conversion-content {
    text-align: left;
  }

  .conversion-actions {
    width: 100%;
    text-align: center;
  }

  .conversion-button {
    width: 100%;
  }

  .faq-grid {
    gap: 30px;
  }

  .faq-list summary {
    min-height: 60px;
    padding: 16px;
    font-size: 0.94rem;
  }

  .faq-answer {
    padding: 0 45px 17px 16px;
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 29px;
    padding-bottom: 34px;
  }

  .footer-brand .footer-logo {
    width: 130px;
    height: 78px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .floating-whatsapp {
    width: 54px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 32px);
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .hero-grid {
    padding-top: 40px;
  }

  .hero-badge {
    padding: 10px 12px;
  }

  .area-graphic {
    min-height: 290px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Site Fácil IA: proteção de integridade visual */
html,body{max-width:100%;overflow-x:clip}main>section{position:relative;isolation:isolate;clear:both}img{max-width:100%;height:auto}img[src*="assets/"]{object-fit:contain}
