:root {
  --bg: #050505;
  --bg-soft: #0b0b0b;
  --bg-card: #111111;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.66);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff7400;
  --accent-strong: #ff9340;
  --shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  --transition: 0.28s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

.vc-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.vc-page {
  position: relative;
  overflow: clip;
  background: var(--bg);
}

/* =========================
   HERO SHELL
========================= */

.vc-hero-shell {
  position: relative;
  min-height: 100svh;
  background: #000000;
  overflow: hidden;
}

.vc-hero-shell__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vc-hero-shell__image {
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(1) brightness(0.54) contrast(1.03);
  transform: scale(1.03);
}

.vc-hero-shell__image--left {
  background-image: url("/images/img6.jpeg");
  background-position: center center;
  animation: vcFloatLeft 18s ease-in-out infinite;
}

.vc-hero-shell__image--right {
  background-image: url("/images/img8.jpeg");
  background-position: center center;
  animation: vcFloatRight 20s ease-in-out infinite;
}

.vc-hero-shell__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.38) 0%,
      rgba(0, 0, 0, 0.3) 18%,
      rgba(0, 0, 0, 0.48) 56%,
      rgba(0, 0, 0, 0.84) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.36) 100%);
}

.vc-hero-shell__glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 26%, rgba(255, 116, 0, 0.08), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 116, 0, 0.08), transparent 24%);
}

/* =========================
   HEADER
========================= */

.vc-header {
  position: sticky;
  top: 0;
  z-index: 30;
  isolation: isolate;
}

.vc-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(5, 5, 5, 0.26);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.vc-header.is-scrolled::before {
  background: rgba(5, 5, 5, 0.72);
  border-bottom-color: var(--line);
}

.vc-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.vc-header__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.vc-header__logo {
  width: auto;
  height: 44px;
  max-width: 160px;
  object-fit: contain;
}

.vc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.vc-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 999px;
  transition: var(--transition);
}

.vc-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.vc-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* =========================
   BOTÕES
========================= */

.vc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  transition: var(--transition);
}

.vc-btn--primary {
  color: #121212;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  box-shadow: 0 14px 34px rgba(255, 116, 0, 0.24);
}

.vc-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 116, 0, 0.3);
}

.vc-btn--menu {
  display: none;
  margin-top: 12px;
}

.vc-btn--hero {
  min-height: 52px;
  padding: 0 28px;
  font-size: 0.98rem;
  margin-top: 20px;
}

/* =========================
   MENU MOBILE
========================= */

.vc-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.vc-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line-strong);
}

.vc-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 999px;
  transition: var(--transition);
}

.vc-menu-toggle span+span {
  margin-top: 5px;
}

.vc-menu-backdrop {
  display: none;
}

/* =========================
   HERO
========================= */

.vc-hero {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 28px;
}

.vc-hero__content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vc-hero__kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.vc-hero__title {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.vc-hero__title span {
  color: var(--accent);
}

.vc-hero__subtitle {
  max-width: 700px;
  margin: 50px 0 0;
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.56;
}

.vc-hero__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 860px;
  margin: 18px auto 0;
}

.vc-hero__services span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

.vc-hero__actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 991px) {
  .vc-hero {
    min-height: auto;
    padding: 32px 0 44px;
  }

  .vc-hero__title {
    font-size: clamp(2.45rem, 9vw, 4.4rem);
  }

  .vc-hero__subtitle {
    max-width: 100%;
  }

  .vc-hero__services {
    letter-spacing: 0.02em;
  }
}

