/* style.css — Componentes & Layout · Quality Soluções ====================== */
/* ============= Nelvox_Tecnologia · Douglas & Vagner ======================= */

/* COMPONENTES GLOBAIS ====================================================== */

/* ── Botões ── ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--clr-orange);
  color: var(--clr-text-white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--clr-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(238, 127, 37, 0.55);
}

.btn-whatsapp {
  background: var(--clr-green-wa);
  color: var(--clr-text-white);
  box-shadow: var(--shadow-wa);
}

.btn-whatsapp:hover {
  background: var(--clr-green-wa-hv);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp svg {
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  color: var(--clr-text-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--clr-text-white);
  border-color: var(--clr-text-white);
}

.btn-outline-white:hover {
  background: var(--clr-text-white);
  color: var(--clr-orange);
}

/* ── Tag Label (ex: "POR QUE NOS ESCOLHER") ── ============================= */
.tag-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ── Section Title ── ====================================================== */
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: var(--sp-lg);
}

/* ── Badge Fixando (compacto — hero) ── ==================================== */
.badge-fixando-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  border: 1.5px solid var(--clr-gold);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
}

.badge-fixando-sm .stars {
  color: var(--clr-gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
}

/* ── WhatsApp Flutuante ── ================================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--clr-green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  box-shadow: var(--shadow-wa);
  transition: transform var(--t-normal);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

@keyframes wa-pulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 40px rgba(37, 211, 102, 0.8);
  }
}

.wa-float {
  animation: wa-pulse 2.5s ease-in-out infinite;
}

/* HEADER =================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--clr-navy);
  z-index: 8000;
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--t-normal);
}

.header.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* LOGO (header_logo.css) =================================================== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/*
.logo:hover {
  opacity: 0.5;
  transition: opacity 0.6s ease;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(253, 168, 10, 0.685);
  background: rgba(253, 168, 10, 0.685);
  border-radius: 15%;
}
*/

/* Container do ícone (box azul que aparece na imagem) ====================== */
.logo__icon {
  width: 129px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  /*
Estilo atualizado para um visual mais moderno!
background: linear-gradient(135deg, rgb(2, 44, 255), rgb(96, 1, 160), rgb(2, 44, 255));
border-radius: var(--r-md, 12px);
border: 2px solid rgba(255,255,255,0.1);
box-shadow: var(--shadow-wa);
overflow: hidden;
*/
}

/* Estilo da imagem logo ==================================================== */
.logo__image {
  width: 117px;
  height: 50px;
  object-fit: contain;

  /*  Sombra para profundidade
border-radius: var(--r-md, 2px);
filter: drop-shadow(0 4px 10px rgb(24, 1, 68));
*/
}

/* Texto do Logo ============================================================ */
.logo__text {
  display: flex;
  flex-direction: column;
}

.logo__name {
  font-family: var(--ff-base, "Arial", sans-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--clr-text-white, #ffffff);
  line-height: 1.2;
}

/* Nav ====================================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}

.nav__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--t-fast);
  position: relative;
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transition: transform var(--t-normal);
}

.nav__link:hover,
.nav__link.active {
  color: var(--clr-text-white);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Hamburguer =============================================================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text-white);
  border-radius: 2px;
  transition: all var(--t-normal);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu ============================================================== */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--clr-navy);
  padding: var(--sp-lg) var(--container-pad);
  border-bottom: 1px solid var(--clr-border);
  flex-direction: column;
  gap: var(--sp-sm);
  z-index: 7999;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile .nav__link {
  font-size: var(--fs-base);
  padding: var(--sp-xs) 0;
  border-bottom: 1px solid var(--clr-border);
}

.nav__mobile .btn {
  margin-top: var(--sp-sm);
  align-self: flex-start;
}

/* HERO ===================================================================== */
.hero {
  background-color: var(--clr-dark);

  min-height: 100vh;
  display: flex;
  align-items: center;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.hero__inner {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: var(--sp-md);
  align-items: start;
  margin-top: 100px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 580px;
  justify-self: end;
}

.hero__h1 {
  font-size: 65px;
}

.hero__sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  max-width: 480px;
  margin-top: 20px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: nowrap;
  margin-top: 65px;
}

.hero__trust {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-top: 10px;
}

.hero__trust--under-image {
  width: 100%;
  margin-top: var(--sp-sm);
  justify-content: center;
  gap: var(--sp-lg);
}

.hero__trust--under-image .hero__trust-item {
  flex: 0 1 auto;
  justify-content: center;
  text-align: center;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.hero__trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
}

.hero__sub--under-image {
  text-align: center;
  width: 100%;
  max-width: 100%;
}

/* Foto do profissional ===================================================== */
.hero__image {
  background: var(--clr-dark-card);
  border-radius: var(--r-xl);
  border: 1px solid var(--clr-border);
  aspect-ratio: 3/2;
  width: 92%;
  max-width: 580px;
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(10, 21, 49, 0.08) 0%,
    rgba(10, 21, 49, 0.16) 55%,
    rgba(10, 21, 49, 0.32) 100%
  );
  pointer-events: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 26%;
  transition: transform var(--t-normal);
}

