:root {
  --black: #050607;
  --black-soft: #0d0f10;
  --black-card: #111315;
  --red: #d70b12;
  --red-light: #ff232a;
  --red-dark: #790004;
  --white: #ffffff;
  --off-white: #f5f5f5;
  --gray: #b7b7b7;
  --text: #191919;
  --border-dark: rgba(255, 255, 255, 0.13);
  --container: 1200px;
  --title-font: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: #efefef;
  font-family: var(--body-font);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: #fff;
  background: rgba(5, 6, 7, 0.97);
  border-bottom: 1px solid rgba(215, 11, 18, 0.25);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 9px;
  color: #fff;
}

.brand-symbol {
  width: 45px;
  height: 40px;
  overflow: visible;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.2;
  stroke-linejoin: round;
}

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

.brand-copy strong {
  font-family: var(--title-font);
  font-size: 22px;
  letter-spacing: -0.4px;
}

.brand-copy small {
  margin-top: 4px;
  font-size: 7px;
  letter-spacing: 0.25px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2.7vw, 38px);
}

.main-nav a {
  color: #efefef;
  font-size: 13px;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red-light);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 21px;
  color: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
  background: var(--red);
  box-shadow: 0 7px 22px rgba(215, 11, 18, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f1161d;
}

.button-outline {
  background: rgba(0, 0, 0, 0.25);
  border-color: var(--red);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(215, 11, 18, 0.14);
}

