/* =========================================================
   Verus Consulting — folha de estilo única
   Toda a apresentação do site está neste arquivo.
   Cores da marca: rosa/magenta, laranja, amarelo, cinzas e branco.
   ========================================================= */

:root {
  --rosa: #d6006e;
  --rosa-claro: #e84b95;
  --rosa-suave: #fce7f1;
  --laranja: #f0803c;
  --amarelo: #f5c518;
  --gradiente: linear-gradient(90deg, #d6006e 0%, #f0803c 60%, #f5c518 100%);
  --gradiente-suave: linear-gradient(135deg, #fdf3f7 0%, #fdf7f2 100%);

  --preto: #16161a;
  --cinza-900: #23232a;
  --cinza-700: #4a4a55;
  --cinza-500: #6f6f7c;
  --cinza-300: #c9c9d1;
  --cinza-100: #ececed;
  --cinza-50: #f7f6f5;
  --branco: #ffffff;

  --sombra-sm: 0 1px 2px rgba(22, 22, 26, 0.06);
  --sombra: 0 8px 24px rgba(22, 22, 26, 0.07);
  --sombra-lg: 0 20px 50px rgba(22, 22, 26, 0.12);

  --raio: 16px;
  --raio-lg: 24px;
  --container: 1160px;
  --header-h: 76px;

  --fonte: "Poppins", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

/* ------------------------- base ------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--fonte);
  font-size: 17px;
  line-height: 1.7;
  color: var(--cinza-700);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--rosa);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  color: var(--preto);
  line-height: 1.15;
  margin: 0 0 0.6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
}

h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1.1em;
}

ul {
  margin: 0 0 1.1em;
  padding-left: 1.2em;
}

:focus-visible {
  outline: 3px solid var(--rosa);
  outline-offset: 3px;
  border-radius: 6px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--rosa);
  color: #fff;
  padding: 12px 18px;
  z-index: 200;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------- header ------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cinza-100);
  transition: box-shadow 0.25s ease;
}

.header.is-scrolled {
  box-shadow: var(--sombra-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
}

.header__logo img {
  height: 42px;
  width: auto;
}

.header__logo:hover {
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--cinza-700);
  font-size: 0.97rem;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gradiente);
  transition: width 0.25s ease;
}

.nav a:hover {
  color: var(--preto);
  text-decoration: none;
}

.nav a:hover::after {
  width: 100%;
}

.header__cta {
  display: inline-flex;
}

/* o botão dentro do menu só aparece na versão mobile */
.nav .btn {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--cinza-300);
  border-radius: 12px;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--preto);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: relative;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 4px;
}

.nav-toggle[aria-expanded="true"] span {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span::after {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
  }

  .header .header__cta {
    display: none;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--branco);
    border-bottom: 1px solid var(--cinza-100);
    box-shadow: var(--sombra);
    padding: 10px 20px 22px;
    display: none;
  }

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

  .nav a {
    padding: 13px 2px;
    border-bottom: 1px solid var(--cinza-100);
    font-size: 1.05rem;
  }

  .nav a::after {
    display: none;
  }

  .nav .btn {
    display: inline-flex;
    margin-top: 16px;
    border-bottom: none;
    justify-content: center;
  }
}

/* ------------------------- botões ------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--rosa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(214, 0, 110, 0.25);
}

.btn--primary:hover {
  background: #bb0060;
  color: #fff;
}

.btn--ghost {
  background: var(--branco);
  color: var(--preto);
  border-color: var(--cinza-300);
}

.btn--ghost:hover {
  border-color: var(--rosa);
  color: var(--rosa);
}

.btn--light {
  background: #fff;
  color: var(--rosa);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.92rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.link-seta {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-seta:hover {
  text-decoration: none;
  gap: 12px;
  transition: gap 0.2s ease;
}

/* ------------------------- seções ------------------------- */

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section--cinza {
  background: var(--cinza-50);
}

.section--suave {
  background: var(--gradiente-suave);
}

.section__head {
  max-width: 780px;
  margin-bottom: 48px;
}

.section__head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.badge {
  display: inline-block;
  background: var(--rosa-suave);
  color: var(--rosa);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.destaque {
  background: var(--gradiente);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--cinza-700);
}

.frase {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--preto);
  line-height: 1.4;
  border-left: 4px solid var(--rosa);
  padding-left: 22px;
  margin: 40px 0 0;
}

/* ------------------------- hero ------------------------- */

.hero {
  background: var(--gradiente-suave);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__media img {
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra-lg);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__media {
    order: -1;
  }
}

/* ------------------------- grades ------------------------- */

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