.hero__image:hover img {
  transform: scale(1.02);
}

.hero__image-placeholder {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--clr-text-muted);
  font-size: var(--fs-sm);
}

.hero__image--placeholder .hero__image-placeholder {
  display: flex;
}

.hero__image--placeholder img {
  display: none;
}

/* SERVIÇOS / DIFERENCIAIS ================================================== */
.servicos {
  width: 100%;
  background: var(--clr-dark);
  margin-top: 55px;
  margin-bottom: 55px;
  /*
  padding-bottom: var(--sp-section);
  */
}

.diferenciais--services {
  background: var(--clr-dark-card);
}

.diferenciais__header {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  padding-top: 0;
}

.diferenciais__header--center {
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 10px;
  font-size: 43px;
}

.tag-label {
  margin-top: 30px;
  margin-bottom: 30px;
}

.diferenciais__intro {
  font-size: 15px;
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto var(--sp-lg);
  text-align: center;
  margin-bottom: 10px;
}

.diferenciais__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-md);
  width: 100%;
  margin-bottom: 30px;
}

.diferenciais__grid--services {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card-diferencial {
  width: 100%;
  padding: 30px;
  background: var(--clr-dark-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-lg);
  transition: all var(--t-normal);
}

.card-diferencial:hover {
  border-color: var(--clr-border-orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(238, 127, 37, 0.1);
}

.card-diferencial--service {
  text-align: center;
}

.card-diferencial--with-image {
  padding: 0;
  overflow: hidden;
  text-align: left;
}

.card-diferencial__media {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--clr-border);
}

.card-diferencial__media img {
  width: 360px;
  height: 230px;
  display: block;
  object-fit: cover;
  transition: transform var(--t-normal);
}

.card-diferencial--with-image:hover .card-diferencial__media img {
  transform: scale(1.04);
}

.card-diferencial__body {
  padding: var(--sp-lg);
  padding-top: 5px;
  padding-bottom: 5px;
}

.card-diferencial__icon {
  width: 52px;
  height: 52px;
  background: rgba(238, 127, 37, 0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
  font-size: 1.5rem;
}

.card-diferencial__icon--center {
  margin-left: auto;
  margin-right: auto;
}

.card-diferencial__title {
  font-size: 45px;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-text-white);
  text-align: center;
  margin: 0;
}

.card-diferencial__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  text-align: center;
  margin: 0;
}