@media (max-width: 767px) {
  .vc-hero {
    min-height: calc(100svh - 72px);
    align-items: flex-start;
    padding: 18px 0 22px;
  }

  .vc-hero__content {
    max-width: 100%;
  }

  .vc-hero__kicker {
    margin-bottom: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .vc-hero__title {
    max-width: 10ch;
    font-size: clamp(2rem, 11.5vw, 3.3rem);
    line-height: 0.92;
  }

  .vc-hero__subtitle {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .vc-hero__services {
    gap: 8px;
    margin-top: 18px;
    max-width: 320px;
  }

  .vc-hero__services span {
    min-height: 32px;
    padding: 0 10px;
    font-size: 0.72rem;
    letter-spacing: 0.02em;
  }

  .vc-hero__actions {
    width: 100%;
    margin-top: 18px;
  }

  .vc-btn--hero {
    width: 70%;
    min-height: 50px;
    padding: 0 20px;
    font-size: 0.94rem;
  }
}

@media (max-width: 575px) {
  .vc-hero {
    padding: 16px 0 18px;
  }

  .vc-hero__kicker {
    margin-bottom: 12px;
  }

  .vc-hero__title {
    font-size: clamp(1.85rem, 11vw, 2.95rem);
    max-width: 18ch;
    margin-top: 10px;
  }

  .vc-hero__subtitle {
    margin-top: 20px;
    max-width: 30ch;
    font-size: 0.92rem;
  }

  .vc-hero__services {
    margin-top: 16px;
    gap: 7px;
    max-width: 300px;
  }

  .vc-hero__services span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .vc-hero__actions {
    margin-top: 40px;
  }

  .vc-btn--hero {
    min-height: 48px;
    margin-top: 170px;
  }
}

/* =========================
   SERVIÇOS
========================= */

.vc-services {
  position: relative;
  padding: 96px 0 110px;
  background:
    linear-gradient(180deg, #070707 0%, #0b0b0b 18%, #080808 100%);
}

.vc-services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 116, 0, 0.12), transparent 22%),
    radial-gradient(circle at 88% 82%, rgba(255, 116, 0, 0.08), transparent 20%);
}

.vc-services .vc-container {
  position: relative;
  z-index: 1;
}

.vc-services__head {
  max-width: 780px;
  margin-bottom: 34px;
}

.vc-services__eyebrow {
  margin: 0 0 10px;
  color: #ff9a47;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-services__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.vc-services__title span {
  color: var(--accent);
}

.vc-services__text {
  margin: 16px 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.vc-services__list {
  display: grid;
  gap: 24px;
}

.vc-service-card {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(15, 15, 15, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.vc-service-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.vc-service-card--reverse .vc-service-card__media {
  order: 2;
}

.vc-service-card--reverse .vc-service-card__content {
  order: 1;
}

.vc-service-card__media {
  position: relative;
  align-self: center;
  border-radius: 22px;
  overflow: hidden;
  background: #121212;
  isolation: isolate;
}

.vc-service-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34)),
    linear-gradient(135deg, rgba(255, 116, 0, 0.12), transparent 55%);
  pointer-events: none;
}

.vc-service-card__media::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 0, 0.2), transparent 72%);
  z-index: 2;
  pointer-events: none;
}

.vc-service-card__frame {
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  pointer-events: none;
}

.vc-service-card__media img {
  width: 100%;
  height: 340px;
  min-height: 340px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.04);
  transition: transform 0.45s ease;
}

.vc-service-card:hover .vc-service-card__media img {
  transform: scale(1.04);
}

.vc-service-card__number {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  border-radius: 14px;
  background: rgba(8, 8, 8, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.vc-service-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.vc-service-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 116, 0, 0.12);
  color: #ffb879;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vc-service-card__title {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: clamp(1.5rem, 2vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.vc-service-card__desc {
  margin: 12px 0 0;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.96rem;
  line-height: 1.72;
}

.vc-service-card__topics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.vc-service-card__topics li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 14px 0 34px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.32;
}

.vc-service-card__topics li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 116, 0, 0.12);
  transform: translateY(-50%);
}

.vc-service-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 20px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111111;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  box-shadow: 0 16px 36px rgba(255, 116, 0, 0.22);
  transition: var(--transition);
}

.vc-service-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 116, 0, 0.28);
}

/* =========================
   AUX
========================= */

.vc-anchor {
  height: 1px;
}

/* =========================
   ANIMAÇÕES
========================= */

@keyframes vcFloatLeft {

  0%,
  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.06) translate3d(-6px, -6px, 0);
  }
}

