/* #BLOCO 1 RESET GLOBAL DO SITE */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f57c2f;
  color: white;
  overflow-x: hidden;
}

/* #FINAL DO BLOCO 1 RESET GLOBAL DO SITE */
/* #BLOCO 1.1 PALCO GLOBAL DE FUNDOS DA APLICACAO */

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
  overflow-x: hidden;
}

#background-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: scale(1);
  transition: opacity 1.8s ease, transform 2.2s ease, filter 2s ease;
}

.bg-splash {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
    url('../img/banners/fundo_splash.png');
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

.bg-index {
  background-image: linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28)),
    url('../img/banners/fundo_index.png');
  opacity: 0;
  filter: blur(14px);
  transform: scale(1.08);
}

body.bg-transition-active .bg-splash {
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.04);
}

body.bg-transition-active .bg-index {
  opacity: 1;
  filter: blur(0px);
  transform: scale(1);
}

/* #FINAL DO BLOCO 1.1 PALCO GLOBAL DE FUNDOS DA APLICACAO */

/* #BLOCO 2 ESTILO DA SPLASH SCREEN */

#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 30;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

/* #FINAL DO BLOCO 2 ESTILO DA SPLASH SCREEN */
/* #BLOCO 2.1 SOMBRA DE DESTAQUE DO CELULAR NA SPLASH */

.phone-area {
  position: relative;
  z-index: 2;
}

.phone-area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(255, 140, 0, 0.18) 0%,
    rgba(255, 140, 0, 0.08) 35%,
    transparent 70%
  );
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}

/* #FINAL DO BLOCO 2.1 SOMBRA DE DESTAQUE DO CELULAR NA SPLASH */

/* #BLOCO 3 AREA 3D DO CELULAR */

.phone-area {
  perspective: 1800px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  width: 230px;
  height: 470px;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(0deg) scale(0.92);
  transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* #FINAL DO BLOCO 3 AREA 3D DO CELULAR */

/* #BLOCO 4 FACE BASE DO CELULAR */

.phone-face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  overflow: visible;
  box-shadow: 0 26px 40px rgba(0, 0, 0, 0.28), 0 8px 18px rgba(0, 0, 0, 0.18);
}

/* #FINAL DO BLOCO 4 FACE BASE DO CELULAR */

/* #BLOCO 5 PARTE TRASEIRA REALISTA DO CELULAR */

.phone-back {
  transform: rotateY(0deg);
  background: linear-gradient(
    145deg,
    #ffb24d 0%,
    #ff8b1c 38%,
    #ff6900 68%,
    #ff9f3b 100%
  );
}

.back-shell {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  background: radial-gradient(
      circle at 72% 14%,
      rgba(255, 229, 163, 0.55),
      transparent 24%
    ),
    linear-gradient(145deg, #ffb24d 0%, #ff8b1c 38%, #ff6900 68%, #ff9f3b 100%);
}

.phone-frame-highlight {
  position: absolute;
  inset: 0;
  border-radius: 34px;
  box-shadow: inset 0 0 0 2px rgba(255, 214, 138, 0.92),
    inset 0 0 0 5px rgba(109, 49, 0, 0.22),
    inset 10px 0 18px rgba(255, 241, 199, 0.16),
    inset -10px 0 18px rgba(130, 55, 0, 0.14);
  pointer-events: none;
}

.camera-module {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: linear-gradient(
    145deg,
    rgba(255, 191, 76, 0.96),
    rgba(224, 109, 0, 0.92)
  );
  box-shadow: inset 0 2px 6px rgba(255, 230, 176, 0.45),
    0 10px 18px rgba(0, 0, 0, 0.18);
}

.camera-lens {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 35%,
    #1b58b8 0%,
    #0a1830 30%,
    #030507 68%,
    #000 100%
  );
  border: 3px solid rgba(53, 28, 0, 0.72);
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.16),
    0 4px 8px rgba(0, 0, 0, 0.26);
}

.camera-lens-1 {
  top: 10px;
  left: 10px;
}

.camera-lens-2 {
  top: 10px;
  right: 10px;
}

.camera-lens-3 {
  bottom: 10px;
  left: 10px;
}

.lens-glass {
  position: absolute;
  top: 6px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(96, 171, 255, 0.95);
}

.camera-flash {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8d4 0%, #ffe08a 60%, #efb947 100%);
  box-shadow: 0 0 12px rgba(255, 233, 171, 0.72);
}

.camera-sensor {
  position: absolute;
  bottom: 14px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #171717 0%, #050505 100%);
  border: 2px solid rgba(60, 34, 4, 0.65);
}

.camera-mic {
  position: absolute;
  bottom: 36px;
  right: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #241201;
}

.apple-logo-shape {
  position: absolute;
  width: 48px;
  height: 58px;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    145deg,
    rgba(155, 70, 0, 0.95),
    rgba(255, 199, 112, 0.72)
  );
  clip-path: polygon(
    50% 0%,
    63% 4%,
    73% 14%,
    80% 28%,
    79% 43%,
    71% 58%,
    82% 71%,
    72% 92%,
    54% 100%,
    36% 95%,
    19% 81%,
    12% 62%,
    14% 39%,
    25% 18%,
    40% 6%
  );
  opacity: 0.82;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.18));
}