/* SOBRE ==================================================================== */
.sobre {
  background: radial-gradient(
    circle at top right,
    rgba(241, 241, 241, 0.295) 0%,
    transparent 80%
  );
  display: flex;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 50px;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.sobre-container {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  gap: var(--sp-md);
  align-items: start;
  max-width: 1190px;
  padding: 0 var(--container-pad);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Card Fixado Esquerda / Altoridade ======================================== */
.sobre-inner-esquerda {
  width: 100%;
  text-align: center;
  padding: 0 0 var(--sp-xl);
  border-radius: var(--r-xl);
  background: linear-gradient(1deg, rgb(96, 1, 160), rgb(2, 44, 255));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sobre-content-esquerda {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Selo Especialista Fixando ================================================ */
.fixando-badge__circle {
  width: 200px;
  height: 180px;
  background: linear-gradient(135deg, rgb(2, 44, 255), rgb(96, 1, 160));
  border-radius: 50%;
  border: 4px solid var(--clr-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: var(--sp-xl) auto 0;
}

.fixando-badge__stars {
  color: rgb(255, 230, 0);
}

.fixando-badge__x {
  font-size: 14px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sobre-selo-texto {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-top: 80px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Card Fixado Direita / História =========================================== */
.sobre-inner-direita {
  flex: 2;
  text-align: center;
  padding-right: 10px;
  padding-left: 0px;
}

.sobre-inner-direita h2 {
  font-size: clamp(2rem, 4vw, 42px);
  line-height: 1.1;
  margin-bottom: 30px;
  font-weight: 700;
  color: var(--clr-text-white);
}

.sobre-direita h2 span {
  color: #ff7a00;
  display: block;
  margin-top: 5px;
}

/* Card logo - Reutilizando o "sobre-brand" original ======================== */
.card-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px;
  border-radius: var(--r-lg);
  margin-top: 30px;
  /* Herança da sobre-brand antiga: gradiente e borda sutil */
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.6s ease;
}

.card-logo:hover {
  transform: translateY(-7px);
  border-color: rgb(237, 127, 37);
}

.card-logo img {
  width: 130px;
  flex-shrink: 0;
}

.card-logo p {
  flex: 1;
  min-width: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin: 0;
  padding: 10px;
}

/* PROVA SOCIAL - Métricas + Desempenho ===================================== */
.prova-social {
  background: var(--clr-blue);
  padding: 0;
}

.prova-social__header {
  max-width: 760px;
  margin: 0 auto var(--sp-xl);
  text-align: center;
}

.prova-social__lead {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--fs-sm);
  line-height: 1.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.prova-social__top {
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: var(--sp-2xl);
  align-items: start;
  margin-bottom: var(--sp-2xl);
}

/* Métricas ================================================================= */
.prova-social__section {
  padding: 0 32px 35px 32px;
}

.prova-social__section-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.tag-label {
  margin-top: 35px;
}

.prova-social__section-header p {
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
  font-size: var(--fs-sm);
}

.metricas {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: var(--sp-lg) 10px;
  width: 100%;
  margin: 0;
  padding: 3px 2px 5px 3px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--r-xl);
  border: 3px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.metrica {
  text-align: center;
  padding: var(--sp-md);
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.03);
  transition:
    transform var(--t-normal),
    background var(--t-normal);
}

.metrica:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.metrica__number {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-orange);
  display: block;
  line-height: 1;
  margin-bottom: 0.55rem;
}

.metrica__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Depoimentos ============================================================== */
.depoimentos {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  width: 100%;
  gap: 15px;
  margin-top: 0;
}

.card-depoimento {
  background: rgba(255, 255, 255, 0.06);
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 5px;
  transition: background var(--t-normal);
}

.card-depoimento:hover {
  background: rgba(255, 255, 255, 0.295);
}

.card-depoimento__stars {
  color: var(--clr-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: var(--sp-sm);
}

.card-depoimento__text {
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--fs-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.card-depoimento__author {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.4);
}

/* PROCESSO ================================================================= */
.processo {
  background: var(--clr-dark);
  border-top: 1px solid var(--clr-border);
}

.processo__header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.processo__header .section-title {
  text-align: center;
}

.processo__lead {
  color: var(--clr-text-muted);
  max-width: 480px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  position: relative;
  margin-bottom: 70px;
}

/* Linha conectora entre steps ==========================>  ??????????????????*/
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--clr-orange) 0%,
    var(--clr-orange) 50%,
    var(--clr-orange) 100%
  );
  opacity: 0.3;
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step__icon {
  width: 80px;
  height: 80px;
  background: var(--clr-orange);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  font-size: 2rem;
  box-shadow: var(--shadow-orange);
}

.step__number {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.step__title {
  font-family: var(--font-title);
  font-size: var(--fs-xl);
  color: var(--clr-text-white);
  margin-bottom: var(--sp-xs);
}

.step__text {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* CTA + FORMULÁRIO ========================================================= */
.cta-form {
  background: var(--clr-orange);
  padding-top: 0px;
  padding-bottom: var(--sp-section);
}

.cta-form__inner {
  display: grid;
  grid-template-columns: 50fr 60fr;
  column-gap: 3rem;
  row-gap: 3rem;
  align-items: center;
}

.cta-form__content {
  text-align: center;
}

.cta-form__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--clr-text-white);
  margin-bottom: var(--sp-sm);
}

.cta-form__sub {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-lg);
  font-size: var(--fs-base);
  line-height: 1.7;
}

/* Form card */
.form-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--r-xl);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--sp-xl);
  margin: 20px 20px 20px 0px;
  padding-top: 10px;
  padding-right: 30px;
  padding-bottom: 10px;
  padding-left: 30px;
}