@keyframes vcFloatRight {

  0%,
  100% {
    transform: scale(1.03) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.06) translate3d(6px, -8px, 0);
  }
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {

  .vc-service-card,
  .vc-service-card--reverse {
    grid-template-columns: 1fr;
  }

  .vc-service-card--reverse .vc-service-card__media,
  .vc-service-card--reverse .vc-service-card__content {
    order: initial;
  }

  .vc-service-card__media img {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 991px) {
  .vc-header__inner {
    min-height: 72px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 16px;
  }

  .vc-header__logo {
    height: 40px;
    max-width: 148px;
  }

  .vc-btn--desktop {
    display: none;
  }

  .vc-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .vc-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 24;
    border: 0;
    background: rgba(0, 0, 0, 0.68);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .vc-nav {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 25;
    width: min(86vw, 360px);
    height: 100dvh;
    padding: 84px 22px 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    border-left: 1px solid var(--line);
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(18px);
    transition: right var(--transition);
  }

  .vc-nav a {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .vc-btn--menu {
    display: inline-flex;
    width: 100%;
  }

  body.menu-open .vc-nav {
    right: 0;
  }

  body.menu-open .vc-menu-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  body.menu-open .vc-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.menu-open .vc-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.menu-open .vc-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .vc-services {
    padding: 40px 0 60px;
  }

  .vc-service-card__topics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vc-container {
    width: min(100% - 24px, 1180px);
  }

  .vc-hero-shell__bg {
    grid-template-columns: 1fr;
  }

  .vc-hero-shell__image--left {
    display: none;
  }

  .vc-hero-shell__image {
    background-position: center top;
    filter: grayscale(1) brightness(0.58) contrast(1.02);
  }

  .vc-hero-shell__overlay {
    background:
      linear-gradient(180deg,
        rgba(0, 0, 0, 0.44) 0%,
        rgba(0, 0, 0, 0.34) 18%,
        rgba(0, 0, 0, 0.58) 54%,
        rgba(0, 0, 0, 0.88) 100%),
      linear-gradient(90deg,
        rgba(0, 0, 0, 0.24) 0%,
        rgba(0, 0, 0, 0.14) 100%);
  }

  .vc-services__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
  }

  .vc-services__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .vc-service-card {
    gap: 18px;
    padding: 16px;
    border-radius: 22px;
  }

  .vc-service-card__media {
    border-radius: 18px;
  }

  .vc-service-card__frame {
    inset: 9px;
    border-radius: 13px;
  }

  .vc-service-card__media img {
    height: 260px;
    min-height: 260px;
  }

  .vc-service-card__number {
    top: 12px;
    left: 12px;
    min-width: 42px;
    height: 42px;
    border-radius: 12px;
    font-size: 0.88rem;
  }

  .vc-service-card__title {
    font-size: clamp(1.42rem, 6vw, 1.82rem);
  }

  .vc-service-card__desc {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .vc-service-card__topics li {
    min-height: 42px;
    font-size: 0.88rem;
  }

  .vc-service-card__cta {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .vc-header__logo {
    height: 36px;
    max-width: 132px;
  }

  .vc-menu-toggle {
    width: 44px;
    height: 44px;
  }

  .vc-service-card__media img {
    height: 236px;
    min-height: 236px;
  }
}

/* =========================
   CONVERSION BLOCK
========================= */

.vc-conversion-block {
  position: relative;
  padding: 40px 0 110px;
  background:
    linear-gradient(180deg, #080808 0%, #0b0b0b 38%, #080808 100%);
  overflow: visible;
}

.vc-conversion-block::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 116, 0, 0.1), transparent 22%),
    radial-gradient(circle at 86% 88%, rgba(255, 116, 0, 0.08), transparent 20%);
}

.vc-conversion-block .vc-container {
  position: relative;
  z-index: 1;
}

/* =========================
   DIFFERENTIALS
========================= */

.vc-differentials {
  position: relative;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.vc-differentials__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.vc-differentials__eyebrow {
  margin: 0 0 10px;
  color: #ff9a47;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-differentials__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.vc-differentials__text {
  margin: 14px 0 0;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.vc-differentials__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vc-differentials__card {
  position: relative;
  min-height: 100%;
  padding: 24px 22px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(16, 16, 16, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  transition: 0.28s ease;
}

.vc-differentials__card::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -26px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 0, 0.18), transparent 72%);
  pointer-events: none;
}

.vc-differentials__card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.vc-differentials__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 116, 0, 0.18);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.28);
}

