/* ============================================================
   SEJA CREATE — WEBSITE STYLESHEET (v2)
   Agência de Marketing Estratégico · Natal/RN
   Direção: editorial, ousado, roxo com autoridade · "menos é mais"
   Público: profissionais liberais classe A/B sem tempo p/ redes
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Roxo — paleta aprofundada */
  --purple:        #8B2D9F;
  --purple-dark:   #5B146E;
  --purple-light:  #C16FE0;
  --purple-glow:   #B94FCC;
  --purple-bg:     #F3E9FA;
  --magenta:       #C42AA8;

  /* Plum escuro — fundos dark */
  --plum-900:  #0B0012;
  --plum-800:  #160024;
  --plum-700:  #1E0A33;

  /* Neutros */
  --black:    #0D0D0D;
  --gray-900: #1A1A1A;
  --gray-700: #4A4A4A;
  --gray-500: #888888;
  --gray-300: #C9C9C9;
  --gray-200: #E8E8E8;
  --gray-100: #F6F4F8;
  --cream:    #F7F3EE;
  --white:    #FFFFFF;

  --grad-purple: linear-gradient(135deg, #8B2D9F 0%, #B94FCC 60%, #C42AA8 100%);
  --grad-dark:   linear-gradient(160deg, #160024 0%, #0B0012 100%);

  --ff-heading: 'Montserrat', sans-serif;
  --ff-body:    'Inter', sans-serif;
  --ff-display: 'Playfair Display', Georgia, serif;

  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  --container:       1200px;
  --section-padding: 96px;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-full: 999px;

  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md:     0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg:     0 8px 48px rgba(0, 0, 0, 0.16);
  --shadow-purple: 0 12px 40px rgba(139, 45, 159, 0.32);

  --transition:      0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  font-weight: var(--fw-regular);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button {
  border: none; background: none; cursor: pointer; font-family: inherit;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== TYPOGRAPHY UTILITIES ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text--purple       { color: var(--purple); }
.text--purple-light { color: var(--purple-light); }
.text--grad {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--purple);
}

.section__overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple);
  margin-bottom: 16px;
}
.section__overline::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--purple);
  display: inline-block;
}
.section__overline--light { color: var(--purple-light); }
.section__overline--light::before { background: var(--purple-light); }
.section__overline--center {
  justify-content: center;
}

.section__title {
  font-family: var(--ff-heading);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: var(--fw-black);
  line-height: 1.06;
  color: var(--black);
  margin-bottom: 18px;
}
.section__title--center { text-align: center; }
.section__lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  max-width: 560px;
}
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: var(--fw-bold);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.btn--primary {
  background: var(--grad-purple);
  color: var(--white);
  box-shadow: var(--shadow-purple);
  background-size: 160% 160%;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(139, 45, 159, 0.45);
  background-position: 100% 100%;
}

.btn--ghost {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover { border-color: var(--purple); color: var(--purple); transform: translateY(-2px); }

.btn--outline {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
}
.btn--outline:hover { background: var(--purple); color: var(--white); transform: translateY(-2px); }

.btn--light {
  background: var(--white);
  color: var(--purple-dark);
}
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }

.btn--outline-nav {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 11px 22px;
  font-size: 13px;
}
.btn--outline-nav:hover { background: var(--purple); color: var(--white); }

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
}
.btn--whatsapp:hover {
  background: #1EBB59;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}

.btn--lg { padding: 18px 40px; font-size: 16px; gap: 12px; }

/* ===== SECTION CTA ===== */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.section-cta--left { justify-content: flex-start; margin-top: 36px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal--right { opacity: 0; transform: translateX(44px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal--left { opacity: 0; transform: translateX(-44px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.reveal.revealed,
.reveal--right.revealed,
.reveal--left.revealed { opacity: 1; transform: translate(0, 0); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--right, .reveal--left { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ===== NAVIGATION ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gray-200);
}

/* Nav sobre o herói escuro */
.header:not(.scrolled) .nav__logo img { filter: brightness(0) invert(1); }
.header:not(.scrolled) .nav__links a:not(.btn) { color: rgba(255, 255, 255, 0.75); }
.header:not(.scrolled) .nav__links a:not(.btn):hover,
.header:not(.scrolled) .nav__links a.active { color: var(--white); }
.header:not(.scrolled) .btn--outline-nav {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.header:not(.scrolled) .btn--outline-nav:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.header:not(.scrolled) .nav__toggle span { background: var(--white); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav__logo img { height: 42px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: var(--fw-medium);
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav__links a:not(.btn):hover,
.nav__links a.active { color: var(--purple); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-900);
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--plum-900);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 760px; max-height: 760px;
  left: -22vw; bottom: -24vw;
  background: radial-gradient(circle, rgba(196, 42, 168, 0.20) 0%, transparent 65%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
  pointer-events: none;
  animation: heroAmbient 11s ease-in-out infinite alternate-reverse;
}
.hero__bg-shape {
  position: absolute;
  width: 74vw; height: 74vw;
  max-width: 960px; max-height: 960px;
  right: -26vw; top: -28vw;
  background: radial-gradient(circle, rgba(139, 45, 159, 0.34) 0%, rgba(91, 20, 110, 0.12) 45%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(56px);
  animation: heroAmbient 13s ease-in-out infinite alternate;
}
@keyframes heroAmbient {
  0%   { transform: translate(0, 0) scale(1);        opacity: 0.85; }
  50%  { transform: translate(4%, 6%) scale(1.08);   opacity: 1;    }
  100% { transform: translate(-4%, -4%) scale(0.94); opacity: 0.72; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 56px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--purple-light);
  margin-bottom: 24px;
  padding: 7px 16px;
  border: 1px solid rgba(193, 111, 224, 0.3);
  border-radius: var(--radius-full);
  background: rgba(193, 111, 224, 0.08);
}

.hero__headline {
  font-family: var(--ff-heading);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: var(--fw-black);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 26px;
}
.hero__headline em {
  font-style: normal;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 510px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.hero__trust-item strong {
  font-family: var(--ff-heading);
  font-size: 22px;
  font-weight: var(--fw-extrabold);
  color: var(--white);
}
.hero__trust-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}
.hero__trust-sep {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.14);
}

.hero__visual { position: relative; }
.hero__img-wrap { position: relative; }
.hero__img-wrap img {
  width: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(139, 45, 159, 0.4),
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 70px rgba(196, 42, 168, 0.18);
}
.hero__img-badge {
  position: absolute;
  bottom: -18px; left: -22px;
  width: 74px; height: 74px;
  background: var(--grad-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 17px;
  box-shadow: var(--shadow-purple), 0 0 0 4px rgba(196, 42, 168, 0.2);
  animation: float 3s ease-in-out infinite;
}
.hero__img-badge img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.hero__img-chip {
  position: absolute;
  top: 26px; right: -24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  animation: float 3s ease-in-out infinite 1.4s;
}
.hero__img-chip strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 24px;
  font-weight: var(--fw-extrabold);
  color: var(--purple-light);
  line-height: 1;
}
.hero__img-chip span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: block;
  margin-top: 5px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
  transition: color var(--transition);
}
.hero__scroll:hover { color: var(--purple-light); }

@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ===== HERO — FOTO DA FUNDADORA ===== */
.hero__photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}
.hero__photo-glow {
  position: absolute;
  inset: -10% -8% -6% -10%;
  background: radial-gradient(circle at 58% 42%, rgba(196,42,168,0.42) 0%, rgba(139,45,159,0.16) 48%, transparent 72%);
  filter: blur(36px);
  z-index: 0;
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}
.hero__photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: var(--radius-lg);
  box-shadow:
    0 0 0 1px rgba(196,42,168,0.35),
    0 32px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(196,42,168,0.16);
}
/* Selo com a logo */
.hero__photo-badge {
  position: absolute;
  z-index: 2;
  top: -16px; right: -14px;
  width: 64px; height: 64px;
  background: var(--grad-purple);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 15px;
  box-shadow: var(--shadow-purple), 0 0 0 4px rgba(196,42,168,0.18);
  animation: float 4.6s ease-in-out infinite 0.4s;
}
.hero__photo-badge img { width: 100%; height: 100%; object-fit: contain; filter: brightness(0) invert(1); }
/* Tag de credibilidade */
.hero__photo-tag {
  position: absolute;
  z-index: 2;
  left: 16px; bottom: 16px;
  background: rgba(11,0,18,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 14px;
  padding: 12px 18px;
}
.hero__photo-tag strong {
  display: block;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: 16px;
  color: #fff;
  line-height: 1.2;
}
.hero__photo-tag span {
  font-size: 12px;
  color: rgba(255,255,255,0.66);
}

/* ===== MARQUEE (faixa banner) ===== */
.marquee {
  background: var(--grad-purple);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.marquee--dark {
  background: var(--plum-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__item {
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: var(--fw-extrabold);
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
}
.marquee--dark .marquee__item { color: rgba(255,255,255,0.85); }
.marquee__item::after {
  content: '✦';
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.marquee--dark .marquee__item::after { color: var(--purple-light); }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== DOR / IDENTIFICAÇÃO ===== */
.dor {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.dor__head { max-width: 820px; margin-bottom: 48px; }
.dor__title { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.12; }
.dor__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.dor__card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all var(--transition);
}
.dor__card:hover {
  border-color: rgba(139, 45, 159, 0.25);
  box-shadow: 0 10px 36px rgba(139, 45, 159, 0.08);
  transform: translateY(-4px);
}
.dor__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--purple-bg);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.dor__card h3 {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.dor__card p {
  font-size: 14.5px;
  color: var(--gray-700);
  line-height: 1.6;
}
.dor__punch {
  margin-top: 44px;
  text-align: center;
  font-family: var(--ff-heading);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: var(--fw-extrabold);
  color: var(--black);
  letter-spacing: -0.02em;
}
.dor__punch span { color: var(--purple); }

/* ===== SOLUÇÃO / COMO FUNCIONA ===== */
.solucao {
  padding: var(--section-padding) 0;
  background: var(--grad-dark);
  position: relative;
  overflow: hidden;
}
.solucao::before {
  content: '';
  position: absolute;
  width: 50vw; height: 50vw;
  max-width: 640px; max-height: 640px;
  right: -16vw; top: -16vw;
  background: radial-gradient(circle, rgba(139,45,159,0.22) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.solucao__head { max-width: 680px; margin-bottom: 56px; position: relative; z-index: 1; }
.solucao__head .section__title { color: var(--white); }
.solucao__head p { color: rgba(255,255,255,0.6); font-size: 17px; line-height: 1.7; }
.solucao__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
  z-index: 1;
}
.solucao__step {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
}
.solucao__step:hover {
  background: rgba(139, 45, 159, 0.12);
  border-color: rgba(193, 111, 224, 0.3);
  transform: translateY(-5px);
}
.solucao__num {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  color: var(--purple-light);
  margin-bottom: 22px;
}
.solucao__step h3 {
  font-size: 21px;
  font-weight: var(--fw-bold);
  color: var(--white);
  margin-bottom: 10px;
}
.solucao__step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.7;
}

/* ===== SERVIÇOS ===== */
.servicos {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.servicos__head { margin-bottom: 48px; }
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.servicos__card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.servicos__card:hover {
  background: var(--white);
  border-color: rgba(139, 45, 159, 0.2);
  box-shadow: 0 14px 40px rgba(139, 45, 159, 0.1);
  transform: translateY(-5px);
}
.servicos__num {
  font-family: var(--ff-heading);
  font-size: 11px;
  font-weight: var(--fw-bold);
  letter-spacing: 2px;
  color: var(--purple);
  text-transform: uppercase;
}
.servicos__card h3 {
  font-size: 20px;
  font-weight: var(--fw-bold);
  color: var(--black);
  letter-spacing: -0.01em;
}
.servicos__card p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  flex: 1;
}
.servicos__link {
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--purple);
  margin-top: 4px;
  transition: gap var(--transition), color var(--transition);
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.servicos__link:hover { color: var(--purple-dark); gap: 12px; }

/* ===== RESULTADOS / PROVA REAL ===== */
.resultados {
  padding: var(--section-padding) 0;
  background: var(--cream);
}
.resultados__inner {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.resultados__content .section__title { margin-bottom: 22px; }
.resultados__lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.resultados__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-bottom: 36px;
}
.resultados__stat strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: var(--fw-black);
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.03em;
}
.resultados__stat span {
  font-size: 12.5px;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: 10px;
  font-weight: var(--fw-semibold);
}
.resultados__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 19px;
  color: var(--purple-dark);
  border-left: 3px solid var(--purple);
  padding-left: 20px;
  line-height: 1.5;
}
.resultados__proof {
  position: relative;
}
.resultados__proof img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.resultados__proof-tag {
  position: absolute;
  bottom: -16px; left: -16px;
  background: var(--grad-purple);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 12px 22px;
  font-family: var(--ff-heading);
  font-size: 13px;
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-purple);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== CLIENTES ===== */
.clientes {
  padding: var(--section-padding) 0;
  background: var(--purple-bg);
  overflow: hidden;
}
.clientes__head { text-align: center; margin-bottom: 44px; }

/* Faixa de logos em linha única, rolando (cliente não conta) */
.logos {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos__track {
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.logos:hover .logos__track { animation-play-state: paused; }
.logos__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logos__item {
  flex: 0 0 auto;
  width: 170px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.logos__item img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.logos__item img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.06);
}

/* ===== SOBRE RUTH ===== */
.sobre {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.sobre__diagonal {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 44%;
  background: linear-gradient(160deg, #F3E9FA 0%, #E4CBF4 100%);
  clip-path: polygon(0% 0%, 88% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.sobre__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 64px;
  align-items: center;
}
.sobre__image { position: relative; }
.sobre__image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 620px;
  object-position: center 18%;
}
.sobre__image-tag {
  position: absolute;
  bottom: -16px; right: -20px;
  background: var(--grad-purple);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-purple);
}
.sobre__image-tag strong {
  display: block;
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.sobre__image-tag span { font-size: 12px; opacity: 0.8; display: block; margin-top: 3px; }
.sobre__content h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  font-weight: var(--fw-black);
  color: var(--black);
  margin-bottom: 22px;
  line-height: 1.1;
}
.sobre__lead {
  font-size: 17px;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 16px;
  font-weight: var(--fw-medium);
}
.sobre__content p { font-size: 15px; color: var(--gray-700); line-height: 1.75; margin-bottom: 28px; }
.sobre__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 8px; }
.sobre__list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--gray-700); font-weight: var(--fw-medium);
}
.sobre__list svg { flex-shrink: 0; color: var(--purple); }

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  padding: var(--section-padding) 0;
  background: var(--white);
}
.depoimentos__head { text-align: center; margin-bottom: 44px; }
.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.depoimentos__card {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}
.depoimentos__card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.depoimentos__card--featured {
  background: var(--grad-purple);
  border-color: transparent;
}
.depoimentos__stars { font-size: 17px; color: #F5A623; margin-bottom: 18px; letter-spacing: 3px; }
.depoimentos__card--featured .depoimentos__stars { color: rgba(255, 255, 255, 0.75); }
.depoimentos__card p {
  font-size: 15px; line-height: 1.75; color: var(--gray-700);
  margin-bottom: 26px; font-style: italic; flex: 1;
}
.depoimentos__card--featured p { color: rgba(255, 255, 255, 0.95); }
.depoimentos__author { display: flex; align-items: center; gap: 14px; }
.depoimentos__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--purple-bg);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: 15px;
  flex-shrink: 0;
}
.depoimentos__card--featured .depoimentos__avatar { background: rgba(255, 255, 255, 0.22); color: var(--white); }
.depoimentos__author strong { display: block; font-size: 14px; font-weight: var(--fw-semibold); color: var(--black); }
.depoimentos__card--featured .depoimentos__author strong { color: var(--white); }
.depoimentos__author span { font-size: 12px; color: var(--gray-500); }
.depoimentos__card--featured .depoimentos__author span { color: rgba(255, 255, 255, 0.7); }

/* ===== FAQ ===== */
.faq {
  padding: var(--section-padding) 0;
  background: var(--gray-100);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.faq__header h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: var(--fw-black);
  color: var(--black);
  margin-bottom: 16px;
  line-height: 1.1;
}
.faq__header p { font-size: 15px; color: var(--gray-700); margin-bottom: 28px; line-height: 1.7; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--gray-200); }
.faq__item:first-child { border-top: 1px solid var(--gray-200); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  width: 100%; text-align: left; padding: 22px 0;
  font-family: var(--ff-heading);
  font-size: 15.5px; font-weight: var(--fw-semibold);
  color: var(--black); transition: color var(--transition);
}
.faq__question:hover, .faq__question[aria-expanded="true"] { color: var(--purple); }
.faq__icon { flex-shrink: 0; transition: transform var(--transition); color: var(--purple); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding-bottom 0.4s ease; }
.faq__answer.open { max-height: 320px; padding-bottom: 22px; }
.faq__answer p { font-size: 15px; color: var(--gray-700); line-height: 1.75; }

/* ===== CTA FINAL / CONTATO ===== */
.contato {
  padding: var(--section-padding) 0;
  background: var(--plum-900);
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute;
  width: 60vw; height: 60vw;
  max-width: 720px; max-height: 720px;
  right: -20vw; bottom: -24vw;
  background: radial-gradient(circle, rgba(196, 42, 168, 0.22) 0%, transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}
.contato__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contato__title {
  font-family: var(--ff-heading);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: var(--fw-black);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
  text-wrap: balance;
}
.contato__title em {
  font-style: normal;
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contato__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.contato__info {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.contato__info-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255, 255, 255, 0.5);
}
.contato__info-item svg { color: var(--purple-light); flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: var(--white); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer__brand img { height: 40px; width: auto; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 14px; color: rgba(255, 255, 255, 0.45); line-height: 1.65; max-width: 300px; }
.footer__location { margin-top: 6px; font-size: 13px !important; color: rgba(255, 255, 255, 0.25) !important; }
.footer__links h4, .footer__social h4 {
  font-family: var(--ff-heading);
  font-size: 11px; font-weight: var(--fw-bold);
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.35); margin-bottom: 20px;
}
.footer__links ul { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: rgba(255, 255, 255, 0.55); transition: color var(--transition); }
.footer__links a:hover { color: var(--purple-light); }
.footer__social-icons { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.footer__icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  flex-shrink: 0;
}
.footer__icon-btn:hover { background: var(--purple); border-color: var(--purple); color: var(--white); transform: translateY(-3px); }
.footer__email { font-size: 13px; color: rgba(255, 255, 255, 0.35); transition: color var(--transition); }
.footer__email:hover { color: rgba(255, 255, 255, 0.65); }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.07); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; }
.footer__bottom p { font-size: 12px; color: rgba(255, 255, 255, 0.28); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  z-index: 99;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6); }
.whatsapp-float__tooltip {
  position: absolute;
  right: 68px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--white);
  font-size: 13px; font-weight: var(--fw-medium);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.whatsapp-float:hover .whatsapp-float__tooltip { opacity: 1; }

/* ===== RESPONSIVE — 1024px ===== */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .hero__inner { gap: 40px; }
  .solucao__steps { grid-template-columns: 1fr; }
  .servicos__grid { grid-template-columns: repeat(2, 1fr); }
  .resultados__inner { gap: 44px; }
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
  .footer__social {
    grid-column: 1 / -1;
    display: flex; flex-direction: row; align-items: center; gap: 24px;
  }
  .footer__social h4 { margin-bottom: 0; white-space: nowrap; }
  .footer__social .footer__social-icons { margin-bottom: 0; }
  .footer__social .footer__email { margin-left: auto; }
}

/* ===== RESPONSIVE — 768px ===== */
@media (max-width: 768px) {
  :root { --section-padding: 64px; }
  .container { padding: 0 20px; }
  body { overflow-x: hidden; }
  h1, h2, h3 { word-break: break-word; overflow-wrap: break-word; }

  /* Nav mobile */
  .nav__links {
    display: none;
    position: fixed;
    top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 8px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gray-200);
    z-index: 99;
    overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 18px; padding: 12px 0; border-bottom: 1px solid var(--gray-200); width: 100%; }
  .nav__links li:last-child a { border-bottom: none; margin-top: 8px; }
  .nav__toggle { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; min-height: 100vh; }
  .hero__bg-shape { width: 150vw; height: 150vw; right: -75vw; top: -75vw; filter: blur(60px); opacity: 0.7; }
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
    padding-top: 16px; padding-bottom: 60px;
  }
  .hero__inner > * { min-width: 0; }
  .hero__text { max-width: 100%; }
  .hero__headline { overflow-wrap: break-word; }
  .hero__visual { order: -1; }
  .hero__photo { max-width: 300px; }
  .hero__photo-badge { width: 54px; height: 54px; top: -12px; right: -8px; padding: 13px; }
  .hero__photo-tag { left: 12px; bottom: 12px; padding: 10px 14px; }
  .hero__photo-tag strong { font-size: 15px; }
  .hero__img-wrap img { max-height: 380px; }
  .hero__img-badge { left: 8px; bottom: -10px; width: 54px; height: 54px; padding: 13px; }
  .hero__img-chip { right: 8px; top: 16px; padding: 10px 14px; }
  .hero__eyebrow {
    display: inline-block;
    white-space: normal;
    text-align: center;
    max-width: 100%;
    font-size: 10px; letter-spacing: 1.4px; line-height: 1.5;
    padding: 7px 16px;
  }
  .hero__sub { margin: 0 auto 34px; max-width: 100%; font-size: 16px; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 340px; }
  .hero__trust { justify-content: center; }

  /* Marquee */
  .marquee__item { font-size: 13px; padding: 0 18px; gap: 18px; }

  /* Dor */
  .dor__grid { grid-template-columns: 1fr; }

  /* Serviços */
  .servicos__grid { grid-template-columns: 1fr; }

  /* Resultados */
  .resultados__inner { grid-template-columns: 1fr; gap: 56px; }
  .resultados__stats { gap: 24px; }
  .resultados__proof-tag { left: 50%; transform: translateX(-50%); bottom: -18px; }

  /* Faixa de logos — itens menores e mais rápidos no mobile */
  .logos__item { width: 130px; height: 78px; padding: 0 18px; }
  .logos__item img { max-height: 46px; }
  .logos__track { animation-duration: 34s; }

  /* Sobre */
  .sobre__diagonal { display: none; }
  .sobre__inner { grid-template-columns: 1fr; gap: 56px; }
  .sobre__image img { max-height: 420px; }
  .sobre__image-tag { right: 8px; bottom: -12px; padding: 14px 16px; }

  /* Depoimentos */
  .depoimentos__grid { grid-template-columns: 1fr; gap: 16px; }

  /* FAQ */
  .faq__inner { grid-template-columns: 1fr; gap: 36px; }
  .faq__header { text-align: center; }

  /* Contato */
  .contato__info { gap: 16px; flex-direction: column; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: span 2; }
  .footer__social { grid-column: span 2; flex-direction: column; gap: 16px; align-items: flex-start; }
  .footer__social .footer__email { margin-left: 0; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; padding: 20px 0; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
}

/* ===== RESPONSIVE — 480px ===== */
@media (max-width: 480px) {
  :root { --section-padding: 52px; }
  .container { padding: 0 16px; }
  .nav__logo img { height: 36px; }
  .hero__headline { font-size: 27px; line-height: 1.12; letter-spacing: -0.02em; }
  .hero__photo { max-width: 280px; }
  .hero__photo-tag strong { font-size: 14px; }
  .hero__photo-tag span { font-size: 11px; }
  .hero__sub { font-size: 15px; }
  .hero__trust-item strong { font-size: 19px; }
  .servicos__card, .dor__card, .solucao__step { padding: 24px 22px; }
  .logos__item { width: 116px; height: 70px; }
  .sobre__image img { max-height: 340px; }
  .depoimentos__card { padding: 26px 22px; }
  .faq__question { font-size: 14.5px; padding: 18px 0; }
  .resultados__stats { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand, .footer__social { grid-column: span 1; }
  .footer__brand img { height: 36px; }
  .btn { padding: 14px 24px; font-size: 13px; }
  .btn--lg { padding: 16px 30px; font-size: 15px; }
}