.apple-logo-shape::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 8px;
  width: 15px;
  height: 15px;
  background: linear-gradient(
    145deg,
    rgba(255, 193, 116, 0.96),
    rgba(165, 75, 0, 0.82)
  );
  border-radius: 0 100% 0 100%;
  transform: rotate(32deg);
}

.back-light-reflection {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 26%
    ),
    linear-gradient(300deg, rgba(255, 255, 255, 0.06) 0%, transparent 22%);
  pointer-events: none;
}

/* #FINAL DO BLOCO 5 PARTE TRASEIRA REALISTA DO CELULAR */

/* #BLOCO 6 PARTE FRONTAL REALISTA DO CELULAR */

.phone-front {
  transform: rotateY(180deg);
  background: linear-gradient(145deg, #050507 0%, #0b0b10 45%, #020203 100%);
  padding: 7px;
  overflow: visible;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  border-radius: 34px;
}

/* #FINAL DO BLOCO 6 PARTE FRONTAL REALISTA DO CELULAR */

/* #BLOCO 7 TELA DO CELULAR */

.screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
    circle at top,
    #3c434f 0%,
    #1a1e27 35%,
    #090b10 100%
  );
  opacity: 0.25;
  filter: brightness(0.25);
  transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease,
    box-shadow 0.8s ease, background 0.8s ease;
  overflow: visible;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 20px 50px rgba(255, 255, 255, 0.02),
    inset 0 -12px 25px rgba(0, 0, 0, 0.35);
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

/* #FINAL DO BLOCO 7 TELA DO CELULAR */

/* #BLOCO 7.1 BORDA INTERNA DA TELA DO CELULAR */

.screen-bezel {
  position: absolute;
  inset: 0;
  border-radius: 28px;

  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.03),
    inset 0 0 0 5px rgba(0, 0, 0, 0.22);

  z-index: 2;
  pointer-events: none;
}

/* #FINAL DO BLOCO 7.1 BORDA INTERNA DA TELA DO CELULAR */

/* #BLOCO 7.2 ALTO-FALANTE SUPERIOR DO APARELHO */

.top-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);

  width: 52px;
  height: 6px;

  border-radius: 999px;

  background: linear-gradient(180deg, #1e1e22, #050505);

  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06),
    0 1px 2px rgba(0, 0, 0, 0.35);

  z-index: 8;
}

/* #FINAL DO BLOCO 7.2 ALTO-FALANTE SUPERIOR DO APARELHO */

/* #BLOCO 7.3 CAMERA FRONTAL DO APARELHO */

.front-camera {
  position: absolute;

  top: 11px;
  right: 78px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: radial-gradient(
    circle at 35% 35%,
    #2f7cff 0%,
    #0a1326 35%,
    #020202 100%
  );

  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 0 4px rgba(0, 0, 0, 0.5);

  z-index: 8;
}

/* #FINAL DO BLOCO 7.3 CAMERA FRONTAL DO APARELHO */

/* #BLOCO 7.4 DYNAMIC ISLAND DO APARELHO */

.dynamic-island {
  position: absolute;

  top: 10px;
  left: 50%;
  transform: translateX(-50%);

  width: 92px;
  height: 22px;

  border-radius: 999px;

  background: linear-gradient(180deg, #050505, #000000);

  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05),
    0 2px 4px rgba(0, 0, 0, 0.34);

  z-index: 7;
}

/* #FINAL DO BLOCO 7.4 DYNAMIC ISLAND DO APARELHO */

/* #BLOCO 7.5 BRILHO DA TELA AO LIGAR */

.screen-glow {
  position: absolute;
  inset: 0;

  border-radius: 28px;

  background: radial-gradient(
      circle at center,
      rgba(255, 174, 67, 0.12) 0%,
      transparent 45%
    ),
    radial-gradient(
      circle at 50% 35%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 26%
    );

  opacity: 0.35;

  z-index: 3;
  pointer-events: none;

  transition: opacity 0.8s ease;
}

/* #FINAL DO BLOCO 7.5 BRILHO DA TELA AO LIGAR */

/* #BLOCO 7.6 REFLEXO DE VIDRO DA TELA */

.front-glass-reflection {
  position: absolute;
  inset: 0;

  border-radius: 28px;

  background: linear-gradient(
      125deg,
      rgba(255, 255, 255, 0.16) 0%,
      transparent 22%
    ),
    linear-gradient(300deg, rgba(255, 255, 255, 0.04) 0%, transparent 18%);

  z-index: 4;
  pointer-events: none;
}

/* #FINAL DO BLOCO 7.6 REFLEXO DE VIDRO DA TELA */
/* #BLOCO 7.7 BARRA SUPERIOR DE STATUS DO IPHONE */