.vc-differentials__icon {
  position: relative;
  z-index: 1;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 116, 0, 0.12);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 116, 0, 0.08);
}

.vc-differentials__icon .icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.1;
}

.vc-differentials__card-title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.vc-differentials__card-text {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================
   CTA CONTACT
========================= */

.vc-cta-contact {
  position: relative;
  padding: 42px 0 0;
  background: transparent;
  overflow: visible;
}

.vc-cta-contact__shell {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.vc-cta-contact__shell::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.vc-cta-contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8, 8, 8, 0.94) 0%,
      rgba(8, 8, 8, 0.84) 34%,
      rgba(8, 8, 8, 0.62) 58%,
      rgba(8, 8, 8, 0.88) 100%),
    url("/images/img6.jpeg");
  background-size: cover;
  background-position: center right;
  opacity: 1;
}

.vc-cta-contact__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 116, 0, 0.14), transparent 24%),
    radial-gradient(circle at 86% 76%, rgba(255, 116, 0, 0.08), transparent 22%);
}

.vc-cta-contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
}

.vc-cta-contact__content,
.vc-cta-contact__form-wrap {
  display: flex;
}

.vc-cta-contact__content {
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 8px 6px 8px 4px;
}

.vc-cta-contact__eyebrow {
  margin: 0 0 12px;
  color: #ff9a47;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-cta-contact__title {
  margin: 0;
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.vc-cta-contact__title span {
  color: var(--accent);
}

.vc-cta-contact__text {
  max-width: 56ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.78;
}

.vc-cta-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.vc-cta-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: 0.28s ease;
}

.vc-cta-contact__btn--whatsapp {
  background: linear-gradient(135deg, #1fbf5b 0%, #25d366 100%);
  color: #08140d;
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.2);
}

.vc-cta-contact__btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.26);
}

.vc-cta-contact__btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111111;
  box-shadow: 0 16px 36px rgba(255, 116, 0, 0.22);
}

.vc-cta-contact__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 116, 0, 0.28);
}

.vc-cta-contact__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
}

.vc-cta-contact__info span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.vc-cta-contact__info a {
  width: fit-content;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
}

.vc-cta-contact__form-wrap {
  align-items: stretch;
}

.vc-cta-contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}

.vc-cta-contact__form-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.vc-cta-contact__fields {
  display: grid;
  gap: 12px;
}

.vc-cta-contact__input,
.vc-cta-contact__textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  background: rgba(255, 255, 255, 0.045);
  color: #ffffff;
  font-family: inherit;
  transition: 0.28s ease;
}

.vc-cta-contact__input::placeholder,
.vc-cta-contact__textarea::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.vc-cta-contact__input:focus,
.vc-cta-contact__textarea:focus {
  border-color: rgba(255, 116, 0, 0.36);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(255, 116, 0, 0.08);
}

.vc-cta-contact__input {
  height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  font-size: 0.96rem;
}

.vc-cta-contact__textarea {
  min-height: 132px;
  padding: 16px;
  border-radius: 18px;
  resize: vertical;
  font-size: 0.96rem;
  line-height: 1.6;
}

.vc-cta-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 16px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #111111;
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(255, 116, 0, 0.22);
  transition: 0.28s ease;
}

