/* ============================================================
   ID Mídia — CSS Semântico (sem Tailwind)
   Breakpoints: 768px (tablet) | 1024px (desktop)
   ============================================================ */

/* 1. RESET MÍNIMO */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: inherit; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, [type="button"], [type="submit"] { cursor: pointer; -webkit-appearance: button; background: none; border: none; }
textarea { resize: vertical; }
[hidden] { display: none; }

/* 2. VARIÁVEIS */
:root {
  --navy:        #0b225c;
  --navy-dark:   #0b1120;
  --teal:        #14b8a6;
  --teal-light:  #2dd4bf;
  --teal-50:     #f0fdf4;
  --slate-50:    #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-500:   #64748b;
  --slate-600:   #475569;
  --text:        #334155;
  --white:       #ffffff;

  --anim-speed:  0.4s;
  --anim-curve:  cubic-bezier(0.4, 0, 0.2, 1);
}

/* 3. BASE */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: Inter, sans-serif;
  color: var(--text);
  background: var(--white);
}

h1, h2, h3, h4, h5, h6 { font-weight: inherit; font-size: inherit; }
b, strong { font-weight: 700; }
em { font-style: italic; }

/* 4. HELPERS DE LAYOUT */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-inner {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

/* 5. ANIMAÇÕES GSAP / SCROLL */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes autoScrollPreview {
  0%, 10%   { transform: translateY(0); }
  90%, 100% { transform: translateY(-2000px); }
}
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-10deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float 3s ease-in-out infinite; }
.animate-site-scroll { animation: autoScrollPreview 25s ease-in-out infinite alternate; }

.gsap-card { opacity: 0; }

.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease-out, transform .8s ease-out;
  will-change: opacity, visibility;
}
.fade-in-section.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in-section { opacity: 1; transform: none; transition: none; }
  .animate-float   { animation: none; }
  .gsap-card       { opacity: 1; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* 6. WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  transition: transform .3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float img { width: 4rem; height: 4rem; filter: drop-shadow(0 10px 8px rgba(0,0,0,0.1)); }

/* ============================================================
   HEADER / HERO
   ============================================================ */
.site-header {
  position: relative;
  padding: 5rem 1.5rem;
  background-image: url('assets/images/hero-bg.webp');
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  background-attachment: scroll;
  overflow: hidden;
}

.site-nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 1.5rem 0;
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  position: relative;
  cursor: pointer;
}
.logo-default { height: 2rem; object-fit: cover; transition: opacity .3s ease; }
.logo-hover {
  position: absolute;
  inset: 0;
  height: 2rem;
  object-fit: cover;
  opacity: 0;
  transition: opacity .3s ease;
  filter: drop-shadow(0 4px 3px rgba(0,0,0,0.1));
}
.logo-wrapper:hover .logo-default { opacity: 0; }
.logo-wrapper:hover .logo-hover   { opacity: 1; }

.btn-nav {
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-weight: 600;
  font-size: .75rem;
  padding: .5rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: background .3s ease, color .3s ease, transform .3s ease;
  text-decoration: none;
}
.btn-nav:hover {
  background: var(--teal);
  transform: scale(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,34,92,.85);
  z-index: 0;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-text { width: 100%; text-align: left; }

.hero-badges { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }

.badge {
  display: inline-block;
  padding: .25rem 1rem;
  border-radius: 9999px;
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  backdrop-filter: blur(12px);
}
.badge--specialty {
  background: rgba(255,255,255,.1);
  color: #bfdbfe;
  border: 1px solid rgba(255,255,255,.2);
}
.badge--vacancy {
  background: rgba(20,184,166,.25);
  color: var(--teal);
  border: 1px solid rgba(20,184,166,.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.1));
  font-weight: 700;
}
.hero-title span { color: var(--teal); font-style: italic; }

.hero-subtitle {
  font-size: .875rem;
  color: #dbeafe;
  margin-bottom: 2rem;
  line-height: 1.625;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.06));
  max-width: 32rem;
}

.hero-actions { display: flex; flex-direction: column; gap: 1rem; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: .5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
  text-align: center;
}
.btn-primary:hover {
  background: #0d9488;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  transform: translateY(-4px);
}

.btn-secondary {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: var(--white);
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: .5rem;
  transition: background .3s ease;
  text-align: center;
}
.btn-secondary:hover { background: rgba(255,255,255,.1); }

.btn-exemplos { position: relative; overflow: hidden; display: inline-flex; align-items: center; gap: .5rem; }
.seta-gsap { opacity: 0; margin-left: .5rem; }

.hero-platforms {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .875rem;
  color: #bfdbfe;
  font-weight: 500;
}