.whatsapp-mark {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.header-cta {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 13px;
  white-space: nowrap;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  padding: 10px;
  color: #fff;
  background: var(--red);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
  margin: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

/* Hero */
.hero {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 79% 28%, rgba(122, 0, 5, 0.20), transparent 25%),
    linear-gradient(110deg, #030405 0%, #08090a 58%, #111315 100%);
}

.hero-shell {
  padding-top: 24px;
  padding-bottom: 20px;
}

.hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: 49% 51%;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 590px;
  padding: 35px 10px 55px 65px;
}

.hero-eyebrow {
  margin: 0 0 2px;
  font-family: var(--title-font);
  font-size: clamp(34px, 4vw, 57px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--red);
  font-family: var(--title-font);
  font-size: clamp(54px, 6.1vw, 84px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.hero-description {
  max-width: 430px;
  margin: 23px 0 0;
  color: #efefef;
  font-size: 17px;
  line-height: 1.55;
}

.hero-description strong {
  color: var(--red-light);
}

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

.hero-visual {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.market-art {
  position: absolute;
  right: 82%;
  bottom: 0;
  width: min(390px, 68%);
  max-height: 95%;
  opacity: 0.78;
  object-fit: contain;
  pointer-events: none;
}

.advisor-figure {
  position: relative;
  width: min(100%, 590px);
  margin: 0;
  align-self: end;
}

.advisor-image {
  width: 100%;
  max-height: 545px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}

.advisor-label {
  position: absolute;
  right: 8%;
  bottom: 4%;
  min-width: 210px;
  padding: 11px 15px;
  color: #fff;
  background: rgba(8, 9, 10, 0.94);
  border: 1px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 7px 22px rgba(0, 0, 0, 0.35);
}

.advisor-label strong,
.advisor-label span,
.advisor-label small {
  display: block;
}

.advisor-label strong {
  color: var(--red-light);
  font-family: var(--title-font);
  font-size: 17px;
  text-transform: uppercase;
}

.advisor-label span {
  margin-top: 2px;
  font-size: 12px;
}

.advisor-label small {
  margin-top: 2px;
  font-size: 10px;
}

.hero-benefits {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: rgba(5, 6, 7, 0.92);
  border: 1px solid #9b090e;
  border-radius: 12px;
}

.benefit-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 18px;
}

.benefit-item + .benefit-item {
  border-left: 1px solid rgba(215, 11, 18, 0.35);
}

.line-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(145deg, #d70b12, #710004);
  border: 2px solid var(--red-light);
  border-radius: 50%;
  font-size: 29px;
}

.benefit-item h2 {
  margin: 0 0 5px;
  color: #fff;
  font-family: var(--title-font);
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.benefit-item p {
  margin: 0;
  color: #d4d4d4;
  font-size: 12px;
  line-height: 1.35;
}

/* Promotion */
.promotion-section {
  overflow: hidden;
  padding: 0 0 22px;
  color: #fff;
  background: var(--black);
}

.promotion-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 25px 20px 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(188, 0, 8, 0.26), transparent 28%),
    linear-gradient(135deg, #160001 0%, #070809 42%, #08090a 100%);
  border: 2px solid #9e080d;
  border-radius: 13px;
}

.promotion-map {
  position: absolute;
  z-index: -1;
  right: -3%;
  top: 2%;
  width: 54%;
  max-height: 96%;
  object-fit: contain;
  opacity: 0.45;
  pointer-events: none;
}

.promotion-header {
  margin: 0 0 20px 80px;
}

.promotion-header h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(38px, 4.4vw, 61px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1.5px;
  text-transform: uppercase;
}

.promotion-header p {
  margin: 5px 0 0;
  font-family: var(--title-font);
  font-size: clamp(24px, 2.7vw, 39px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.promotion-header p strong {
  color: var(--red-light);
}

.promotion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 20px;
}

.offer-card {
  overflow: hidden;
  background: rgba(4, 5, 6, 0.82);
  border: 1px solid var(--red);
  border-radius: 10px;
}

.offer-card h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 13px;
  background: linear-gradient(90deg, #8a0005, #d70b12);
  font-family: var(--title-font);
  font-size: 28px;
  text-transform: uppercase;
}

.offer-list {
  margin: 0;
  padding: 5px 15px 8px;
  list-style: none;
}

.offer-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 11px 0 11px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.offer-list li:last-child {
  border-bottom: 0;
}

.offer-list li::before {
  position: absolute;
  left: 0;
  color: var(--red-light);
  content: "›";
  font-size: 22px;
  font-weight: 900;
}

.offer-list li > strong {
  font-family: var(--title-font);
  font-size: 23px;
  text-transform: uppercase;
  white-space: nowrap;
}

.offer-list li span {
  font-size: 12px;
  line-height: 1.25;
}

.offer-list li b {
  display: block;
  font-size: 19px;
  white-space: nowrap;
}

.offer-benefits {
  align-self: center;
  padding: 20px 12px;
}

.offer-benefits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 18px 0;
  font-size: 20px;
  line-height: 1.2;
}

.offer-benefits li span {
  width: 27px;
  height: 27px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red-light);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.promotion-contact,
.coverage-contact {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  align-items: center;
  overflow: hidden;
  margin-top: 18px;
  background: linear-gradient(90deg, #9b0007 0%, #d00a11 44%, #470003 100%);
  border-radius: 8px;
}

.promotion-phone,
.coverage-contact a {
  display: flex;
  align-items: center;
  gap: 17px;
  min-width: 0;
  padding: 14px 21px;
  color: #fff;
}

.phone-circle {
  width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 4px solid #fff;
  border-radius: 50%;
  font-size: 34px;
}

.promotion-phone small,
.coverage-contact small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--title-font);
  font-size: 14px;
  text-transform: uppercase;
}

.promotion-phone strong,
.coverage-contact a strong {
  display: block;
  font-family: var(--title-font);
  font-size: clamp(30px, 3.7vw, 49px);
  line-height: 1;
  white-space: nowrap;
}

.promotion-contact > p,
.coverage-contact > p {
  margin: 0;
  padding: 11px 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Solutions */
.solutions {
  padding: 34px 0 42px;
  background: #f7f7f7;
}

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

.section-eyebrow {
  margin: 0 0 3px;
  color: var(--red);
  font-family: var(--title-font);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.section-heading h2,
.coverage-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1.1;
  letter-spacing: -1.1px;
}

.section-heading > p:last-child,
.coverage-heading > p:last-child {
  margin: 5px 0 0;
  font-size: 14px;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.09);
}

.solution-card > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.solution-content {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 28px 17px 16px;
}

.solution-icon {
  position: absolute;
  top: -28px;
  left: 15px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--red);
  background: #fff;
  border: 2px solid #dedede;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.13);
  font-size: 25px;
  font-weight: 900;
}

.solution-card h3 {
  min-height: 35px;
  margin: 3px 0 8px;
  font-family: var(--title-font);
  font-size: 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.solution-card p {
  margin: 0 0 15px;
  color: #333;
  font-size: 12px;
  line-height: 1.45;
}

.solution-card a {
  margin-top: auto;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

/* Coverage */
.coverage {
  overflow: hidden;
  padding: 35px 0 26px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 65%, rgba(134, 0, 5, 0.16), transparent 26%),
    linear-gradient(110deg, #050607, #111315);
}

.coverage-heading {
  margin-bottom: 27px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
}

.coverage-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 17px;
}

.coverage-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  font-size: 56px;
}

.pin-icon {
  position: relative;
  border: 15px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) scale(0.72);
}