.vc-cta-contact__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(255, 116, 0, 0.28);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {
  .vc-differentials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vc-cta-contact__grid {
    grid-template-columns: 1fr;
  }

  .vc-cta-contact__title {
    max-width: 100%;
  }

  .vc-cta-contact__text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .vc-conversion-block {
    padding: 0 0 30px;
  }

  .vc-differentials {
    padding: 0;
  }

  .vc-differentials__head {
    margin-bottom: 22px;
  }

  .vc-differentials__title {
    font-size: clamp(1.7rem, 7vw, 2.3rem);
  }

  .vc-differentials__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .vc-differentials__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .vc-differentials__card {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .vc-differentials__card::after {
    border-radius: 19px;
  }

  .vc-differentials__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .vc-differentials__icon .icon {
    width: 22px;
    height: 22px;
  }

  .vc-differentials__card-title {
    font-size: 1.12rem;
  }

  .vc-differentials__card-text {
    font-size: 0.92rem;
    line-height: 1.64;
  }

  .vc-cta-contact {
    padding: 26px 0 0;
  }

  .vc-cta-contact__shell {
    border-radius: 24px;
  }

  .vc-cta-contact__shell::before {
    border-radius: 23px;
  }

  .vc-cta-contact__bg {
    background:
      linear-gradient(180deg,
        rgba(8, 8, 8, 0.9) 0%,
        rgba(8, 8, 8, 0.72) 36%,
        rgba(8, 8, 8, 0.9) 100%),
      url("/images/img6.jpeg");
    background-size: cover;
    background-position: center center;
  }

  .vc-cta-contact__grid {
    gap: 22px;
    padding: 20px;
  }

  .vc-cta-contact__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .vc-cta-contact__text {
    font-size: 0.95rem;
    line-height: 1.68;
  }

  .vc-cta-contact__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .vc-cta-contact__btn {
    width: 100%;
  }

  .vc-cta-contact__form {
    padding: 18px;
    border-radius: 20px;
  }

  .vc-cta-contact__form-title {
    font-size: 1.2rem;
  }

  .vc-cta-contact__input {
    height: 52px;
  }

  .vc-cta-contact__textarea {
    min-height: 120px;
  }

  .vc-cta-contact__submit {
    width: 100%;
  }
}

/* =========================
   ABOUT SECTION
========================= */

.vc-about-section {
  position: relative;
  padding: 96px 0 96px;
  background:
    linear-gradient(180deg, #080808 0%, #0b0b0b 100%);
}

.vc-about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 116, 0, 0.1), transparent 22%),
    radial-gradient(circle at 86% 84%, rgba(255, 116, 0, 0.08), transparent 20%);
}

.vc-about-section .vc-container {
  position: relative;
  z-index: 1;
}

.vc-about {
  display: grid;
  gap: 34px;
}

.vc-about__grid {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.vc-about__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #111111;
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.vc-about__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28)),
    linear-gradient(135deg, rgba(255, 116, 0, 0.12), transparent 58%);
  pointer-events: none;
}

.vc-about__media::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 0, 0.22), transparent 72%);
  z-index: 2;
  pointer-events: none;
}

.vc-about__frame {
  position: absolute;
  inset: 10px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  pointer-events: none;
}

.vc-about__media img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.04);
  display: block;
}

.vc-about__content {
  max-width: none;
  padding: 6px 0;
}

.vc-about__eyebrow {
  margin: 0 0 12px;
  color: #ff9a47;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.vc-about__title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
  max-width: 15ch;
}

.vc-about__title span {
  color: var(--accent);
}

.vc-about__text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.86;
  max-width: 62ch;
}

.vc-about__reviews {
  margin-top: 4px;
}

.vc-about__reviews-box {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.92);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {
  .vc-about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vc-about__content {
    padding: 0;
  }

  .vc-about__title {
    max-width: 100%;
  }

  .vc-about__text {
    max-width: 100%;
  }

  .vc-about__media img {
    height: 320px;
  }
}

@media (max-width: 767px) {
  .vc-about-section {
    padding: 40px 0 40px;
  }

  .vc-about {
    gap: 24px;
  }

  .vc-about__grid {
    gap: 20px;
  }

  .vc-about__media {
    border-radius: 22px;
  }

  .vc-about__frame {
    inset: 9px;
    border-radius: 15px;
  }

  .vc-about__media img {
    height: 260px;
  }

  .vc-about__title {
    font-size: clamp(1.95rem, 8vw, 2.5rem);
  }

  .vc-about__text {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .vc-about__reviews-box {
    padding: 16px;
    border-radius: 22px;
  }
}

/* =========================
   FOOTER
========================= */

.vc-footer {
  position: relative;
  padding: 0 0 32px;
  background:
    linear-gradient(180deg, #080808 0%, #050505 100%);
  overflow: clip;
}

.vc-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 116, 0, 0.08), transparent 22%),
    radial-gradient(circle at 90% 82%, rgba(255, 116, 0, 0.07), transparent 18%);
}