.top-status-bar {
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 8;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.status-time {
  font-size: 13px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.signal-bars,
.wifi-icon,
.battery-icon {
  display: inline-block;
  position: relative;
}

.signal-bars {
  width: 14px;
  height: 10px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.55) 0 20%,
    rgba(255, 255, 255, 0.72) 20% 40%,
    rgba(255, 255, 255, 0.85) 40% 60%,
    rgba(255, 255, 255, 1) 60% 100%
  );
  clip-path: polygon(
    0% 100%,
    0% 70%,
    25% 70%,
    25% 45%,
    50% 45%,
    50% 25%,
    75% 25%,
    75% 0%,
    100% 0%,
    100% 100%
  );
}

.wifi-icon {
  width: 14px;
  height: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
}

.battery-icon {
  width: 20px;
  height: 10px;
  border: 1.8px solid rgba(255, 255, 255, 0.95);
  border-radius: 3px;
}

.battery-icon::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 2px;
  width: 2px;
  height: 4px;
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.95);
}

/* #FINAL DO BLOCO 7.7 BARRA SUPERIOR DE STATUS DO IPHONE */
/* #BLOCO 7.8 HOME SCREEN DO IPHONE */

.iphone-home {
  position: absolute;
  inset: 48px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 10px;
  padding-top: 16px;
}

.app-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.app-icon::before {
  content: '';
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: block;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.22);
}

.app-icon span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1;
  text-align: center;
}