.platform-avatars { display: flex; }
.platform-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  overflow: hidden;
  margin-left: -.75rem;
}
.platform-avatar:first-child { margin-left: 0; }
.platform-avatar img { width: 100%; height: 100%; object-fit: cover; }

.hero-cards {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 24rem;
  position: relative;
  z-index: 20;
  height: 400px;
  padding-bottom: 2.5rem;
}

/* Gsap cards (hero) */
.gsap-card {
  background: var(--white);
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  padding: 1rem;
  margin-bottom: 1rem;
}
.gsap-card:last-child { margin-bottom: 0; }

.gsap-card__icon {
  padding: .75rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.gsap-card__icon--red   { background: #fef2f2; }
.gsap-card__icon--red svg   { color: #ef4444; width: 1.5rem; height: 1.5rem; }
.gsap-card__icon--green { background: #f0fdf4; }
.gsap-card__icon--green svg { color: var(--teal); width: 1.5rem; height: 1.5rem; }
.gsap-card__icon--teal  { background: var(--teal); }
.gsap-card__icon--teal svg  { color: var(--white); width: 1.5rem; height: 1.5rem; }

.gsap-card__label {
  font-size: .75rem;
  color: #9ca3af;
  font-weight: 500;
  text-transform: uppercase;
}
.gsap-card__label--green { color: #16a34a; font-weight: 700; }
.gsap-card__title { font-size: 1.125rem; font-weight: 700; color: #64748b; line-height: 1; margin-top: .25rem; }
.gsap-card__title--navy { color: var(--navy); }
.gsap-card__title--lg   { font-size: 1.25rem; font-weight: 900; color: var(--navy); }
.gsap-card--featured { border-left: 4px solid #22c55e; box-shadow: 0 25px 50px -12px rgba(0,0,0,.15); }

/* ============================================================
   SEÇÃO PROBLEMAS
   ============================================================ */
.problems-section {
  padding: 6rem 1rem;
  background: var(--slate-50);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.section-label {
  display: block;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.section-title span { color: var(--teal); font-style: italic; }

.section-desc {
  color: var(--text);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
  opacity: .8;
}

.problems-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.problem-card {
  position: relative;
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border: 1px solid var(--slate-100);
  font-family: Inter, sans-serif;
  transition: box-shadow var(--anim-speed) var(--anim-curve), transform var(--anim-speed) var(--anim-curve);
}
.problem-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); transform: translateY(-8px); }

.problem-card__img {
  position: absolute;
  inset: 0;
  height: 10rem;
  background: var(--slate-200);
}
.problem-card__img img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: all .5s ease; }
.problem-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, white, rgba(255,255,255,.15), transparent);
}

.problem-card__body { position: relative; padding: 2rem; padding-top: 8rem; }

.problem-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #f0fdfa;
  color: var(--teal);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  border: 1px solid #ccfbf1;
  transition: transform var(--anim-speed) var(--anim-curve);
}
.problem-card:hover .problem-card__icon { transform: scale(1.1); }

.problem-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: .75rem;
}

.problem-card__text { color: #64748b; font-size: .875rem; line-height: 1.625; }

/* ============================================================
   SEÇÃO PORTFÓLIO
   ============================================================ */
.portfolio-section {
  padding: 6rem 1rem;
  background: var(--slate-50);
  position: relative;
}
.portfolio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#0B1120 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: .03;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 4rem;
  text-align: center;
}

.portfolio-grid {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  gap: 2rem;
}

.portfolio-card {
  background: var(--white);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  position: relative;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: all var(--anim-speed) var(--anim-curve);
}
.portfolio-card:hover { transform: translateY(-8px); border-color: #cbd5e1; box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); }

.portfolio-card__preview {
  position: relative;
  height: 26rem;
  background: var(--slate-50);
  overflow: hidden;
  border-bottom: 1px solid var(--slate-100);
}

.portfolio-card__preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: rgba(11,34,92,.05);
  transition: background var(--anim-speed) var(--anim-curve);
}
.portfolio-card:hover .portfolio-card__preview-overlay { background: rgba(11,34,92,.2); }

.portfolio-scroll-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 4000px;
  transform: scale(.62);
  transform-origin: top left;
}

.portfolio-scroll { width: 100%; height: 100%; animation: autoScrollPreview 25s ease-in-out infinite alternate; }
.portfolio-card:hover .portfolio-scroll { animation-play-state: paused; }

.portfolio-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: .25rem .75rem;
  background: rgba(11,34,92,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.case-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 20;
  gap: .75rem;
  background: linear-gradient(180deg, rgba(11,17,32,.8), rgba(20,184,166,.9));
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--anim-speed) var(--anim-curve);
}
.portfolio-card:hover .case-overlay { opacity: 1; visibility: visible; transform: translateY(0); }
.case-overlay span {
  background: var(--teal);
  color: var(--white);
  padding: .75rem 1.5rem;
  border-radius: .5rem;
  font-weight: 700;
  font-size: .875rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border: 1px solid rgba(255,255,255,.2);
}