.vc-footer .vc-container {
  position: relative;
  z-index: 1;
}

.vc-footer__top {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(220px, 0.7fr) minmax(260px, 0.85fr);
  gap: 32px;
  align-items: stretch;
  padding: 34px 0 28px;
}

.vc-footer__map-col,
.vc-footer__nav-col,
.vc-footer__contact-col {
  min-width: 0;
}

.vc-footer__map-card,
.vc-footer__panel {
  position: relative;
  height: 100%;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(14, 14, 14, 0.92);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.vc-footer__map-card::before,
.vc-footer__panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.vc-footer__map-card {
  padding: 14px;
}

.vc-footer__panel {
  padding: 24px 24px 22px;
}

.vc-footer__panel::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -26px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 116, 0, 0.14), transparent 72%);
  pointer-events: none;
}

.vc-footer__nav-col {
  display: flex;
}

.vc-footer__contact-col {
  display: flex;
}

.vc-footer__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  margin-bottom: 20px;
}

.vc-footer__logo {
  width: auto;
  height: 62px;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(255, 116, 0, 0.12));
}

.vc-footer__map {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
}

.vc-footer__map::before {
  content: "";
  display: block;
  padding-top: 60%;
}

.vc-footer__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: grayscale(0.04) contrast(1.02);
}

.vc-footer__col-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.34rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.vc-footer__nav {
  display: grid;
  gap: 12px;
}

.vc-footer__nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: 0.28s ease;
}

.vc-footer__nav a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.vc-footer__contact-list {
  display: grid;
  gap: 18px;
}

.vc-footer__contact-item {
  display: grid;
  gap: 6px;
}

.vc-footer__contact-label {
  color: #ff9a47;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vc-footer__contact-item a,
.vc-footer__contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.98rem;
  line-height: 1.7;
}

.vc-footer__contact-item a:hover {
  color: #ffffff;
}

.vc-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vc-footer__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.6;
}

.vc-footer__pura-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-right: 20px;
}

.vc-footer__pura-glow {
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 116, 0, 0.08), transparent 72%);
  filter: blur(10px);
  animation: vcPuraPulse 2.2s ease-in-out infinite;
  pointer-events: none;
}

.vc-footer__pura-logo {
  position: relative;
  z-index: 1;
  width: auto;
  height: 36px;
  max-width: 150px;
  object-fit: contain;
  opacity: 0.98;
  transition: transform 0.28s ease;
}

.vc-footer__pura-link:hover .vc-footer__pura-logo {
  transform: scale(1.04);
}

@keyframes vcPuraPulse {

  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.98);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.06);
  }
}

/* =========================
   RESPONSIVO
========================= */

@media (max-width: 1100px) {
  .vc-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .vc-footer__map-col {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .vc-footer {
    padding: 0 0 26px;
    margin-bottom: 70px;
  }

  .vc-footer__top {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 28px 0 24px;
  }

  .vc-footer__map-card,
  .vc-footer__panel {
    border-radius: 22px;
  }

  .vc-footer__map-card::before,
  .vc-footer__panel::before {
    border-radius: 21px;
  }

  .vc-footer__map-card {
    padding: 12px;
  }

  .vc-footer__panel {
    padding: 22px 18px 20px;
  }

  .vc-footer__nav-col {
    text-align: center;
  }

  .vc-footer__nav-col,
  .vc-footer__contact-col {
    display: block;
  }

  .vc-footer__logo-link {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .vc-footer__logo {
    margin: 0 auto;
  }

  .vc-footer__map {
    border-radius: 18px;
  }

  .vc-footer__col-title {
    margin-bottom: 14px;
    font-size: 1.22rem;
    text-align: center;
  }

  .vc-footer__nav {
    justify-items: center;
    text-align: center;
  }

  .vc-footer__nav a,
  .vc-footer__contact-item a,
  .vc-footer__contact-item p {
    width: 100%;
    font-size: 0.96rem;
    text-align: center;
  }

  .vc-footer__nav a:hover {
    transform: none;
  }

  .vc-footer__contact-list {
    text-align: center;
  }

  .vc-footer__contact-item {
    justify-items: center;
  }

  .vc-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding-top: 18px;
  }

  .vc-footer__copy {
    font-size: 0.88rem;
  }

  .vc-footer__pura-link {
    margin-right: 0;
  }

  .vc-footer__pura-logo {
    height: 30px;
    max-width: 124px;
  }
}

/* =========================
   Mobile WhatsApp Bar
========================= */

.mobile-whatsapp-bar {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 340;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(34px) scale(0.96);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 620ms ease;
  will-change: opacity, transform;
}

.mobile-whatsapp-bar.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-whatsapp-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 72px;
  padding: 13px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #25d366 0%, #16b955 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 34px rgba(20, 138, 75, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
  text-align: center;
}