.app-blue::before {
  background: linear-gradient(180deg, #4f89ff, #245dff);
}
.app-green::before {
  background: linear-gradient(180deg, #50d36f, #1aa547);
}
.app-yellow::before {
  background: linear-gradient(180deg, #ffd85b, #ffb300);
}
.app-purple::before {
  background: linear-gradient(180deg, #bf7cff, #7d31ff);
}
.app-gray::before {
  background: linear-gradient(180deg, #9ea6b5, #697385);
}
.app-cyan::before {
  background: linear-gradient(180deg, #61d4ff, #1998d8);
}
.app-pink::before {
  background: linear-gradient(180deg, #ff8fc3, #ff4a9d);
}
.app-dark::before {
  background: linear-gradient(180deg, #3a3f4a, #161921);
}
.app-orange::before {
  background: linear-gradient(180deg, #ffb35d, #ff6f00);
}
.app-red::before {
  background: linear-gradient(180deg, #ff7b7b, #df2d2d);
}
.app-lime::before {
  background: linear-gradient(180deg, #98ec76, #57b640);
}

/* #FINAL DO BLOCO 7.8 HOME SCREEN DO IPHONE */
/* #BLOCO 7.9 ICONE DO APP VISTOFACIL NA HOME */

.app-vf {
  position: relative;
}

.app-vf::before {
  display: none;
}

.app-vf img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.18),
    0 4px 10px rgba(0, 0, 0, 0.22);
}

/* #FINAL DO BLOCO 7.9 ICONE DO APP VISTOFACIL NA HOME */
/* #BLOCO 7.10 DOCK INFERIOR DO IPHONE */

.iphone-dock {
  margin: 0 6px 4px 6px;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16),
    0 6px 16px rgba(0, 0, 0, 0.18);
}

.dock-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.16),
    0 4px 10px rgba(0, 0, 0, 0.2);
}

.app-vf-dock {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.app-vf-dock img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
}

/* #FINAL DO BLOCO 7.10 DOCK INFERIOR DO IPHONE */

/* #FINAL DO BLOCO 7 TELA DO CELULAR */

/* #BLOCO 8 CAMADA DE EXPANSAO DO EMBLEMA VF */

.vf-expansion-layer {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 99999;
  pointer-events: none;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

/* #FINAL DO BLOCO 8 CAMADA DE EXPANSAO DO EMBLEMA VF */

/* #BLOCO 9 EMBLEMA VF NA TELA E SAINDO DO CELULAR */

.vf-logo {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.25);
  transform-origin: center center;
  transition: opacity 0.35s ease, transform 1.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  will-change: transform, opacity, filter, top, left;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  z-index: 100000;
}

.vf-logo img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 16px rgba(255, 140, 0, 0.25));
}

/* #FINAL DO BLOCO 9 EMBLEMA VF NA TELA E SAINDO DO CELULAR */

/* #BLOCO 10 HERO DO SITE */

.hero-content {
  max-width: 800px;
}

/* #FINAL DO BLOCO 10 HERO DO SITE */

/* #BLOCO 11 TITULO PRINCIPAL */

.hero h1 {
  font-size: 52px;
  margin-bottom: 20px;
}

/* #FINAL DO BLOCO 11 TITULO PRINCIPAL */

/* #BLOCO 12 TEXTO PRINCIPAL */

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* #FINAL DO BLOCO 12 TEXTO PRINCIPAL */

/* #BLOCO 13 AREA DOS BOTÕES */

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* #FINAL DO BLOCO 13 AREA DOS BOTÕES */

/* #BLOCO 14 BOTÃO PRINCIPAL */

.btn-primary {
  background: white;
  color: #d95e18;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
}

/* #FINAL DO BLOCO 14 BOTÃO PRINCIPAL */

/* #BLOCO 15 BOTÃO SECUNDARIO */

.btn-secondary {
  background: transparent;
  border: 1px solid white;
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  cursor: pointer;
}

/* #FINAL DO BLOCO 15 BOTÃO SECUNDARIO */
/* #BLOCO 16 FUNDO E ESTRUTURA DA HOME PRINCIPAL */

#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  opacity: 1;
  transform: none;
  position: relative;
  z-index: 10;
}

.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 20px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* #FINAL DO BLOCO 16 FUNDO E ESTRUTURA DA HOME PRINCIPAL */
/* #BLOCO 17 ESTADO VISUAL INICIAL DA HOME PRINCIPAL */

.hero {
  width: 100%;
  padding: 40px 24px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 12;
}

/* #FINAL DO BLOCO 17 ESTADO VISUAL INICIAL DA HOME PRINCIPAL */
/* #BLOCO 18 TOPO COM EMBLEMA E NOME DA MARCA */

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.hero-brand-text {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

/* #FINAL DO BLOCO 18 TOPO COM EMBLEMA E NOME DA MARCA */
/* #BLOCO 18 TOPO COM EMBLEMA E NOME DA MARCA */

.hero-brand {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
}

.hero-brand-text {
  font-size: 30px;
  font-weight: 700;
  color: #ffffff;
}

/* #FINAL DO BLOCO 18 TOPO COM EMBLEMA E NOME DA MARCA */
/* #BLOCO 19 TITULO E SUBTITULO DA HOME */

.hero-title {
  max-width: 980px;
  margin: 0 auto 18px auto;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
  max-width: 820px;
  margin: 0 auto 34px auto;
  font-size: clamp(16px, 2vw, 27px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

/* #FINAL DO BLOCO 19 TITULO E SUBTITULO DA HOME */
/* #BLOCO 20 CABECALHO DO CONTADOR */

.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.countdown-line {
  width: 110px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
}

.countdown-label {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #ffffff;
}

/* #FINAL DO BLOCO 20 CABECALHO DO CONTADOR */
/* #BLOCO 21 CONTADOR REGRESSIVO COM EFEITO FLIP */

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 34px auto;
}

.countdown-card {
  position: relative;
  background: linear-gradient(180deg, #143d79 0%, #0b2c59 100%);
  border-radius: 18px;
  padding: 18px 12px 16px 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
  z-index: 1;
}

.countdown-number {
  position: relative;
  display: block;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  perspective: 800px;
  min-height: 1em;
  z-index: 2;
}

.countdown-number-inner {
  display: inline-block;
  min-width: 2ch;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.countdown-number.flip-animate .countdown-number-inner {
  animation: flipNumberVistoFacil 0.55s ease;
}

.countdown-text {
  position: relative;
  display: block;
  font-size: clamp(15px, 1.5vw, 25px);
  font-weight: 700;
  color: #ffffff;
  z-index: 2;
}

@keyframes flipNumberVistoFacil {
  0% {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
  }
  35% {
    transform: rotateX(-90deg) scale(0.96);
    opacity: 0.65;
  }
  65% {
    transform: rotateX(90deg) scale(0.96);
    opacity: 0.65;
  }
  100% {
    transform: rotateX(0deg) scale(1);
    opacity: 1;
  }
}

/* #FINAL DO BLOCO 21 CONTADOR REGRESSIVO COM EFEITO FLIP */
/* #BLOCO 22 BOTAO PRINCIPAL DO LANCAMENTO */

.hero-cta {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 34px auto;
}

.launch-button {
  width: 100%;
  min-width: 0;
  border: none;
  border-radius: 14px;
  padding: 22px 24px;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 800;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(180deg, #1e74ee 0%, #1555c6 100%);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.launch-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.18);
}

/* #FINAL DO BLOCO 22 BOTAO PRINCIPAL DO LANCAMENTO */
/* #BLOCO 23 LISTA DE BENEFICIOS DA HOME */

.hero-benefits {
  list-style: none;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.hero-benefits li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: clamp(16px, 1.7vw, 22px);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

/* #FINAL DO BLOCO 23 LISTA DE BENEFICIOS DA HOME */
/* #BLOCO 23 LISTA DE BENEFICIOS DA HOME */

.hero-benefits {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.hero-benefits li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: -2px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
  color: #ffffff;
}

/* #FINAL DO BLOCO 23 LISTA DE BENEFICIOS DA HOME */
/* #BLOCO 24 RESPONSIVIDADE DA HOME DE LANCAMENTO */

@media (min-width: 1400px) {
  .hero-content {
    max-width: 1100px;
  }

  .countdown-grid {
    max-width: 820px;
  }

  .hero-cta {
    max-width: 820px;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 32px 18px;
  }

  .countdown-grid {
    max-width: 700px;
    gap: 14px;
  }

  .hero-benefits {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 30px 16px;
  }

  .hero-brand {
    margin-bottom: 26px;
  }

  .hero-brand-logo {
    width: 46px;
    height: 46px;
  }

  .hero-brand-text {
    font-size: 24px;
  }

  .hero-subtitle {
    margin-bottom: 26px;
  }

  .countdown-header {
    gap: 12px;
    margin-bottom: 18px;
  }

  .countdown-line {
    width: 52px;
  }

  .countdown-label {
    font-size: 14px;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 420px;
    gap: 14px;
  }

  .hero-cta {
    max-width: 420px;
  }

  .hero-benefits {
    max-width: 420px;
  }

  .hero-benefits li {
    padding-left: 34px;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 24px 14px;
  }

  .hero-brand {
    gap: 10px;
    margin-bottom: 22px;
  }

  .hero-brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero-brand-text {
    font-size: 20px;
  }

  .countdown-grid {
    max-width: 100%;
    gap: 12px;
  }

  .countdown-card {
    padding: 18px 8px 14px 8px;
  }

  .hero-cta,
  .hero-benefits {
    max-width: 100%;
  }

  .launch-button {
    padding: 18px 16px;
  }

  .hero-benefits li {
    font-size: 16px;
  }
}

/* #FINAL DO BLOCO 24 RESPONSIVIDADE DA HOME DE LANCAMENTO */

/* #BLOCO NOVO 40 – ESTILOS BASE DAS SEÇÕES VISTOFACIL (vf-section e container) */

.vf-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.vf-section:first-of-type {
  padding-top: 60px; /* respiro após hero */
}

.vf-section:last-of-type {
  padding-bottom: 120px; /* espaço antes do footer */
}

.vf-container {
  width: min(1240px, 100% - 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.vf-title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

.vf-subtitle {
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px auto;
}

/* #FINAL DO BLOCO NOVO 40 */

/* #BLOCO NOVO 41 – BLOCO COMO FUNCIONA (vf-grid-steps) */

.vf-grid-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.vf-step {
  background: rgba(20, 25, 40, 0.7);
  border-radius: 16px;
  padding: 40px 28px;
  border: 1px solid rgba(255, 105, 0, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.vf-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 105, 0, 0.18), 0 12px 32px rgba(0, 0, 0, 0.3);
}

.vf-step-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(145deg, #ff8b1c, #ff6900);
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
  line-height: 64px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
  box-shadow: 0 8px 24px rgba(255, 105, 0, 0.35);
}

.vf-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.vf-step p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}

/* #FINAL DO BLOCO NOVO 41 */

/* #BLOCO NOVO 42 – SEÇÕES DARK (vf-section-dark) */

.vf-section-dark {
  background: linear-gradient(180deg, #0a0e1a 0%, #05070f 100%);
}

/* #FINAL DO BLOCO NOVO 42 */

/* #BLOCO NOVO 43 – BLOCO GANHOS (vf-earnings + simulation) */

.vf-earnings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.vf-earnings-card {
  background: rgba(20, 25, 40, 0.75);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.vf-earnings-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  text-align: center;
}

.vf-earnings-card ul {
  list-style: none;
  padding: 0;
}

.vf-earnings-card li {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.vf-earnings-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff8b1c;
  font-size: 28px;
  line-height: 1;
}

.vf-highlight {
  border: 2px solid #ff8b1c;
  background: linear-gradient(145deg, rgba(255, 105, 0, 0.08), rgba(20, 25, 40, 0.9));
  box-shadow: 0 14px 40px rgba(255, 105, 0, 0.22), inset 0 0 0 1px rgba(255, 140, 0, 0.18);
  transform: scale(1.04);
}

.vf-highlight h3 {
  color: #ffca80;
}

.vf-simulation {
  background: rgba(20, 25, 40, 0.6);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  max-width: 680px;
  margin: 0 auto;
}

.vf-simulation h3 {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.vf-simulation p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
}

.vf-simulation ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.vf-simulation li {
  font-size: 18px;
  font-weight: 600;
  color: #ffca80;
  margin-bottom: 12px;
}

/* #FINAL DO BLOCO NOVO 43 */

/* #BLOCO NOVO 44 – TIPOS DE VISTORIA (vf-grid-types) */

.vf-grid-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.vf-type {
  background: rgba(255, 105, 0, 0.08);
  border: 1px solid rgba(255, 105, 0, 0.18);
  border-radius: 12px;
  padding: 24px 20px;
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.vf-type:hover {
  background: rgba(255, 105, 0, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(255, 105, 0, 0.22);
}

/* #FINAL DO BLOCO NOVO 44 */

/* #BLOCO NOVO 45 – VANTAGENS (vf-grid-benefits) */

.vf-grid-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.vf-benefit {
  background: rgba(20, 25, 40, 0.7);
  border-radius: 16px;
  padding: 40px 28px;
  border: 1px solid rgba(255, 105, 0, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.vf-benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(255, 105, 0, 0.18);
}

.vf-benefit h3 {
  font-size: 22px;
  font-weight: 800;
  color: #ffca80;
  margin-bottom: 16px;
}

.vf-benefit p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* #FINAL DO BLOCO NOVO 45 */

/* #BLOCO NOVO 46 – CTA FINAL (vf-cta) */

.vf-cta {
  text-align: center;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, rgba(20, 25, 40, 0.4), rgba(5, 7, 15, 0.6));
}

.vf-cta h2 {
  font-size: clamp(40px, 6vw, 58px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
}

.vf-cta p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.88);
  max-width: 720px;
  margin: 0 auto 48px auto;
  line-height: 1.5;
}

/* Aproveita o .launch-button já existente – apenas ajuste de contexto se necessário */
.vf-cta .launch-button {
  max-width: 480px;
  margin: 0 auto;
}

/* #FINAL DO BLOCO NOVO 46 */

/* #BLOCO NOVO 47 – RESPONSIVIDADE DOS NOVOS BLOCOS */

@media (max-width: 1024px) {
  .vf-section {
    padding: 80px 0;
  }

  .vf-title {
    font-size: clamp(32px, 6vw, 44px);
  }

  .vf-subtitle {
    font-size: clamp(17px, 2.5vw, 21px);
    margin-bottom: 50px;
  }

  .vf-grid-steps,
  .vf-grid-benefits {
    gap: 28px;
  }

  .vf-earnings {
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .vf-section {
    padding: 60px 0;
  }

  .vf-container {
    padding: 0 16px;
  }

  .vf-title {
    font-size: clamp(28px, 7vw, 38px);
  }

  .vf-subtitle {
    margin-bottom: 40px;
  }

  .vf-step,
  .vf-benefit {
    padding: 32px 24px;
  }

  .vf-simulation {
    padding: 32px 24px;
  }

  .vf-cta {
    padding: 80px 0 60px;
  }
}

@media (max-width: 480px) {
  .vf-section {
    padding: 50px 0;
  }

  .vf-title {
    font-size: clamp(26px, 8vw, 34px);
  }

  .vf-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
  }

  .vf-grid-steps,
  .vf-grid-types,
  .vf-grid-benefits,
  .vf-earnings {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vf-step-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    font-size: 28px;
  }

  .vf-cta {
    padding: 60px 0 80px;
  }

  .vf-cta h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .vf-cta p {
    font-size: 18px;
  }
}

/* #FINAL DO BLOCO NOVO 47 */

/* #BLOCO NOVO 48 – ESTILOS DA SEÇÃO DE SELEÇÃO DE PERFIL (perfil-seletor) */

.perfil-seletor {
  background: linear-gradient(180deg, rgba(10, 15, 26, 0.6), rgba(5, 7, 15, 0.8));
  padding: 120px 0 100px;
}

.perfil-seletor .vf-title {
  margin-bottom: 16px;
}

.perfil-seletor .vf-subtitle {
  margin-bottom: 60px;
  max-width: 900px;
}

.perfil-opcoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.perfil-opcao {
  background: rgba(20, 25, 40, 0.75);
  border: 1px solid rgba(255, 105, 0, 0.12);
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.perfil-opcao:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 105, 0, 0.45);
  box-shadow: 0 24px 60px rgba(255, 105, 0, 0.25), 0 16px 40px rgba(0, 0, 0, 0.35);
}

.perfil-opcao.ativo {
  border: 2px solid #ff8b1c;
  background: linear-gradient(145deg, rgba(255, 139, 28, 0.12), rgba(20, 25, 40, 0.95));
  box-shadow: 0 20px 56px rgba(255, 105, 0, 0.35), inset 0 0 0 1px rgba(255, 140, 0, 0.2);
  transform: translateY(-8px) scale(1.015);
}

.perfil-icone {
  width: 90px;
  height: 90px;
  background: rgba(255, 105, 0, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin-bottom: 28px;
  box-shadow: inset 0 0 0 2px rgba(255, 105, 0, 0.25);
  transition: all 0.35s ease;
}

.perfil-opcao:hover .perfil-icone,
.perfil-opcao.ativo .perfil-icone {
  background: rgba(255, 105, 0, 0.35);
  transform: scale(1.15);
  box-shadow: 0 0 32px rgba(255, 105, 0, 0.4);
}

.perfil-opcao h3 {
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.perfil-opcao p {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  max-width: 280px;
  margin: 0 auto;
}

/* Destaque estratégico para vistoriador */
.perfil-opcao.destaque {
  border: 2px solid #ff8b1c;
  background: linear-gradient(145deg, rgba(255, 139, 28, 0.15), rgba(20, 25, 40, 0.9));
  box-shadow: 0 20px 56px rgba(255, 105, 0, 0.3);
  transform: scale(1.03);
}

.perfil-opcao.destaque h3 {
  color: #ffca80;
}

/* #FINAL DO BLOCO NOVO 48 – ESTILOS DA SEÇÃO DE SELEÇÃO DE PERFIL */

/* #BLOCO NOVO 49 – ESTILOS DOS CONTEÚDOS POR PERFIL */

.perfil-conteudo {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.perfil-conteudo[style*="display: none"] {
  opacity: 0;
  transform: translateY(20px);
}

.perfil-conteudo:not([style*="display: none"]) {
  opacity: 1;
  transform: translateY(0);
}

/* Placeholder para proprietário e solicitante */
.perfil-cta-temporario {
  background: rgba(20, 25, 40, 0.6);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 800px;
  margin: 40px auto 0;
}

.perfil-cta-temporario p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* #FINAL DO BLOCO NOVO 49 – ESTILOS DOS CONTEÚDOS POR PERFIL */

/* #BLOCO 30 ESTILO DO RODAPE PROFISSIONAL DA VISTOFACIL */

.site-footer {
  position: relative;
  background: linear-gradient(
    180deg,
    rgba(7, 12, 22, 0.96),
    rgba(4, 8, 16, 0.98)
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #e5e7eb;
  padding-top: 56px;
  margin-top: 0;
}

.site-footer__container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 34px;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.site-footer__subtitle {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(203, 213, 225, 0.9);
  margin: 0;
  max-width: 320px;
}

.site-footer__heading {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: 0.2px;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__list li {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(203, 213, 225, 0.92);
  margin-bottom: 6px;
}

.site-footer__list li strong {
  color: #ffffff;
  font-weight: 700;
}

.site-footer__list--links a {
  color: rgba(203, 213, 225, 0.92);
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.site-footer__list--links a:hover {
  color: #f59e0b;
}

.site-footer__bottom {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(148, 163, 184, 0.95);
  line-height: 1.6;
}

/* #FINAL DO BLOCO 30 ESTILO DO RODAPE PROFISSIONAL DA VISTOFACIL */

/* #BLOCO 31 RESPONSIVIDADE DO RODAPE */

@media (max-width: 980px) {
  .site-footer__container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding-top: 40px;
  }

  .site-footer__container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__title {
    font-size: 22px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* #FINAL DO BLOCO 31 RESPONSIVIDADE DO RODAPE */

/* #BLOCO 32 EXIBICAO CONTROLADA DO RODAPE */

.site-footer {
  display: block;
  width: 100%;
}

#home {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
}

/* #FINAL DO BLOCO 32 EXIBICAO CONTROLADA DO RODAPE */

/* #BLOCO 33 AJUSTES GERAIS DE RESPONSIVIDADE */

html,
body {
  width: 100%;
  overflow-x: hidden;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .hero {
    min-height: 100vh;
    padding: 24px 14px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 12px;
  }

  .countdown-card {
    min-width: 0;
  }

  .launch-button {
    width: 100%;
    min-height: 52px;
  }

  .site-footer__container {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 24px;
  }

  .site-footer__bottom {
    width: calc(100% - 24px);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 0 20px;
  }
}

/* #FINAL DO BLOCO 33 AJUSTES GERAIS DE RESPONSIVIDADE */

/* #BLOCO NOVO 50 – RESPONSIVIDADE ESPECÍFICA DA SELEÇÃO DE PERFIL */

@media (max-width: 1024px) {
  .perfil-seletor {
    padding: 80px 0 60px;
  }

  .perfil-opcoes-grid {
    gap: 28px;
  }

  .perfil-opcao {
    padding: 40px 28px;
    min-height: 320px;
  }

  .perfil-icone {
    width: 80px;
    height: 80px;
    font-size: 42px;
  }

  .perfil-opcao h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .perfil-seletor {
    padding: 60px 0 40px;
  }

  .perfil-opcoes-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .perfil-opcao {
    padding: 48px 32px;
  }
}

@media (max-width: 480px) {
  .perfil-seletor {
    padding: 50px 0 30px;
  }

  .perfil-opcao {
    padding: 40px 24px;
    min-height: auto;
  }

  .perfil-icone {
    width: 70px;
    height: 70px;
    font-size: 38px;
    margin-bottom: 24px;
  }

  .perfil-opcao h3 {
    font-size: 24px;
  }

  .perfil-opcao p {
    font-size: 16px;
  }
}

/* #FINAL DO BLOCO NOVO 50 – RESPONSIVIDADE ESPECÍFICA DA SELEÇÃO DE PERFIL */

/* ============================================================
   #BLOCO 60 – SECAO DIFERENCIAIS COMPETITIVOS
   ============================================================ */

.vf-section-diferenciais {
  background: rgba(0, 0, 0, 0.35);
}

.vf-grid-diferenciais {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.vf-diferencial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 124, 47, 0.2);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vf-diferencial:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 124, 47, 0.6);
}

.vf-diferencial-icone {
  font-size: 40px;
  margin-bottom: 16px;
}

.vf-diferencial h3 {
  font-size: 18px;
  color: #f57c2f;
  margin-bottom: 10px;
}

.vf-diferencial p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .vf-grid-diferenciais {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .vf-grid-diferenciais {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* #FINAL BLOCO 60 – DIFERENCIAIS */

/* ============================================================
   #BLOCO 61 – SECAO TRATAMENTO DE OBJECOES
   ============================================================ */

.vf-grid-objecoes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.vf-objecao {
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid #f57c2f;
  border-radius: 0 12px 12px 0;
  padding: 28px 24px;
}

.vf-objecao h3 {
  font-size: 17px;
  color: #fff;
  margin-bottom: 12px;
}

.vf-objecao p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vf-grid-objecoes {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* #FINAL BLOCO 61 – OBJECOES */

/* ============================================================
   #BLOCO 62 – SECAO PROVA SOCIAL / DEPOIMENTOS
   ============================================================ */

.vf-section-depoimentos {
  background: rgba(0, 0, 0, 0.3);
}

.vf-grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.vf-depoimento {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vf-depoimento-texto {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.vf-depoimento-autor {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vf-depoimento-autor strong {
  font-size: 15px;
  color: #f57c2f;
}

.vf-depoimento-autor span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .vf-grid-depoimentos {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .vf-grid-depoimentos {
    grid-template-columns: 1fr;
  }
}

/* #FINAL BLOCO 62 – DEPOIMENTOS */

/* ============================================================
   #BLOCO 63 – SECAO DE URGENCIA / VAGAS LIMITADAS
   ============================================================ */

.vf-section-urgencia {
  text-align: center;
}

.vf-urgencia-container {
  max-width: 680px;
  margin: 0 auto;
}

.vf-urgencia-badge {
  display: inline-block;
  background: #f57c2f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.vf-urgencia-contador {
  margin: 32px auto;
}

.vf-urgencia-numero {
  font-size: 72px;
  font-weight: 800;
  color: #f57c2f;
  line-height: 1;
}

.vf-urgencia-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.vf-urgencia-texto {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.vf-urgencia-beneficios {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 28px;
}

.vf-urgencia-beneficios li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
}

.vf-urgencia-beneficios li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f57c2f;
  font-weight: 700;
}

.vf-urgencia-aviso {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin-bottom: 28px;
}

.vf-urgencia-btn {
  font-size: 18px;
  padding: 16px 40px;
  animation: pulseUrgencia 2s infinite;
}

@keyframes pulseUrgencia {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 124, 47, 0.5); }
  50% { box-shadow: 0 0 20px 8px rgba(245, 124, 47, 0.25); }
}

@media (max-width: 768px) {
  .vf-urgencia-numero {
    font-size: 56px;
  }

  .vf-urgencia-btn {
    font-size: 16px;
    padding: 14px 28px;
  }
}

/* #FINAL BLOCO 63 – URGENCIA */

/* #BLOCO 64 – HERO BADGE E SOCIAL PROOF (LANCAMENTO) */

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F96A2B, #ff8f5a);
  color: #fff;
  font-size: clamp(11px, 2vw, 14px);
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: badgePulse 2s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(249, 106, 43, 0.4); }
  50% { box-shadow: 0 0 20px 6px rgba(249, 106, 43, 0.15); }
}

.hero-social-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin: 20px 0 10px;
}

.hero-social-proof span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-left: 16px;
}

.hero-social-proof span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #F96A2B;
  font-weight: bold;
}

.hero-cta-apoio {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
}

.vf-cta-apoio {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  font-style: italic;
}

@media (max-width: 480px) {
  .hero-social-proof {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
}

/* #FINAL BLOCO 64 – HERO BADGE E SOCIAL PROOF */

/* #BLOCO 65 – CARDS DE PROMOCAO IMOBILIARIAS */

.vf-section-promocoes {
  background: linear-gradient(180deg, #fff5f0 0%, #fff 100%);
}

.vf-grid-promocoes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vf-promo-card {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.vf-promo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.vf-promo-destaque {
  border-color: #F96A2B;
  box-shadow: 0 8px 24px rgba(249, 106, 43, 0.15);
  transform: scale(1.03);
}

.vf-promo-destaque:hover {
  transform: scale(1.03) translateY(-4px);
}

.vf-promo-tag {
  display: inline-block;
  background: #F96A2B;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.vf-promo-card h3 {
  font-size: 20px;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.vf-promo-preco {
  margin-bottom: 20px;
}

.vf-promo-valor {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #F96A2B;
  line-height: 1.1;
}

.vf-promo-detalhe {
  display: block;
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

.vf-promo-card ul {
  list-style: none;
  text-align: left;
  margin: 0 0 20px;
  padding: 0;
}

.vf-promo-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f4f4f4;
  position: relative;
  padding-left: 22px;
}

.vf-promo-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #F96A2B;
  font-weight: bold;
}

.vf-promo-card ul li:last-child {
  border-bottom: none;
}

.vf-promo-limite {
  font-size: 12px;
  color: #e74c3c;
  font-weight: 600;
  margin-bottom: 16px;
}

.vf-promo-card .launch-button {
  width: 100%;
  font-size: 14px;
  padding: 12px 20px;
}

@media (max-width: 768px) {
  .vf-grid-promocoes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vf-promo-destaque {
    transform: scale(1);
    order: -1;
  }

  .vf-promo-destaque:hover {
    transform: translateY(-4px);
  }
}

/* #FINAL BLOCO 65 – CARDS DE PROMOCAO */