.portfolio-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; position: relative; z-index: 20; background: var(--white); }

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .75rem;
  transition: color .3s ease;
}
.portfolio-card:hover .card-title { color: var(--teal); }

.portfolio-card__desc { color: #64748b; font-size: .875rem; line-height: 1.625; margin-bottom: 1.5rem; font-weight: 300; }

.portfolio-card__meta {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.portfolio-card__result-label { font-size: 10px; color: var(--slate-400); text-transform: uppercase; font-weight: 700; letter-spacing: .05em; margin-bottom: .25rem; }
.portfolio-card__result-value { font-size: 1.125rem; font-weight: 700; color: var(--teal); }

.arrow-icon { color: var(--slate-200); font-size: 1.5rem; transition: color .3s ease; }
.portfolio-card:hover .arrow-icon { color: var(--teal); }

.portfolio-link {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--slate-400);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-decoration: none;
  transition: color .3s ease;
}
.portfolio-link:hover { color: var(--teal); }

.link-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
  transition: all .3s ease;
}
.portfolio-link:hover .link-circle { background: var(--teal); border-color: var(--teal); color: var(--white); }

.link-arrow { transition: transform .3s ease; }
.portfolio-link:hover .link-arrow { transform: rotate(-45deg); }

.portfolio-cta        { display: none; }
.portfolio-cta-mobile {
  margin-top: 3rem;
  text-align: center;
  display: block;
}
.portfolio-cta-mobile a {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: .5rem;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-weight: 700;
  transition: background .3s ease, color .3s ease;
}
.portfolio-cta-mobile a:hover { background: var(--navy); color: var(--white); }

/* ============================================================
   SEÇÃO PROCESSO / SLIDER
   ============================================================ */
.process-section {
  padding: 6rem 1.5rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.process-inner {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

#slider-container {
  position: relative;
  height: 600px;
  width: 100%;
}

#slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .9;
  z-index: 0;
  transform-origin: bottom;
  border-radius: 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.4);
}

.slider-gradient {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 2.5rem;
  background: linear-gradient(to top, rgba(11,34,92,.7) 0%, transparent 60%);
}

.slider-doc-wrapper {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

#slide-doc {
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 25px 25px rgba(0,0,0,.15));
  height: 88%;
}

.float-card {
  position: absolute;
  z-index: 20;
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  border: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 230px;
}

.float-card__icon {
  padding: .75rem;
  border-radius: 9999px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.float-icon--blue   { background: #eff6ff; color: #2563eb; }
.float-icon--green  { background: #f0fdf4; color: #16a34a; }
.float-icon--purple { background: #faf5ff; color: #9333ea; }
.float-icon--orange { background: #fff7ed; color: #f97316; }
.float-icon--teal   { background: #f0fdfa; color: #0d9488; }
.float-icon--red    { background: #fef2f2; color: #ef4444; }

.float-card__label {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: .05em;
}
.float-card__text { font-size: .875rem; font-weight: 700; color: var(--navy); line-height: 1.25; }

.process-content { display: flex; flex-direction: column; justify-content: center; }

.process-header { margin-bottom: 2.5rem; }
.process-header .section-label { margin-bottom: .75rem; }
.process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}
.process-header h2 span { color: var(--teal); font-style: italic; }
.process-header a {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color .3s ease;
}
.process-header a:hover { color: var(--teal); }
.process-header a i { margin-left: .5rem; }

.process-steps { display: flex; flex-direction: column; gap: 2.5rem; }

.process-step { display: flex; gap: 1.5rem; }

.process-step__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background: #eff6ff;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  border: 1px solid #dbeafe;
}

.process-step__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .5rem;
}
.process-step__text { color: #64748b; line-height: 1.625; font-size: .875rem; }

/* ============================================================
   SEÇÃO STATS (escura)
   ============================================================ */
.stats-section {
  position: relative;
  overflow: hidden;
  background: #0b225c;
  padding: 5rem 1.5rem;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(20,184,166,.08) 0%, transparent 70%);
  pointer-events: none;
}

.stats-inner { max-width: 64rem; margin: 0 auto; position: relative; z-index: 10; }

.stats-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3.5rem;
}
.stats-label-row p {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.stats-label-row .line {
  height: 1px;
  width: 40px;
}
.stats-label-row .line--left  { background: linear-gradient(to right, transparent, rgba(20,184,166,.5)); }
.stats-label-row .line--right { background: linear-gradient(to left, transparent, rgba(20,184,166,.5)); }

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1.25rem;
  overflow: hidden;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .4s ease;
}
.stat-item:last-child { border-bottom: none; }
.stat-item:hover { background: rgba(20,184,166,.04); }
.stat-item:hover .stat-line { width: 80%; }

.stat-icon-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}
.stat-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(20,184,166,.1);
  border: 1px solid rgba(20,184,166,.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stat-icon-box i { color: var(--teal); font-size: .875rem; }
.stat-category { color: rgba(255,255,255,.35); font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, #fff 40%, var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: .75rem;
}
.stat-desc { color: rgba(148,163,184,.8); font-size: .875rem; font-weight: 300; line-height: 1.6; max-width: 200px; }

.stat-line {
  margin-top: 2rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--teal), transparent);
  width: 40%;
  transition: width .4s ease;
}

/* ============================================================
   SEÇÃO AUTOMAÇÃO
   ============================================================ */
.automation-section {
  padding: 6rem 1rem;
  background: var(--slate-50);
}

.automation-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.flow-wrapper {
  max-width: 72rem;
  margin: 0 auto;
  position: relative;
}

.flow-connector {
  display: none;
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, rgba(20,184,166,.2), var(--teal), rgba(20,184,166,.2));
  z-index: 0;
}