.mobile-whatsapp-bar__link:hover {
  transform: translateY(-1px);
  filter: saturate(1.03);
  box-shadow:
    0 22px 38px rgba(20, 138, 75, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mobile-whatsapp-bar__icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.mobile-whatsapp-bar__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.mobile-whatsapp-bar__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.mobile-whatsapp-bar__title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mobile-whatsapp-bar__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
  line-height: 1.2;
}

html.is-mobile-menu-open .mobile-whatsapp-bar,
body.is-mobile-menu-open .mobile-whatsapp-bar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(34px) scale(0.96) !important;
}

@media (min-width: 981px) {
  .mobile-whatsapp-bar {
    display: none !important;
  }
}

@media (max-width: 560px) {
  .mobile-whatsapp-bar {
    left: max(10px, env(safe-area-inset-left));
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(10px + env(safe-area-inset-bottom));
  }

  .mobile-whatsapp-bar__link {
    min-height: 68px;
    padding: 12px 15px;
    border-radius: 20px;
    gap: 12px;
  }

  .mobile-whatsapp-bar__icon-wrap {
    width: 42px;
    height: 42px;
  }

  .mobile-whatsapp-bar__icon {
    width: 22px;
    height: 22px;
  }

  .mobile-whatsapp-bar__title {
    font-size: 0.9rem;
  }

  .mobile-whatsapp-bar__text {
    font-size: 0.77rem;
  }
}

@media (max-width: 390px) {
  .mobile-whatsapp-bar__link {
    min-height: 64px;
    padding: 11px 14px;
    gap: 10px;
  }

  .mobile-whatsapp-bar__title {
    font-size: 0.86rem;
  }

  .mobile-whatsapp-bar__text {
    font-size: 0.74rem;
  }
}

/* =========================
   WhatsApp Float Desktop
========================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 340;
}

.whatsapp-float__link {
  position: relative;
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #16b955 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 34px rgba(20, 138, 75, 0.24),
    0 8px 18px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
  animation: whatsappFloatPulse 1.8s ease-in-out infinite;
}

.whatsapp-float__link::before,
.whatsapp-float__link::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.whatsapp-float__link::before {
  background: rgba(37, 211, 102, 0.24);
  animation: whatsappFloatRing 1.8s ease-out infinite;
}

.whatsapp-float__link::after {
  inset: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  border-radius: inherit;
}

.whatsapp-float__link:hover {
  transform: translateY(-3px) scale(1.04);
  filter: saturate(1.04);
  box-shadow:
    0 24px 42px rgba(20, 138, 75, 0.28),
    0 10px 20px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.whatsapp-float__icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  object-fit: contain;
}

@keyframes whatsappFloatPulse {

  0%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }

  50% {
    transform: scale(1.06);
    filter: brightness(1.08);
  }
}

@keyframes whatsappFloatRing {
  0% {
    opacity: 0.58;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.34);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@media (max-width: 980px) {
  .whatsapp-float {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {

  .whatsapp-float__link,
  .whatsapp-float__link::before {
    animation: none !important;
  }
}