.pin-icon::first-letter {
  color: #050607;
}

.globe-icon {
  border: 3px solid var(--red);
  border-radius: 50%;
  font-size: 42px;
}

.coverage-country img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
}

.coverage-item h3 {
  margin: 0 0 4px;
  font-family: var(--title-font);
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
}

.coverage-item p {
  margin: 0;
  color: #d0d0d0;
  font-size: 13px;
}

.coverage-contact {
  margin-top: 29px;
}

.coverage-contact a strong {
  font-size: clamp(28px, 3.5vw, 46px);
}

/* Testimonials and FAQ */
.testimonials {
  padding: 25px 0 17px;
  background: #f6f6f6;
}

.testimonials h2 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 23px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.testimonials blockquote {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: #292929;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 800;
}

.testimonials blockquote p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.faq {
  padding: 0 0 34px;
  background: #f6f6f6;
}

.faq-container {
  padding: 15px;
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 9px;
  box-shadow: 0 3px 11px rgba(0, 0, 0, 0.05);
}

.faq h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.faq-item {
  border: 1px solid #dedede;
  border-bottom: 0;
}

.faq-item:first-child {
  border-radius: 6px 6px 0 0;
}

.faq-item:last-child {
  border-bottom: 1px solid #dedede;
  border-radius: 0 0 6px 6px;
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px;
  color: #171717;
  background: #fff;
  border: 0;
  text-align: left;
  cursor: pointer;
}

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

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

.faq-answer {
  padding: 0 14px 14px;
  color: #454545;
  background: #fff;
}

.faq-answer p {
  margin: 0;
  font-size: 14px;
}

/* Conversion */
.conversion-bar {
  color: #fff;
  background: linear-gradient(90deg, #790004 0%, #d20a10 46%, #070809 100%);
}

.conversion-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.conversion-inner h2 {
  margin: 0;
  font-family: var(--title-font);
  font-size: 25px;
  line-height: 1.1;
}

.conversion-button {
  min-width: 245px;
  background: var(--red);
  border-color: rgba(255, 255, 255, 0.35);
}

.conversion-phone {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 13px;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 27px;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  color: #fff;
  background: #050607;
}

.footer-benefits {
  border-bottom: 1px solid var(--border-dark);
}

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

.footer-benefits p {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 92px;
  margin: 0;
  padding: 15px 20px;
  font-family: var(--title-font);
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
}

.footer-benefits p + p {
  border-left: 1px solid var(--border-dark);
}

.footer-benefits span {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--red);
  border: 2px solid var(--red);
  border-radius: 50%;
  font-size: 22px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.95fr 1.15fr;
  gap: 45px;
  padding-top: 33px;
  padding-bottom: 30px;
}

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