.form-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--clr-text-white);
  margin-bottom: var(--sp-lg);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-md);
  padding: 0.875rem 1.25rem;
  color: var(--clr-text-white);
  font-size: var(--fs-base);
  font-weight: 300;
  transition: border-color var(--t-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--clr-dark);
  color: var(--clr-text-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Input inválido após submit tentado ======================> ????????????????*/
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: #ff6b6b;
}

.form-group .error-msg {
  font-size: var(--fs-xs);
  color: #ffcccc;
  margin-top: 0.3rem;
  display: none;
}

.form-group.error .error-msg {
  display: block;
}

.form-honeypot {
  display: none;
}

.btn-outline-white {
  background: rgb(37, 211, 102);
  border: none;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  border-radius: var(--r-md);
  background: var(--clr-text-white);
  color: var(--clr-orange);
  font-weight: 700;
  font-size: var(--fs-base);
  cursor: pointer;
  transition: all var(--t-normal);
  border: none;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-lg);
  color: var(--clr-text-white);
}

.form-success__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-success__title {
  font-size: var(--fs-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.form-success__text {
  color: rgba(255, 255, 255, 0.7);
}

.form-success.visible {
  display: block;
}

/* FOOTER =================================================================== */
.footer {
  background: var(--clr-navy);
  padding-top: 10px;
  border-top: 2px solid var(--clr-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  margin: 5px 0;
}

.footer__brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: var(--sp-lg);
  gap: 0.4rem;
  font-size: var(--fs-sm);
}

.footer .logo__icon {
  width: 70px;
  height: 60px;
  padding: 0;
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.footer__fixando {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  color: var(--clr-gold);
}

.footer__fixando .stars {
  font-size: 0.7rem;
  letter-spacing: 2px;
}

.footer__col-title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
}

.footer__link:hover {
  color: var(--clr-text-white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.footer__contact-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer__contact-link {
  color: var(--clr-text-muted);
  transition: color var(--t-fast);
}

.footer__contact-link:hover {
  color: var(--clr-green-wa);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  border-top: 1px solid var(--clr-border);
  padding: 10px;
  gap: var(--sp-md);
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.footer__copy a {
  color: var(--clr-orange);
}

.footer__credit {
  font-size: var(--fs-xs);
  color: rgba(238, 127, 37, 0.6);
  font-style: italic;
}

/* RESPONSIVO =============================================================== */
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    max-width: 100%;
    justify-self: stretch;
  }
  .hero__image {
    aspect-ratio: 16/9;
    max-height: 400px;
    max-width: 100%;
    justify-self: stretch;
  }
  .hero__trust--under-image {
    justify-content: center;
    gap: var(--sp-lg);
  }
  .hero__trust--under-image .hero__trust-item {
    flex: 0 1 auto;
  }
  .prova-social__top {
    grid-template-columns: 1fr;
  }
  .sobre-container {
    grid-template-columns: 1fr;
  }
  .metricas {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* RESPONSIVO =============================================================== */

/* 1. Notebooks Pequenos e Tablets Paisagem (Até 1024px) */
@media (max-width: 1024px) {
  /* Adicionado 'gap' para garantir espaço quando as colunas se empilharem */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .hero__visual {
    max-width: 100%;
    justify-self: stretch;
  }

  /* Convertido max-height para rem e adicionado object-fit para a imagem não distorcer */
  .hero__image {
    aspect-ratio: 16/9;
    max-height: 25rem;
    max-width: 100%;
    justify-self: stretch;
    object-fit: cover;
  }

  /* flex-wrap garante que os itens caiam para a linha de baixo se faltar espaço */
  .hero__trust--under-image {
    justify-content: center;
    gap: var(--sp-lg);
    flex-wrap: wrap;
  }
  .hero__trust--under-image .hero__trust-item {
    flex: 0 1 auto;
  }

  /* Seletores agrupados para manter o código limpo e rápido */
  .prova-social__top,
  .sobre-container {
    grid-template-columns: 1fr;
  }

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

/* 2. Tablets Retrato e Mobile Grande (Até 768px) */
@media (max-width: 768px) {
  .nav__links,
  .nav > .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Agrupamento de todos os grids que viram coluna única no tablet/mobile */
  .diferenciais__grid,
  .depoimentos,
  .steps,
  .cta-form__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  /* Adicionado gap para que o texto não cole ao empilhar */
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
  }

  /* Adicionado gap para separar os botões ao empilhar */
  .hero__ctas {
    flex-direction: column;
    gap: var(--sp-sm);
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Pixels convertidos para rem (52px = 3.25rem) */
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .sobre {
    align-items: flex-start;
  }
  .sobre-inner-esquerda {
    padding-bottom: var(--sp-lg);
  }

  /* padding-left e padding-right unificados na propriedade moderna padding-inline */
  .prova-social__section {
    padding-inline: var(--container-pad);
  }

  /* Adicionado text-align e gap para alinhar perfeitamente o card */
  .card-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  /* Pixels convertidos para rem (100px = 6.25rem) e limite máximo adicionado */
  .card-logo img {
    width: 6.25rem;
    max-width: 100%;
  }
}

/* RESPONSIVO ===============================================================

/* 1. Notebooks Pequenos e Tablets Paisagem (Até 1024px)
@media (max-width: 1024px) {
  /* Adicionado 'gap' para garantir espaço quando as colunas se empilharem
  .hero__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
  .hero__visual {
    max-width: 100%;
    justify-self: stretch;
  }

  /* Convertido max-height para rem e adicionado object-fit para a imagem não distorcer
  .hero__image {
    aspect-ratio: 16/9;
    max-height: 25rem;
    max-width: 100%;
    justify-self: stretch;
    object-fit: cover;
  }

  /* flex-wrap garante que os itens caiam para a linha de baixo se faltar espaço
  .hero__trust--under-image {
    justify-content: center;
    gap: var(--sp-lg);
    flex-wrap: wrap;
  }
  .hero__trust--under-image .hero__trust-item {
    flex: 0 1 auto;
  }

  /* Seletores agrupados para manter o código limpo e rápido
  .prova-social__top,
  .sobre-container {
    grid-template-columns: 1fr;
  }

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

/* 2. Tablets Retrato e Mobile Grande (Até 768px)
@media (max-width: 768px) {
  .nav__links,
  .nav > .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  /* Agrupamento de todos os grids que viram coluna única no tablet/mobile
  .diferenciais__grid,
  .depoimentos,
  .steps,
  .cta-form__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

  /* Adicionado gap para que o texto não cole ao empilhar
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-sm);
  }

  /* Adicionado gap para separar os botões ao empilhar
  .hero__ctas {
    flex-direction: column;
    gap: var(--sp-sm);
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Pixels convertidos para rem (52px = 3.25rem)
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 3.25rem;
    height: 3.25rem;
  }

  .sobre {
    align-items: flex-start;
  }
  .sobre-inner-esquerda {
    padding-bottom: var(--sp-lg);
  }

  /* padding-left e padding-right unificados na propriedade moderna padding-inline
  .prova-social__section {
    padding-inline: var(--container-pad);
  }

  /* Adicionado text-align e gap para alinhar perfeitamente o card
  .card-logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  /* Pixels convertidos para rem (100px = 6.25rem) e limite máximo adicionado
  .card-logo img {
    width: 6.25rem;
    max-width: 100%;
  }
}


/* 3. Smartphones (Mobile Pequeno) (Até 480px)
@media (max-width: 480px) {
  /* Se as métricas ficarem espremidas em telas muito pequenas, considere mudar para 1fr aqui
  .metricas {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }

  /* Adicionado alinhamento central para telas muito pequenas
  .hero__trust {
    flex-direction: column;
    gap: var(--sp-xs);
    align-items: center;
    text-align: center;
  }

  /* .diferenciais__grid FOI REMOVIDO DAQUI pois já herda a coluna única do 768px automaticamente

  .sobre-container {
    padding-inline: var(--container-pad);
  }
}


/* ACESSIBILIDADE — foco visível ============================================
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
}
*/
/*-----------------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {
  .nav__links,
  .nav > .btn {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .diferenciais__grid {
    grid-template-columns: 1fr;
  }
  .depoimentos {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps::before {
    display: none;
  }
  .cta-form__inner {
    grid-template-columns: 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .wa-float {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }
  .sobre {
    align-items: flex-start;
  }
  .sobre-inner-esquerda {
    padding-bottom: var(--sp-lg);
  }
  .prova-social__section {
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
  }
  .card-logo {
    flex-direction: column;
    align-items: center;
  }
  .card-logo img {
    width: 100px;
  }
}

@media (max-width: 480px) {
  .metricas {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-sm);
  }
  .hero__trust {
    flex-direction: column;
    gap: var(--sp-xs);
  }
  .diferenciais__grid {
    grid-template-columns: 1fr;
  }
  .sobre-container {
    padding-inline: var(--container-pad);
  }
}

/* ACESSIBILIDADE — foco visível ============================================ */
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
}
