:root {
  --red: #ed1c24;
  --red-dark: #bd1118;
  --navy: #03111a;
  --navy-light: #061b28;
  --navy-card: #051824;
  --black-blue: #020b12;
  --white: #f5f5f2;
  --muted: #aab3b7;
  --border: rgba(215, 210, 200, 0.28);
  --soft-border: rgba(131, 160, 174, 0.22);
  --green: #25d366;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #02070b;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 22%, rgba(19, 43, 56, 0.25), transparent 42%),
    linear-gradient(135deg, #010509, #080d11 55%, #02070b);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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;
}

:focus-visible {
  outline: 3px solid rgba(237, 28, 36, 0.75);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  transform: translateY(-150%);
}

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

.site-shell {
  width: min(var(--page-width), calc(100% - 32px));
  margin: 24px auto;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  overflow: clip;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 12px 28px;
  background: rgba(3, 17, 26, 0.98);
  border-bottom: 1px solid var(--soft-border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: #ddd;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.22em;
}

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

.main-nav a {
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease;
}

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

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 13px;
  border: 1px solid rgba(245, 245, 242, 0.45);
  border-radius: 5px;
}

.header-whatsapp small,
.header-whatsapp strong {
  display: block;
}

.header-whatsapp small {
  font-size: 8px;
  font-weight: 700;
}

.header-whatsapp strong {
  font-size: 14px;
}

.wa-icon,
.button-wa {
  font-size: 24px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 450px;
  background:
    linear-gradient(90deg, #020d15 0%, #041723 52%, #061b28 100%);
  border-bottom: 1px solid var(--soft-border);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0 45% 0 0;
  z-index: -1;
  content: "";
  opacity: 0.17;
  background-image:
    linear-gradient(90deg, transparent 48%, rgba(76, 135, 160, 0.35) 49%, transparent 51%),
    linear-gradient(0deg, transparent 48%, rgba(76, 135, 160, 0.25) 49%, transparent 51%);
  background-size: 70px 48px;
  mask-image: linear-gradient(to right, transparent, #000 30%, #000);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 52px 24px 58px 38px;
}

.hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(37px, 4.05vw, 55px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-copy > p {
  max-width: 500px;
  margin: 22px 0 0;
  color: #d2d7d9;
  font-size: 16px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #ed262d, #d1151c);
  border: 1px solid var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline {
  background: rgba(2, 11, 18, 0.6);
  border: 1px solid rgba(245, 245, 242, 0.6);
}

.button-outline:hover {
  border-color: var(--red);
}

.hero-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 17, 26, 0.82), transparent 26%),
    linear-gradient(0deg, rgba(2, 11, 18, 0.36), transparent 45%);
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  right: -4%;
  bottom: 6.8%;
  z-index: 2;
  width: 110%;
  height: 3px;
  content: "";
  background: var(--red);
  transform: rotate(-8.5deg);
  transform-origin: right;
}

.hero-media img {
  width: 100%;
  min-height: 450px;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 22px 28px;
  background: #051824;
  border-bottom: 1px solid var(--soft-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 4px 22px;
  border-right: 1px solid rgba(215, 210, 200, 0.22);
}

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

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

.line-icon {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
}

.trust-item h2 {
  margin: 0 0 3px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item p {
  margin: 0;
  color: #c0c6c9;
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding: 58px 28px;
}

.services,
.differentials {
  background:
    radial-gradient(circle at 50% 30%, rgba(12, 43, 57, 0.28), transparent 52%),
    #020e16;
}

.section-heading {
  margin: 0 auto 30px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section-heading h2,
.about h2,
.conversion-banner h2 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.12;
}

.services {
  padding-bottom: 34px;
}

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

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: linear-gradient(180deg, #061c28, #03131d);
  border: 1px solid rgba(215, 210, 200, 0.28);
  border-radius: 9px;
}

.service-media {
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  background: #06131b;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.service-media::after {
  display: block;
  content: "";
}

.service-icon {
  position: absolute;
  top: clamp(126px, 13.3vw, 160px);
  left: 18px;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-size: 25px;
  line-height: 1;
}

.service-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 18px 17px;
}

.service-content h3 {
  min-height: 48px;
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-content p {
  margin: 12px 0 20px;
  color: #c2c9cc;
  font-size: 13px;
}

.service-content a {
  width: fit-content;
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.differentials {
  padding-top: 30px;
}

.differentials-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1020px;
  margin: 0 auto;
}

.differentials-grid article {
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid rgba(215, 210, 200, 0.25);
}

.differentials-grid article:last-child {
  border-right: 0;
}

.differentials-grid span {
  display: block;
  margin-bottom: 12px;
  font-size: 41px;
  line-height: 1;
}

.differentials-grid h3 {
  margin: 0;
  color: #d8dcde;
  font-size: 13px;
  font-weight: 500;
}

.conversion-banner {
  display: grid;
  grid-template-columns: 90px 1fr minmax(280px, 390px);
  align-items: center;
  gap: 20px;
  margin: 0 28px 24px;
  padding: 22px 28px;
  background: linear-gradient(90deg, #03131d, #061a25);
  border: 2px solid var(--red);
  border-radius: 9px;
}

.conversion-icon {
  color: #61d87b;
  font-size: 78px;
  line-height: 1;
}

.conversion-copy > p:last-child {
  margin: 6px 0 0;
  color: #c2c8cb;
  font-size: 14px;
}

.conversion-action {
  display: grid;
  gap: 10px;
}

.conversion-action strong {
  font-size: 28px;
  letter-spacing: 0.03em;
  text-align: center;
}

.conversion-action strong span {
  color: var(--green);
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  background: #03111a;
  border-bottom: 1px solid var(--soft-border);
}

.about-copy {
  align-self: center;
}

.about-copy > p:last-child {
  max-width: 680px;
  margin: 16px 0 0;
  color: #c4cbce;
  font-size: 14px;
}

.about-media {
  overflow: hidden;
  align-self: center;
  aspect-ratio: 16 / 8.7;
  background: #04121a;
  border: 1px solid var(--border);
  border-radius: 9px;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indicators {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.indicators article {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  padding: 6px 28px;
  border-right: 1px solid rgba(215, 210, 200, 0.24);
}

.indicators article:first-child {
  padding-left: 0;
}

.indicators article:last-child {
  padding-right: 0;
  border-right: 0;
}

.indicators span {
  grid-row: 1 / 3;
  font-size: 43px;
}

.indicators strong {
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.indicators p {
  margin: 3px 0 0;
  color: #c6cccf;
  font-size: 12px;
  text-transform: uppercase;
}

.faq {
  padding-top: 24px;
  padding-bottom: 34px;
  background: #03111a;
}

.faq-panel {
  padding: 18px;
  border: 1px solid var(--soft-border);
  border-radius: 8px;
}

.faq-panel > h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.faq-item + .faq-item {
  margin-top: 8px;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 16px;
  color: #fff;
  text-align: left;
  background: #04141e;
  border: 1px solid rgba(117, 148, 161, 0.3);
  border-radius: 6px;
  cursor: pointer;
}

.faq-item button span {
  color: var(--red);
  font-size: 22px;
  transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 12px 16px 7px;
  color: #c2c9cc;
  font-size: 14px;
}

.faq-answer p {
  margin: 0;
}

.site-footer {
  background: #03111a;
  border-top: 1px solid var(--soft-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr 1.15fr;
  padding: 30px 28px 22px;
}

.footer-grid > section {
  min-width: 0;
  padding: 0 24px;
  border-right: 1px solid rgba(215, 210, 200, 0.22);
}

.footer-grid > section:first-child {
  padding-left: 0;
}

.footer-grid > section:last-child {
  padding-right: 0;
  border-right: 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-grid address,
.footer-grid a,
.footer-grid span {
  font-size: 11px;
}

.footer-brand > p {
  margin: 14px 0;
  color: #bcc4c8;
}

.social-links {
  display: flex;
  gap: 9px;
}

.social-links a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 800;
}

.footer-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li a {
  color: #c5cbce;
}

.footer-grid address {
  display: grid;
  gap: 9px;
  color: #c5cbce;
  font-style: normal;
}

.footer-grid address a::first-letter,
.footer-grid address span::first-letter {
  color: var(--red);
}

.technical > strong {
  font-size: 14px;
}

.technical > p {
  margin: 4px 0 14px;
  color: #c4cace;
}

.crt-badge {
  display: flex;
  align-items: center;
  gap: 9px;
}

.crt-badge > span {
  color: #d9a531;
  font-size: 32px;
}

.crt-badge div {
  display: grid;
}

.crt-badge strong {
  font-size: 16px;
}

.crt-badge small {
  color: #aeb7bb;
  font-size: 8px;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 28px;
  color: #9fa9ae;
  border-top: 1px solid var(--soft-border);
  font-size: 10px;
}

.footer-legal p {
  margin: 0;
}

.footer-legal nav {
  display: flex;
  gap: 50px;
}

.floating-social {
  position: fixed;
  top: 50%;
  right: max(24px, calc((100vw - var(--page-width)) / 2 - 100px));
  z-index: 20;
  display: grid;
  gap: 24px;
  transform: translateY(-50%);
}

.floating-social a {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 700;
}

.floating-whatsapp {
  background: #19bd50;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.8);
}

.floating-instagram {
  background: radial-gradient(circle at 70% 75%, #ffd65a 0 14%, #ef3d5e 30%, #b62cbe 58%, #5145d7 100%);
  box-shadow: 0 0 28px rgba(232, 59, 173, 0.7);
}

@media (max-width: 1400px) {
  .floating-social {
    display: none;
  }
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
    gap: 14px;
    padding-inline: 20px;
  }

  .main-nav {
    gap: 13px;
  }

  .main-nav a {
    font-size: 10px;
  }

  .header-whatsapp strong {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .service-icon {
    top: 12.5vw;
  }

  .conversion-banner {
    grid-template-columns: 70px 1fr 310px;
  }

  .conversion-action strong {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .site-shell {
    width: calc(100% - 20px);
    margin: 10px auto;
    border-radius: 12px;
  }

  .site-header {
    grid-template-columns: 44px 1fr 44px;
    min-height: 62px;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  .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);
  }

  .site-header > .brand {
    justify-self: center;
  }

  .brand-symbol {
    width: 32px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    font-size: 5px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px;
    background: #03111a;
    border-top: 1px solid var(--soft-border);
    border-bottom: 1px solid var(--border);
  }

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

  .main-nav a {
    min-height: 44px;
    padding: 12px;
    font-size: 13px;
    background: #051824;
    border-radius: 5px;
  }

  .header-whatsapp {
    display: grid;
    width: 42px;
    min-height: 42px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: var(--red);
    border: 0;
  }

  .header-whatsapp .wa-icon {
    font-size: 25px;
  }

  .header-whatsapp > span:last-child {
    display: none;
  }

  .hero {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-media {
    order: 1;
    aspect-ratio: 4 / 2.7;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }

  .hero-media img {
    min-height: 0;
    height: 100%;
    object-position: 58% 35%;
  }

  .hero-media::after {
    bottom: 2.5%;
    transform: rotate(-4deg);
  }

  .hero-copy {
    order: 2;
    padding: 22px 16px 28px;
  }

  .hero h1 {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .hero-copy > p {
    margin-top: 15px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    gap: 9px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 17px 12px;
  }

  .trust-item {
    align-items: flex-start;
    padding: 12px;
    border-right: 1px solid rgba(215, 210, 200, 0.2);
    border-bottom: 1px solid rgba(215, 210, 200, 0.2);
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3),
  .trust-item:nth-child(4) {
    border-bottom: 0;
  }

  .line-icon {
    font-size: 29px;
  }

  .trust-item p {
    font-size: 9px;
  }

  .section {
    padding: 42px 12px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .about h2,
  .conversion-banner h2 {
    font-size: 24px;
  }

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

  .service-card {
    display: grid;
    grid-template-columns: 104px 45px 1fr;
    align-items: center;
    min-height: 92px;
    overflow: visible;
    padding: 7px;
  }

  .service-media {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 1.3 / 1;
    height: 78px;
    overflow: hidden;
    border-radius: 5px;
  }

  .service-icon {
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: 38px;
    height: 38px;
    margin-left: -19px;
    font-size: 18px;
  }

  .service-content {
    grid-column: 3;
    grid-row: 1;
    min-width: 0;
    padding: 4px 2px 4px 0;
  }

  .service-content h3 {
    min-height: 0;
    font-size: 11px;
    line-height: 1.23;
  }

  .service-content p {
    display: none;
  }

  .service-content a {
    margin-top: 7px;
    font-size: 9px;
  }

  .differentials {
    padding-top: 22px;
  }

  .differentials-grid {
    grid-template-columns: repeat(5, minmax(58px, 1fr));
    overflow-x: auto;
  }

  .differentials-grid article {
    min-width: 63px;
    padding: 0 6px;
  }

  .differentials-grid span {
    margin-bottom: 8px;
    font-size: 27px;
  }

  .differentials-grid h3 {
    font-size: 8px;
  }

  .conversion-banner {
    grid-template-columns: 54px 1fr;
    gap: 10px;
    margin: 0 10px 18px;
    padding: 16px 12px;
  }

  .conversion-icon {
    font-size: 50px;
  }

  .conversion-copy h2 {
    font-size: 21px;
  }

  .conversion-copy > p:last-child {
    font-size: 12px;
  }

  .conversion-action {
    grid-column: 1 / -1;
  }

  .conversion-action strong {
    font-size: 20px;
  }

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

  .about-copy > p:last-child {
    font-size: 13px;
  }

  .about-media {
    aspect-ratio: 16 / 10;
  }

  .indicators {
    grid-column: auto;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
  }

  .indicators article {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 2px 7px;
    text-align: center;
  }

  .indicators article:first-child {
    padding-left: 2px;
  }

  .indicators article:last-child {
    padding-right: 2px;
  }

  .indicators span {
    font-size: 27px;
  }

  .indicators strong {
    margin-top: 7px;
    font-size: 9px;
  }

  .indicators p {
    font-size: 8px;
  }

  .faq {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .faq-panel {
    padding: 10px;
  }

  .faq-item button {
    padding: 9px 10px;
    font-size: 12px;
  }

  .faq-answer {
    padding-inline: 10px;
    font-size: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 24px 16px 10px;
  }

  .footer-grid > section,
  .footer-grid > section:first-child,
  .footer-grid > section:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 210, 200, 0.2);
  }

  .footer-grid > section:first-child {
    padding-top: 0;
  }

  .footer-grid > section:last-child {
    border-bottom: 0;
  }

  .footer-legal {
    display: grid;
    justify-content: stretch;
    padding: 16px;
    text-align: center;
  }

  .footer-legal nav {
    justify-content: space-between;
    gap: 14px;
  }

  .floating-social {
    display: block;
    top: auto;
    right: 18px;
    bottom: 18px;
    transform: none;
  }

  .floating-social a {
    width: 52px;
    height: 52px;
    font-size: 29px;
  }

  .floating-instagram {
    display: none !important;
  }
}

@media (max-width: 390px) {
  .service-card {
    grid-template-columns: 82px 36px 1fr;
  }

  .service-media {
    height: 68px;
  }

  .service-icon {
    width: 34px;
    height: 34px;
    margin-left: -17px;
  }

  .brand-copy small {
    letter-spacing: 0.12em;
  }
}

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

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

/* Site Fácil IA V5.7.7 — WhatsApp e ícones fiéis */
.sf-whatsapp-button{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:8px!important;
  min-height:44px!important;
  padding:11px 18px!important;
  border-radius:8px!important;
  background:#25D366!important;
  color:#fff!important;
  border:0!important;
  text-decoration:none!important;
  font-weight:800!important;
  line-height:1.1!important;
  box-shadow:none!important;
}
.sf-whatsapp-button:hover{filter:brightness(.96)}
.sf-whatsapp-floating{
  width:46px!important;
  height:46px!important;
  min-width:46px!important;
  min-height:46px!important;
  padding:0!important;
  border-radius:999px!important;
}
.sf-faithful-icon,.sf-wa-icon{
  display:inline-grid!important;
  place-items:center!important;
  flex:0 0 auto!important;
  width:20px!important;
  height:20px!important;
}
.sf-whatsapp-floating .sf-wa-icon{width:22px!important;height:22px!important}
.sf-faithful-icon svg,.sf-wa-icon svg,.sf-faithful-icon-host svg{
  width:100%!important;
  height:100%!important;
  display:block!important;
}
.sf-faithful-icon-host{
  display:grid!important;
  place-items:center!important;
  width:42px!important;
  height:42px!important;
  min-width:42px!important;
  min-height:42px!important;
  border-radius:999px!important;
  background:#0057c8!important;
  color:#fff!important;
}
.sf-faithful-icon-host svg{
  width:20px!important;
  height:20px!important;
  fill:none!important;
  stroke:currentColor!important;
  stroke-width:1.9!important;
  stroke-linecap:round!important;
  stroke-linejoin:round!important;
}
.sf-wa-icon svg{color:#fff!important}
@media(max-width:768px){
  .sf-whatsapp-button{min-height:42px!important;padding:10px 14px!important;font-size:13px!important}
  .sf-whatsapp-floating{width:44px!important;height:44px!important;padding:0!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}



/* Site Fácil IA V5.7.8 — transições suaves entre seções */
html{scroll-behavior:smooth}
.sf-motion-ready main>section,
.sf-motion-ready body>section,
.sf-motion-ready .sf-animate-section{
    opacity:0;
    transform:translate3d(0,28px,0);
    transition:opacity .72s cubic-bezier(.22,.61,.36,1),transform .72s cubic-bezier(.22,.61,.36,1);
    will-change:opacity,transform;
}
.sf-motion-ready main>section.sf-in-view,
.sf-motion-ready body>section.sf-in-view,
.sf-motion-ready .sf-animate-section.sf-in-view{
    opacity:1;
    transform:translate3d(0,0,0);
}
img{max-width:100%;height:auto}
@media(prefers-reduced-motion:reduce){
    html{scroll-behavior:auto}
    .sf-motion-ready main>section,
    .sf-motion-ready body>section,
    .sf-motion-ready .sf-animate-section{
        opacity:1!important;
        transform:none!important;
        transition:none!important;
    }
}