.footer-about > p {
  max-width: 265px;
  margin: 0;
  color: #b9b9b9;
  font-size: 13px;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.footer-column h2 {
  margin: 4px 0 8px;
  font-family: var(--title-font);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #c8c8c8;
  font-size: 12px;
}

.footer-column a:hover {
  color: var(--red-light);
}

.footer-contact a {
  color: #fff;
  font-size: 19px;
  white-space: nowrap;
}

.footer-contact p:last-child {
  margin-top: 12px;
  line-height: 1.5;
}

.footer-legal {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  color: #8f8f8f;
  border-top: 1px solid var(--border-dark);
  font-size: 10px;
}

.footer-legal p {
  margin: 0;
}

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

/* Tablet */
@media (max-width: 1020px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  .main-nav {
    gap: 16px;
  }

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

  .hero-copy {
    padding-left: 20px;
  }

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

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

  .benefit-item:nth-child(n + 3) {
    border-top: 1px solid rgba(215, 11, 18, 0.35);
  }

  .promotion-header {
    margin-left: 25px;
  }

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

  .offer-benefits {
    grid-column: 1 / -1;
    padding-block: 0;
  }

  .offer-benefits ul {
    display: flex;
    justify-content: center;
    gap: 25px;
  }

  .offer-benefits li {
    max-width: 220px;
    font-size: 16px;
  }

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

  .coverage-grid {
    gap: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 70px;
    justify-content: space-between;
    gap: 14px;
  }

  .brand-symbol {
    width: 38px;
    height: 34px;
  }

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

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

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 70px;
    right: 18px;
    left: 18px;
    z-index: 110;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: #111315;
    border: 1px solid rgba(215, 11, 18, 0.65);
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
  }

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

  .main-nav a {
    padding: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .hero-shell {
    padding-top: 18px;
    padding-bottom: 16px;
  }

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

  .hero-copy {
    align-self: stretch;
    max-width: none;
    padding: 7px 2px 20px;
  }

  .hero-eyebrow {
    font-size: clamp(35px, 11vw, 46px);
    letter-spacing: -1px;
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 66px);
    letter-spacing: -1px;
  }

  .hero-description {
    max-width: 470px;
    margin-top: 17px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 9px;
    margin-top: 19px;
  }

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

  .hero-visual {
    min-height: 0;
    display: block;
  }

  .market-art {
    right: auto;
    bottom: 0;
    left: -8%;
    width: 48%;
    max-height: 80%;
    opacity: 0.67;
  }

  .advisor-figure {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
  }

  .advisor-image {
    max-height: none;
  }

  .advisor-label {
    right: 3%;
    bottom: 5%;
    min-width: 185px;
    padding: 9px 12px;
  }

  .advisor-label strong {
    font-size: 14px;
  }

  .advisor-label span {
    font-size: 10px;
  }

  .advisor-label small {
    font-size: 9px;
  }

  .hero-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 5px;
    border-radius: 9px;
  }

  .benefit-item {
    align-items: flex-start;
    gap: 9px;
    padding: 13px 9px;
  }

  .line-icon {
    width: 39px;
    height: 39px;
    font-size: 21px;
  }

  .benefit-item h2 {
    font-size: 11px;
  }

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

  .promotion-section {
    padding-bottom: 17px;
  }

  .promotion-panel {
    padding: 15px 10px 10px;
    border-radius: 9px;
  }

  .promotion-map {
    top: 35%;
    right: -20%;
    width: 115%;
    opacity: 0.26;
  }

  .promotion-header {
    margin: 0 0 14px;
    text-align: center;
  }

  .promotion-header h2 {
    font-size: clamp(28px, 9.2vw, 39px);
    letter-spacing: -0.5px;
  }

  .promotion-header p {
    margin-top: 3px;
    font-size: clamp(19px, 6.5vw, 27px);
  }

  .promotion-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .offer-card h3 {
    padding: 9px;
    font-size: 22px;
  }

  .offer-list {
    padding-inline: 11px;
  }

  .offer-list li {
    padding-block: 8px;
  }

  .offer-list li > strong {
    font-size: 17px;
  }

  .offer-list li span {
    font-size: 10px;
  }

  .offer-list li b {
    display: inline;
    font-size: 13px;
  }

  .offer-benefits {
    grid-column: auto;
    padding: 2px 4px;
  }

  .offer-benefits ul {
    display: block;
  }

  .offer-benefits li {
    max-width: none;
    margin: 7px 0;
    gap: 7px;
    font-size: 12px;
  }

  .offer-benefits li span {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }

  .promotion-contact,
  .coverage-contact {
    grid-template-columns: 1fr;
    margin-top: 11px;
  }

  .promotion-phone,
  .coverage-contact a {
    justify-content: center;
    gap: 10px;
    padding: 11px 8px;
  }

  .phone-circle {
    width: 46px;
    height: 46px;
    border-width: 3px;
    font-size: 23px;
  }

  .promotion-phone small,
  .coverage-contact small {
    font-size: 9px;
  }

  .promotion-phone strong,
  .coverage-contact a strong {
    font-size: clamp(25px, 8.4vw, 34px);
  }

  .promotion-contact > p,
  .coverage-contact > p {
    padding: 11px 14px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    border-left: 0;
    font-size: 10px;
  }

  .solutions {
    padding: 25px 0 29px;
  }

  .section-heading h2,
  .coverage-heading h2 {
    font-size: 27px;
  }

  .section-heading > p:last-child,
  .coverage-heading > p:last-child {
    font-size: 12px;
  }

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

  .solution-card {
    display: grid;
    grid-template-columns: 105px 1fr;
    min-height: 78px;
    border-radius: 6px;
  }

  .solution-card > img {
    width: 105px;
    height: 100%;
    min-height: 78px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .solution-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    min-height: 0;
    padding: 12px 13px;
  }

  .solution-icon,
  .solution-card p {
    display: none;
  }

  .solution-card h3 {
    min-height: 0;
    margin: 0;
    font-size: 14px;
  }

  .solution-card a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    margin: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .solution-card a span {
    color: var(--red);
    font-size: 22px;
  }

  .coverage {
    padding: 27px 0 20px;
  }

  .coverage-heading {
    margin-bottom: 20px;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .coverage-item {
    gap: 13px;
  }

  .coverage-icon,
  .coverage-country img {
    width: 54px;
    height: 54px;
  }

  .pin-icon {
    border-width: 11px;
  }

  .globe-icon {
    font-size: 31px;
  }

  .coverage-item h3 {
    font-size: 14px;
  }

  .coverage-item p {
    font-size: 11px;
  }

  .coverage-contact {
    margin-top: 20px;
  }

  .testimonials {
    padding: 21px 0 13px;
  }

  .testimonials h2 {
    font-size: 18px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .testimonials blockquote {
    padding: 9px 11px;
  }

  .testimonial-avatar {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .testimonials blockquote p {
    font-size: 11px;
  }

  .faq {
    padding-bottom: 26px;
  }

  .faq-container {
    padding: 12px 9px;
  }

  .faq h2 {
    font-size: 18px;
  }

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

  .faq-answer {
    padding: 0 10px 11px;
  }

  .faq-answer p {
    font-size: 12px;
  }

  .conversion-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 17px;
    padding-bottom: 17px;
    text-align: center;
  }

  .conversion-inner h2 {
    font-size: 20px;
  }

  .conversion-button {
    width: 100%;
    min-width: 0;
  }

  .conversion-phone {
    justify-content: center;
    min-height: 0;
    padding: 10px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
    font-size: 24px;
  }

  .footer-benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-benefits p {
    min-height: 57px;
    padding: 9px 5px;
    font-size: 11px;
  }

  .footer-benefits p + p {
    border-top: 1px solid var(--border-dark);
    border-left: 0;
  }

  .footer-benefits span {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 26px;
    padding-bottom: 24px;
  }

  .footer-about > p {
    max-width: 420px;
  }

  .footer-column {
    display: none;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding-block: 14px;
  }

  .footer-legal nav {
    flex-wrap: wrap;
    gap: 8px 20px;
  }
}

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

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

  .hero-eyebrow {
    font-size: 34px;
  }

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

  .benefit-item + .benefit-item {
    border-top: 1px solid rgba(215, 11, 18, 0.35);
    border-left: 0;
  }

  .solution-card {
    grid-template-columns: 88px 1fr;
  }

  .solution-card > img {
    width: 88px;
  }

  .promotion-phone strong,
  .coverage-contact a strong {
    font-size: 25px;
  }

  .phone-circle {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

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

/* Ajustes finais do header mobile e prevenção de ícones duplicados */
@media (max-width: 768px) {
  .site-header .header-cta.sf-whatsapp-button {
    display: none !important;
  }

  .site-header .menu-toggle {
    display: grid !important;
    place-items: center;
    flex: 0 0 42px;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.sf-whatsapp-button .sf-wa-icon + .sf-wa-icon,
.sf-whatsapp-button .sf-wa-icon ~ .whatsapp-mark,
.sf-whatsapp-button .sf-wa-icon ~ .phone-circle {
  display: none !important;
}