.flow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.flow-step__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border: 2px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--navy);
  transition: transform var(--anim-speed) var(--anim-curve);
}
.flow-step__icon--filled { background: var(--teal); color: var(--white); }
.flow-step:hover .flow-step__icon { transform: scale(1.1); }

.flow-step h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: .5rem;
}
.flow-step p { color: #64748b; font-size: .875rem; line-height: 1.625; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  transition: box-shadow .3s ease;
}
.feature-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }

.feature-card__icon {
  width: 3rem;
  height: 3rem;
  background: #f0fdfa;
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--teal);
}

.feature-card h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .5rem;
}
.feature-card p { color: #64748b; font-size: .875rem; line-height: 1.625; }

/* ============================================================
   SEÇÃO PRICING / INVESTIMENTO
   ============================================================ */
.pricing-section {
  padding: 6rem 1rem;
  background: var(--white);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.pricing-anchor {
  text-align: center;
  font-size: .75rem;
  color: var(--slate-400);
  margin-bottom: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.pricing-anchor span { color: var(--teal); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 1.25rem;
  max-width: 72rem;
  margin: 0 auto;
}

.pricing-card {
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.pricing-card--basic {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.pricing-card--featured {
  background: linear-gradient(to bottom right, var(--navy), #1e3a8a);
  color: var(--white);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
  position: relative;
  overflow: hidden;
}

.pricing-card__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 12rem;
  height: 12rem;
  background: var(--teal);
  border-radius: 9999px;
  filter: blur(64px);
  opacity: .2;
  transform: translateY(-4rem) translateX(4rem);
  pointer-events: none;
}

.pricing-card__badge {
  background: var(--teal);
  text-align: center;
  padding: .5rem;
  border-radius: 0 0 .75rem .75rem;
  width: 75%;
  margin: 0 auto;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  position: relative;
  z-index: 10;
}
.pricing-card__badge span { color: var(--white); font-size: 10px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }

.pricing-card__inner { position: relative; z-index: 10; display: flex; flex-direction: column; flex: 1; padding-top: 1.5rem; }

.pricing-card__tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.pricing-card--basic  .pricing-card__tag { color: var(--slate-400); }
.pricing-card--featured .pricing-card__tag { color: var(--teal); }

.pricing-card__price { font-size: 2.25rem; font-weight: 700; }
.pricing-card--basic   .pricing-card__price { color: var(--navy); }
.pricing-card--featured .pricing-card__price { color: var(--white); }

.pricing-card__period { font-size: .875rem; margin-bottom: 1.5rem; }
.pricing-card--basic   .pricing-card__period { color: #64748b; }
.pricing-card--featured .pricing-card__period { color: #bfdbfe; }
.pricing-card--featured .pricing-card__period strong { color: var(--white); }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-card--featured .pricing-features {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
}

.pricing-feature { display: flex; align-items: flex-start; gap: .75rem; }
.pricing-feature i { flex-shrink: 0; margin-top: .125rem; font-size: .875rem; }
.pricing-feature span { font-size: .875rem; }

.pricing-card--basic .pricing-feature i.check   { color: var(--teal); }
.pricing-card--basic .pricing-feature i.cross   { color: #cbd5e1; }
.pricing-card--basic .pricing-feature span      { color: #475569; }
.pricing-card--basic .pricing-feature--off span { color: #94a3b8; }

.pricing-card--featured .pricing-feature i.check { color: var(--teal); }
.pricing-card--featured .pricing-feature span    { color: #eff6ff; }

.btn-pricing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: .75rem;
  transition: all .3s ease;
  margin-top: auto;
}
.btn-pricing--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
}
.btn-pricing--outline:hover { background: var(--navy); color: var(--white); }

.btn-pricing--filled {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  padding: 1rem 1.5rem;
}
.btn-pricing--filled:hover { background: #2dd4bf; transform: translateY(-2px); }
.btn-pricing--filled i { margin-left: .5rem; }

.guarantee-block {
  margin-top: 2.5rem;
  background: var(--slate-50);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--slate-100);
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-block-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--slate-200);
  padding: .5rem 1rem;
  border-radius: 9999px;
}
.guarantee-badge i { color: var(--teal); }
.guarantee-badge span { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--navy); }

.guarantee-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: .5rem;
}
.guarantee-text h3 span { color: var(--teal); font-style: italic; }
.guarantee-text p { color: var(--text); font-size: .875rem; font-weight: 300; line-height: 1.625; }

.guarantee-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  padding: .75rem 2rem;
  border-radius: .75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: background .3s, transform .3s;
  white-space: nowrap;
}
.guarantee-cta:hover { background: #0d9488; transform: translateY(-2px); }
.guarantee-cta i { margin-left: .5rem; }

/* ============================================================
   SEÇÃO DEPOIMENTOS
   ============================================================ */
.testimonials-section {
  padding: 6rem 1rem;
  background: var(--slate-50);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  border: 1px solid var(--slate-100);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card__header {
  background: linear-gradient(to bottom right, var(--navy), #1e3a8a);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 1.25rem;
}

.testimonial-card__name { color: var(--white); font-weight: 700; font-family: 'Playfair Display', serif; }
.testimonial-card__company { color: #bfdbfe; font-size: .75rem; }

.testimonial-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.stars { display: flex; gap: .25rem; margin-bottom: 1.25rem; }
.stars i { color: #facc15; font-size: .875rem; }

.testimonial-card__quote {
  color: #475569;
  font-size: .875rem;
  font-style: italic;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  flex: 1;
}

.testimonial-card__result {
  padding-top: 1.25rem;
  border-top: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card__result-label { font-size: 10px; color: var(--slate-400); text-transform: uppercase; font-weight: 700; letter-spacing: .05em; margin-bottom: .25rem; }
.testimonial-card__result-value { font-size: 1.125rem; font-weight: 700; color: var(--teal); }
.testimonial-card__result i { color: var(--teal); font-size: 1.25rem; }

/* ============================================================
   SEÇÃO CONTATO
   ============================================================ */
.contact-section {
  padding: 6rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: var(--teal);
  border-radius: 9999px;
  filter: blur(120px);
  opacity: .1;
  pointer-events: none;
}

.contact-inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
  display: grid;
  gap: 4rem;
  align-items: center;
}

.contact-info { text-align: left; }

.contact-badge {
  display: inline-block;
  padding: .25rem .75rem;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
  background: rgba(30,58,138,.3);
  border: 1px solid rgba(29,78,216,.3);
  backdrop-filter: blur(12px);
}
.contact-badge span { color: var(--teal); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}
.contact-info h2 span { color: var(--teal); font-style: italic; }

.contact-info p { color: rgba(191,219,254,.8); font-size: 1.125rem; margin-bottom: 2rem; font-weight: 300; line-height: 1.625; }

.contact-features { display: flex; flex-direction: column; gap: 1rem; }

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-feature__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  border: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.contact-feature span { color: var(--white); font-weight: 500; }

.form-wrapper { position: relative; }

.contact-glass {
  background: linear-gradient(180deg, rgba(255,255,255,.1), rgba(15,23,42,.4));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
  padding: 2rem;
  border-radius: 1rem;
}

.contact-glass h3 {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: .5rem;
}
.contact-glass p { color: var(--slate-400); font-size: .875rem; margin-bottom: 2rem; font-weight: 300; }

.form-field { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  margin-left: .25rem;
}

.form-icon-row { position: relative; }
.form-icon-row .icon-wrapper {
  position: absolute;
  inset-y: 0;
  left: 0;
  padding-left: 1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.contact-input {
  width: 100%;
  padding: 1rem 1rem 1rem 2.75rem;
  border-radius: .5rem;
  font-size: .875rem;
  background: rgba(2,6,23,.5);
  border: 1px solid rgba(51,65,85,.5);
  color: var(--white);
  transition: all .3s ease;
}
.contact-input:focus {
  background: rgba(2,6,23,.8);
  border-color: var(--teal);
  outline: none;
  box-shadow: 0 0 0 1px var(--teal);
}
.contact-input::placeholder { color: #64748b; }

.input-icon { color: #94a3b8; transition: color .3s ease; }
.form-field:focus-within .input-icon { color: var(--teal); }

.contact-btn {
  display: block;
  width: 100%;
  padding: 1rem;
  border-radius: .5rem;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .3s ease;
  cursor: pointer;
}
.contact-btn:hover { background: #2dd4bf; transform: translateY(-2px); box-shadow: 0 0 30px rgba(20,184,166,.6); }

.form-security {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-security i { color: #10b981; }

/* ============================================================
   SEÇÃO FAQ
   ============================================================ */
.faq-section {
  padding: 6rem 1rem;
  background: var(--white);
  position: relative;
}

.faq-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-toggle { display: none; }

.faq-card {
  background: var(--white);
  border: 1px solid var(--slate-100);
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.faq-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--teal);
  opacity: 0;
  transition: opacity .3s ease;
}
.faq-card:has(.faq-toggle:checked)::before { opacity: 1; }

.faq-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  user-select: none;
}
.faq-toggle:checked + .faq-label { color: var(--teal); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--slate-50);
  color: var(--slate-400);
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.faq-toggle:checked + .faq-label .faq-icon { transform: rotate(45deg); background: var(--teal); color: var(--white); }

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s cubic-bezier(.4,0,.2,1);
  background: rgba(248,250,252,.5);
}
.faq-toggle:checked + .faq-label + .faq-content { grid-template-rows: 1fr; }

.faq-inner {
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .4s ease, transform .4s ease;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  padding: 0 1.5rem;
}
.faq-toggle:checked + .faq-label + .faq-content .faq-inner { padding-bottom: 1.5rem; opacity: 1; transform: translateY(0); }

.faq-cta {
  margin-top: 3rem;
  text-align: center;
}
.faq-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--white);
  border-radius: .5rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: background .3s, box-shadow .3s, transform .3s;
}
.faq-cta a:hover { background: var(--teal); box-shadow: 0 20px 25px -5px rgba(0,0,0,.1); transform: translateY(-4px); }
.faq-cta a i { margin-right: .5rem; font-size: 1.25rem; }

/* ============================================================
   SEÇÃO SOBRE
   ============================================================ */
.about-section {
  padding: 6rem 1rem;
  background: var(--slate-50);
  position: relative;
  overflow: hidden;
}

.about-blobs { position: absolute; inset: 0; pointer-events: none; }
.about-blob--teal {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: #f0fdf4;
  border-radius: 9999px;
  filter: blur(80px);
  transform: translateY(-50%) translateX(33%);
}
.about-blob--blue {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: #eff6ff;
  border-radius: 9999px;
  filter: blur(80px);
  transform: translateY(33%) translateX(-33%);
}

.about-container {
  max-width: 80rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  background: var(--white);
  border-radius: 2.5rem;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
  border: 1px solid var(--slate-100);
  position: relative;
  overflow: hidden;
}

.about-inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-photo-col { position: relative; margin: 0 auto; width: 100%; max-width: 24rem; }

.about-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  border: 1px solid var(--slate-100);
}
.about-photo-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.about-photo-badge {
  position: absolute;
  right: -1.5rem;
  bottom: 3rem;
  background: var(--white);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid var(--slate-100);
  display: none;
}
.about-photo-badge__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: #f0fdfa;
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.about-photo-badge p:first-child  { color: var(--navy); font-weight: 700; font-size: .875rem; }
.about-photo-badge p:last-child   { color: #64748b; font-size: .75rem; }

.about-content-col { text-align: center; }

.about-label {
  display: inline-block;
  padding: .375rem 1rem;
  border-radius: 9999px;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  color: var(--teal);
  font-weight: 700;
  letter-spacing: .1em;
  font-size: .75rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2rem;
}
.about-title span { color: var(--teal); font-style: italic; }

.about-bio {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: #475569;
  font-size: 1rem;
  line-height: 1.625;
  font-weight: 300;
  margin-bottom: 2.5rem;
  text-align: left;
}
.about-bio strong { color: var(--navy); font-weight: 600; }

.about-quote {
  border-left: 4px solid var(--teal);
  padding-left: 1.5rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.about-quote p:first-child {
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.625;
}
.about-quote p:last-child { color: var(--slate-400); font-size: .875rem; margin-top: .5rem; font-weight: 400; }

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-100);
  padding: 1rem;
  border-radius: 1rem;
}
.about-stat__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: .75rem;
  background: var(--white);
  border: 1px solid var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  box-shadow: 0 1px 2px rgba(0,0,0,.05);
  flex-shrink: 0;
}
.about-stat__num { color: var(--navy); font-weight: 700; font-size: .875rem; }
.about-stat__label { color: #64748b; font-size: .75rem; }

.about-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.about-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: .75rem;
  transition: all .3s ease;
  width: 100%;
}
.about-actions .btn-about-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
}
.about-actions .btn-about-primary:hover { background: #0d9488; transform: translateY(-4px); }
.about-actions .btn-about-primary i { margin-right: .5rem; font-size: 1.25rem; }

.about-actions .btn-about-secondary {
  background: var(--white);
  border: 1px solid var(--slate-200);
  color: var(--navy);
}
.about-actions .btn-about-secondary:hover { background: var(--slate-50); }
.about-actions .btn-about-secondary i { margin-right: .5rem; color: #2563eb; font-size: 1.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: var(--teal);
  border-radius: 9999px;
  filter: blur(120px);
  opacity: .1;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand img  { height: 3rem; margin-bottom: .5rem; }
.footer-brand p    { color: var(--slate-400); font-size: .875rem; line-height: 1.625; font-weight: 300; margin-bottom: 1.5rem; }
.footer-phone      { color: var(--slate-400); font-size: .875rem; font-weight: 300; display: flex; align-items: center; gap: .5rem; margin-bottom: 1.5rem; }
.footer-phone i    { color: var(--teal); }
.footer-phone a    { font-weight: 500; transition: color .3s ease; }
.footer-phone a:hover { color: var(--teal); }

.footer-socials { display: flex; gap: .75rem; }

.social-btn {
  background: rgba(255,255,255,.05);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  transition: all .3s ease;
}
.social-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(20,184,166,.3);
}

.footer-nav-title {
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .75rem;
  margin-bottom: 1.5rem;
}

.footer-nav-list { display: flex; flex-direction: column; gap: .75rem; }

.footer-link {
  display: inline-flex;
  align-items: center;
  color: var(--slate-400);
  transition: all .3s ease;
}
.footer-link:hover { color: var(--teal); padding-left: 8px; }
.footer-link::before {
  content: '›';
  opacity: 0;
  margin-right: 0;
  font-size: 1.2em;
  transition: all .3s ease;
  display: inline-block;
  transform: translateX(-10px);
}
.footer-link:hover::before { opacity: 1; margin-right: 8px; transform: translateX(0); }

.footer-newsletter-col p { color: var(--slate-400); font-size: .875rem; margin-bottom: 1rem; font-weight: 300; }

#form-newsletter { display: flex; flex-direction: column; gap: .75rem; }

.footer-input {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white);
  width: 100%;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .875rem;
  transition: all .3s ease;
}
.footer-input::placeholder { color: #64748b; }
.footer-input:focus { border-color: var(--teal); outline: none; }

#form-newsletter button {
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  padding: .75rem;
  border-radius: .5rem;
  transition: background .3s ease;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  cursor: pointer;
}
#form-newsletter button:hover { background: #0d9488; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-copyright { color: #64748b; font-size: .75rem; text-align: center; }

.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .75rem; color: #64748b; transition: color .3s ease; }
.footer-legal a:hover { color: var(--teal); }

/* ============================================================
   OBRIGADO / PÁGINAS SECUNDÁRIAS
   ============================================================ */
.thankyou-nav {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
}
.thankyou-nav__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.thankyou-nav img { height: 2rem; }
.thankyou-nav a {
  color: #bfdbfe;
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .25rem;
  transition: color .3s ease;
}
.thankyou-nav a:hover { color: var(--white); }

.thankyou-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}

.thankyou-content { max-width: 42rem; width: 100%; margin: 0 auto; text-align: center; }

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background: #f0fdfa;
  border-radius: 9999px;
  border: 4px solid var(--teal);
  margin-bottom: 2rem;
  animation: checkPop .6s cubic-bezier(.34,1.56,.64,1) .2s both;
}
.check-icon i { color: var(--teal); font-size: 2.5rem; }

.fade-up   { animation: fadeUp .5s ease both; }
.fade-up-1 { animation-delay: .3s; }
.fade-up-2 { animation-delay: .45s; }
.fade-up-3 { animation-delay: .6s; }
.fade-up-4 { animation-delay: .75s; }

.thankyou-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.875rem;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
.thankyou-content > p {
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.625;
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.steps-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-400);
  margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 3rem; text-align: left; }

.step-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.5rem;
  border: 1px solid var(--slate-100);
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: box-shadow .3s ease, transform .3s ease;
}
.step-card:hover { box-shadow: 0 8px 20px rgba(0,0,0,.08); transform: translateY(-2px); }

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-card p:first-child { font-weight: 600; color: var(--navy); font-size: .875rem; margin-bottom: .125rem; }
.step-card p:last-child  { color: #64748b; font-size: .875rem; line-height: 1.625; }

.thankyou-cta {
  background: var(--navy);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}
.thankyou-cta p:first-child { color: #dbeafe; font-weight: 300; margin-bottom: .25rem; font-size: .875rem; }
.thankyou-cta p:last-child  { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.thankyou-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: .75rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  gap: .5rem;
  transition: background .3s, transform .3s;
}
.thankyou-cta a:hover { background: #2dd4bf; transform: translateY(-4px); }
.thankyou-cta a i { font-size: 1.25rem; }

.thankyou-footer { background: var(--slate-100); padding: 1.5rem; text-align: center; font-size: .75rem; color: var(--slate-400); }

/* ============================================================
   LEGAL PAGES (privacidade / termos)
   ============================================================ */
.legal-header { background: var(--navy); }
.legal-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-header img { height: 2.5rem; }
.legal-header a {
  color: #bfdbfe;
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color .3s ease;
}
.legal-header a:hover { color: var(--white); }

.legal-hero {
  background: var(--navy);
  padding: 4rem 1rem;
  text-align: center;
}
.legal-hero .section-label { color: rgba(255,255,255,.5); }
.legal-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}
.legal-hero p { color: rgba(191,219,254,.8); font-size: .875rem; }

.legal-body { background: var(--slate-50); padding: 4rem 1rem; }

.legal-container {
  max-width: 48rem;
  margin: 0 auto;
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,.05);
  border: 1px solid var(--slate-100);
}

.legal-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--slate-100);
}
.legal-container h2:first-child { margin-top: 0; }

.legal-container p { color: var(--text); line-height: 1.75; margin-bottom: 1rem; font-size: .9375rem; }

.legal-container ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.legal-container ul li { color: var(--text); line-height: 1.75; font-size: .9375rem; }

.legal-container a { color: var(--teal); text-decoration: underline; }
.legal-container a:hover { color: #0d9488; }

.legal-footer { background: var(--navy); padding: 1.5rem; text-align: center; }
.legal-footer p { color: rgba(255,255,255,.5); font-size: .75rem; }
.legal-footer a { color: var(--teal); transition: color .3s; }
.legal-footer a:hover { color: #2dd4bf; }

/* ============================================================
   RESPONSIVO — 768px (tablet)
   ============================================================ */
@media (min-width: 768px) {
  .site-header { padding: 6rem 1.5rem 10rem; background-attachment: fixed; }

  .btn-nav { font-size: .875rem; padding: .75rem 2rem; }

  .logo-default, .logo-hover { height: 2.5rem; }

  .hero-inner { flex-direction: row; }
  .hero-text { width: 50%; }
  .hero-title { font-size: 3.75rem; }
  .hero-subtitle { font-size: 1.125rem; }
  .hero-actions { flex-direction: row; }
  .hero-cards { display: flex; }

  .whatsapp-float img { width: 5rem; height: 5rem; }

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

  .portfolio-cta        { display: flex; }
  .portfolio-cta-mobile { display: none; }

  .process-inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 3rem 5rem; }
  #slider-container { height: 680px; }

  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { border-bottom: none; border-right: 1px solid rgba(255,255,255,.06); }
  .stat-item:last-child { border-right: none; }

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

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

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card--featured { transform: scale(1.03); }

  .guarantee-block-inner { flex-direction: row; align-items: center; }

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

  .contact-inner { grid-template-columns: 1fr 1fr; }
  .contact-glass { padding: 2.5rem; }

  .about-container { padding: 4rem; border-radius: 3rem; }
  .about-inner { grid-template-columns: 5fr 7fr; }
  .about-photo-badge { display: flex; }
  .about-content-col { text-align: left; }
  .about-stats-grid { grid-template-columns: repeat(3, 1fr); }
  .about-actions { flex-direction: row; justify-content: flex-start; }
  .about-actions a { width: auto; }

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

  .footer-bottom { flex-direction: row; }
  .footer-copyright { text-align: left; }

  .thankyou-content h1 { font-size: 2.25rem; }

  .legal-hero h1 { font-size: 3rem; }
  .legal-container { padding: 3rem; }
}

/* ============================================================
   RESPONSIVO — 1024px (desktop)
   ============================================================ */
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .about-title { font-size: 3rem; }
}