@media (max-width: 960px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ------------------------- cards ------------------------- */

.card {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--raio-lg);
  padding: 32px;
  box-shadow: var(--sombra-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  border-color: var(--rosa-suave);
}

.card p:last-child {
  margin-bottom: 0;
}

.card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--gradiente);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.card__sub {
  font-weight: 600;
  color: var(--cinza-1000);
  margin-bottom: 10px;
}

.card__lista {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.card__lista li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--cinza-700);
}

.card__lista li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradiente);
}

/* perguntas do problema */

.perguntas {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.perguntas li {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--raio);
  padding: 18px 22px 18px 54px;
  position: relative;
  font-weight: 500;
  color: var(--cinza-900);
  box-shadow: var(--sombra-sm);
}

.perguntas li::before {
  content: "?";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--rosa-suave);
  color: var(--rosa);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ------------------------- sobre / fundadora ------------------------- */

.fundadora {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--raio-lg);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--sombra);
  margin-top: 56px;
}

.fundadora img {
  border-radius: var(--raio-lg);
  width: 100%;
  object-fit: cover;
}

.fundadora__cargo {
  color: var(--rosa);
  font-weight: 600;
  margin-bottom: 18px;
}

@media (max-width: 800px) {
  .fundadora {
    grid-template-columns: 1fr;
  }
}

/* ------------------------- faixa de CTA ------------------------- */

.faixa {
  margin-top: 56px;
  background: var(--gradiente);
  border-radius: var(--raio-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: #fff;
  box-shadow: var(--sombra-lg);
}

.faixa p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  color: #fff;
  max-width: 640px;
}

/* ------------------------- cases ------------------------- */

.case-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.case-card__img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 100%;
  transition: transform 0.4s ease;
}

.case-card:hover .case-card__img {
  transform: scale(1.04);
}

.case-card__media {
  overflow: hidden;
}

.case-card__body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tag {
  align-self: flex-start;
  background: var(--cinza-100);
  color: var(--cinza-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.case-card h3 {
  margin: 6px 0 4px;
}

.case-card p {
  margin: 0 0 18px;
  color: var(--cinza-500);
}

.case-card .link-seta {
  margin-top: auto;
}

.aviso {
  background: #fff8e6;
  border: 1px dashed var(--amarelo);
  border-radius: var(--raio);
  padding: 16px 20px;
  color: #7a5c00;
  font-size: 0.92rem;
  margin-bottom: 32px;
}

/* ------------------------- páginas internas ------------------------- */

.page-hero {
  background: var(--gradiente-suave);
  padding: clamp(48px, 7vw, 84px) 0;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--cinza-500);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--cinza-500);
}

.artigo {
  max-width: 760px;
  margin: 0 auto;
}

.artigo img {
  border-radius: var(--raio-lg);
  box-shadow: var(--sombra);
  margin-bottom: 36px;
}

.artigo h2 {
  margin-top: 44px;
}

.artigo h3 {
  margin-top: 32px;
}

.artigo ul li {
  margin-bottom: 10px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  color: var(--cinza-500);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.destaque-box {
  background: var(--rosa-suave);
  border-radius: var(--raio-lg);
  padding: 26px 30px;
  margin: 36px 0;
}

.destaque-box p:last-child {
  margin-bottom: 0;
}

/* ------------------------- contato ------------------------- */

.contato-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.contato-card {
  background: var(--branco);
  border: 1px solid var(--cinza-100);
  border-radius: var(--raio-lg);
  padding: 26px;
  text-align: center;
  box-shadow: var(--sombra-sm);
  color: var(--cinza-700);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra);
  text-decoration: none;
}

.contato-card strong {
  display: block;
  color: var(--preto);
  margin-bottom: 4px;
}

.contato-card svg {
  width: 26px;
  height: 26px;
  color: var(--rosa);
  margin: 0 auto 12px;
}

@media (max-width: 860px) {
  .contato-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 460px) {
  .contato-grid {
    grid-template-columns: 1fr;
  }
}

/* ------------------------- footer ------------------------- */

.footer {
  background: var(--cinza-900);
  color: #c7c7d0;
  padding: 64px 0 28px;
}

.footer a {
  color: #c7c7d0;
}

.footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer__logo {
  background: #fff;
  border-radius: 12px;
  padding: 10px 14px;
  display: inline-block;
  margin-bottom: 18px;
}

.footer__logo img {
  height: 38px;
  width: auto;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

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

.footer li {
  margin-bottom: 10px;
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 44px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ------------------------- whatsapp flutuante ------------------------- */

.whats-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rosa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sombra-lg);
  z-index: 90;
  transition: transform 0.2s ease, background 0.2s ease;
}

.whats-float:hover {
  transform: scale(1.06);
  background: #bb0060;
}

.whats-float svg {
  width: 28px;
  height: 28px;
}

/* ------------------------- animações ------------------------- */

.reveal {
  opacity: 1;
  transform: none;
}

.js-on .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js-on .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .js-on .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  * {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
