/* ============================================================
   PARCEIROS — Shared CSS for Speed B2B pages
   apresentacao-comercial.html + parceiros/*.html
   ============================================================ */

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

:root {
  --green: #70C700;
  --green-dark: #5aa200;
  --green-light: #B5FF58;
  --green-lighter: #f0fdf4;
  --dark: #292929;
  --dark-soft: #3a3a3a;
  --gray-900: #1a1a2e;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

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

body {
  font-family: 'Montserrat Alternates', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Antonio', 'Arial Black', sans-serif;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-family: 'Montserrat Alternates', sans-serif;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===== LOGO ===== */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-img.logo-img-sm {
  height: 32px;
}

.logo-img-white {
  filter: brightness(0) invert(1);
}

/* ===== PHOTO STYLES ===== */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin: 48px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.photo-gallery .photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.photo-gallery .photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-gallery .photo-item:hover img {
  transform: scale(1.05);
}

.photo-gallery .photo-item.photo-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 360px;
}

.photo-gallery .photo-item.photo-medium {
  min-height: 172px;
}

.photo-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-gallery .photo-item:hover .photo-item-overlay {
  opacity: 1;
}

.photo-item-overlay span {
  font-size: 0.85rem;
  font-weight: 500;
}

/* Section divider with photo */
.section-photo-divider {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.section-photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-photo-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,46,26,0.3), rgba(26,46,26,0.1));
}

/* Athlete showcase strip */
.athlete-strip {
  display: flex;
  gap: 20px;
  padding: 48px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.athlete-strip::-webkit-scrollbar { display: none; }

.athlete-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
}

.athlete-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.athlete-card:hover img {
  transform: scale(1.05);
}

.athlete-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.athlete-card-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Hero with background photo */
.hero-bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,46,26,0.92) 0%,
    rgba(26,46,26,0.8) 40%,
    rgba(26,46,26,0.6) 100%
  );
}

/* Inline section photo */
.section-inline-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.section-inline-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.section-inline-photo.tall img {
  height: 420px;
}

.section-inline-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 50%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--green) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--green) 1.5px, transparent 1.5px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
  animation: patternDrift 25s linear infinite;
}

@keyframes patternDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.04;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  background: var(--green);
}

.hero-lines::before {
  width: 200%;
  height: 1px;
  top: 40%;
  left: -50%;
  transform: rotate(-15deg);
}

.hero-lines::after {
  width: 200%;
  height: 1px;
  top: 65%;
  left: -50%;
  transform: rotate(10deg);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px;
}

.hero-logo-wrap {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
  animation: fadeInDown 1s ease-out;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero h1 span {
  color: var(--green);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out 0.7s both;
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}

.hero-cta svg { width: 18px; height: 18px; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

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

.hero-scroll-indicator svg { width: 20px; height: 20px; }

/* Hero subpage variant (shorter) */
.hero.hero-sub {
  min-height: 70vh;
}

/* ===== PROBLEMA SECTION ===== */
.problema {
  background: var(--white);
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.problema-card {
  padding: 40px 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.problema-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.problema-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-lighter), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.problema-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.problema-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.problema-stat {
  font-family: 'Antonio', sans-serif;
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.problema-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CIENCIA SECTION ===== */
.ciencia {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.ciencia::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
}

.ciencia .section-title { color: var(--white); }

.ciencia-hero-stat {
  text-align: center;
  padding: 56px 40px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: var(--radius-xl);
  margin: 48px 0 56px;
  position: relative;
}

.ciencia-hero-stat::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(34,197,94,0.3), transparent, rgba(34,197,94,0.1));
  z-index: -1;
  padding: 1px;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
}

.ciencia-hero-stat .big-number {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--green);
  line-height: 1;
  margin-bottom: 8px;
}

.ciencia-hero-stat .big-label {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}

.ciencia-hero-stat .big-source {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.evidence-card {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.evidence-card:hover {
  background: rgba(34,197,94,0.06);
  border-color: rgba(34,197,94,0.2);
  transform: translateY(-2px);
}

.evidence-card .ev-stat {
  font-family: 'Antonio', sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 8px;
}

.evidence-card .ev-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

.evidence-card .ev-source {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 10px;
}

.ciencia-footnote {
  margin-top: 40px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  font-style: italic;
}

/* ===== CONHECA / ESTRUTURA SECTION ===== */
.conheca {
  background: var(--white);
}

.conheca-intro {
  max-width: 680px;
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.feature-item {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius-lg);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-light);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-lighter), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.feature-item h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.map-placeholder {
  width: 100%;
  padding: 48px 40px;
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-500);
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--green);
  flex-shrink: 0;
}

.map-placeholder-text h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  color: var(--dark);
  font-size: 1rem;
}

.map-placeholder-text p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ===== PACOTES SECTION ===== */
.pacotes {
  background: var(--gray-50);
}

.pacotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.pacote-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pacote-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.pacote-card.featured {
  border-color: var(--green);
  position: relative;
}

.pacote-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 36px;
  transform: rotate(45deg);
  z-index: 2;
}

.pacote-header {
  padding: 32px 28px 24px;
  border-bottom: 1px solid var(--gray-100);
}

.pacote-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-lighter);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pacote-header h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.pacote-header p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.pacote-body {
  padding: 24px 28px 32px;
  flex: 1;
}

.pacote-body ul {
  list-style: none;
}

.pacote-body li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-50);
  font-size: 0.92rem;
  color: var(--gray-700);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.pacote-body li:last-child { border-bottom: none; }

.pacote-body li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--green-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2322c55e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.pacote-price {
  font-family: 'Antonio', sans-serif;
  font-size: 1.4rem;
  color: var(--green);
}

/* ===== BENEFICIOS SECTION ===== */
.beneficios {
  background: var(--white);
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin-top: 56px;
}

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

.beneficio-col {
  padding: 40px;
  border-radius: var(--radius-lg);
}

.beneficio-col.rh {
  background: var(--dark);
  color: var(--white);
}

.beneficio-col.colaborador {
  background: var(--green-lighter);
  border: 1px solid var(--green-light);
}

.beneficio-col h3 {
  font-size: 1.8rem;
  margin-bottom: 32px;
}

.beneficio-col.rh h3 { color: var(--green); }
.beneficio-col.colaborador h3 { color: var(--dark); }

.beneficio-list {
  list-style: none;
}

.beneficio-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.beneficio-list li:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.beneficio-col.colaborador .beneficio-list li:not(:last-child) {
  border-bottom-color: rgba(34,197,94,0.15);
}

.beneficio-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.beneficio-col.rh .beneficio-check {
  background: rgba(34,197,94,0.15);
}

.beneficio-col.colaborador .beneficio-check {
  background: rgba(34,197,94,0.2);
}

.beneficio-check svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

/* ===== SIMULADOR DE ROI ===== */
.simulador {
  background: var(--gray-50);
  position: relative;
}

.simulador-card {
  max-width: 900px;
  margin: 48px auto 0;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.simulador-top {
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

@media (max-width: 700px) {
  .simulador-top { grid-template-columns: 1fr; padding: 32px 24px; }
}

.sim-input-group {
  margin-bottom: 28px;
}

.sim-input-group:last-child { margin-bottom: 0; }

.sim-input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 10px;
}

.sim-input-group label span {
  color: var(--gray-500);
  font-weight: 400;
}

.sim-slider-wrap {
  position: relative;
}

.sim-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--gray-100);
  outline: none;
  cursor: pointer;
}

.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
  transition: all 0.2s ease;
}

.sim-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 14px rgba(34,197,94,0.4);
}

.sim-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(34,197,94,0.3);
}

.sim-value-display {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.sim-current-value {
  font-family: 'Antonio', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
  line-height: 1;
  margin-top: 6px;
}

.simulador-results {
  padding: 40px 48px;
  background: var(--dark);
  color: var(--white);
}

@media (max-width: 700px) {
  .simulador-results { padding: 32px 24px; }
}

.sim-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 32px;
}

.sim-result-item label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 4px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.sim-result-item .sim-result-value {
  font-family: 'Antonio', sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  line-height: 1.1;
}

.roi-gauge {
  margin-top: 16px;
}

.roi-gauge-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.roi-gauge-label span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.roi-gauge-label .roi-multiplier {
  font-family: 'Antonio', sans-serif;
  font-size: 2.2rem;
  color: var(--green);
}

.roi-bar-track {
  width: 100%;
  height: 16px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.roi-bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green), #4ade80);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.roi-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
  border-radius: 0 8px 8px 0;
}

.roi-bar-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
}

/* ===== COMO FUNCIONA ===== */
.como-funciona {
  background: var(--white);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

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

@media (max-width: 500px) {
  .steps-timeline { grid-template-columns: 1fr; }
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gray-100);
  z-index: 0;
}

@media (max-width: 860px) {
  .steps-timeline::before { display: none; }
}

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

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green-lighter);
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Antonio', sans-serif;
  font-size: 1.8rem;
  color: var(--green);
  position: relative;
}

.step-card h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 5-step timeline variant */
.steps-timeline.steps-5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 960px) {
  .steps-timeline.steps-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .steps-timeline.steps-5 { grid-template-columns: 1fr; }
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--green-lighter);
}

.proof-header {
  text-align: center;
  margin-bottom: 56px;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.proof-stat-item {
  text-align: center;
}

.proof-stat-item .ps-number {
  font-family: 'Antonio', sans-serif;
  font-size: 3rem;
  color: var(--green);
  line-height: 1;
}

.proof-stat-item .ps-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(34,197,94,0.1);
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Antonio', sans-serif;
  font-size: 1.1rem;
  color: var(--green-dark);
}

.testimonial-author-info h5 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author-info p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ===== CTA / CONTATO ===== */
.cta {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
}

.cta .section-title { color: var(--white); }

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.cta-contacts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 56px;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  color: var(--white);
}

.cta-contact-item:hover {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
}

.cta-contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-contact-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

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

.cta-contact-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-contact-text strong {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

.elayne-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 40px;
  background: linear-gradient(135deg, rgba(34,197,94,0.1), rgba(34,197,94,0.05));
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}

.elayne-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Antonio', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
}

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

.elayne-info h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.elayne-info p {
  font-size: 0.85rem;
  color: var(--green);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.3);
}

.cta-btn svg { width: 20px; height: 20px; }

/* ===== PROFILE SELECTOR (generic landing) ===== */
.perfis {
  background: var(--gray-50);
}

.perfis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.perfil-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.perfil-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green);
}

.perfil-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-lighter), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.perfil-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}

.perfil-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.perfil-card-arrow {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.3s ease;
}

.perfil-card:hover .perfil-card-arrow {
  gap: 12px;
}

.perfil-card-arrow svg {
  width: 16px;
  height: 16px;
}

/* ===== PROPOSTA DE VALOR (3 pillars) ===== */
.proposta-valor {
  background: var(--white);
}

.proposta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 56px;
}

.proposta-card {
  padding: 40px 32px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all 0.3s ease;
  text-align: center;
}

.proposta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.proposta-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-lighter), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.proposta-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--green-dark);
}

.proposta-card h3 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.proposta-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PRICING TABLE ===== */
.pricing-table-wrap {
  margin-top: 48px;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  font-size: 0.92rem;
}

.pricing-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.pricing-table tbody tr:hover {
  background: var(--green-lighter);
}

.pricing-table tbody td {
  padding: 14px 20px;
  color: var(--gray-700);
}

.pricing-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.pricing-table .price-highlight {
  font-family: 'Antonio', sans-serif;
  font-size: 1.1rem;
  color: var(--green);
}

.pricing-table .price-original {
  text-decoration: line-through;
  color: var(--gray-300);
  font-size: 0.8rem;
  margin-right: 6px;
}

/* ===== FORMATOS DE PARCERIA (empresas page) ===== */
.formatos {
  background: var(--gray-50);
}

.formatos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}

.formato-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.formato-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}

.formato-card-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.formato-card h4 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.formato-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== FLOATING NAV BAR ===== */
.ap-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
  background: rgba(26,46,26,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(34,197,94,0.1);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.ap-nav.visible {
  transform: translateY(0);
}

.ap-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ap-nav-logo {
  height: 28px;
  width: auto;
}

.ap-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ap-nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-decoration: none;
}

.ap-nav-links a:hover {
  color: var(--green);
}

.ap-nav-links .ap-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  color: white;
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 600;
  transition: all 0.2s;
}

.ap-nav-links .ap-nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .ap-nav-links a:not(.ap-nav-cta) { display: none; }
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: rgba(255,255,255,0.3);
  text-align: center;
  padding: 32px 24px;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
  .section-padding { padding: 80px 0; }
  .container { padding: 0 32px; }

  .hero h1 { font-size: clamp(2.8rem, 6vw, 4rem); }

  .problema-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .evidence-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pacotes-grid { grid-template-columns: repeat(2, 1fr); }
  .beneficios-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-timeline { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }

  .photo-gallery { gap: 12px; }
  .photo-gallery .photo-item.photo-large { min-height: 280px; }

  .athlete-strip { gap: 16px; padding: 40px 0; }
  .athlete-card { flex: 0 0 180px; }

  .section-photo-divider { height: 300px; }

  .simulador-top { gap: 32px; }

  .hero-cta, .cta-btn { padding: 18px 40px; font-size: 1.05rem; }
  .pacote-body li { padding: 12px 0; }
  .feature-item { padding: 28px 16px; }
  .step-number { width: 70px; height: 70px; font-size: 1.6rem; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }
  .container { padding: 0 24px; }

  .hero h1 { font-size: 2.6rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .logo-img { height: 40px; }

  .problema-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pacotes-grid { grid-template-columns: 1fr; }
  .beneficios-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-timeline { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .perfis-grid { grid-template-columns: repeat(2, 1fr); }

  .beneficio-col { padding: 28px 24px; }

  .proof-stats { gap: 32px; }

  .elayne-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  .elayne-info { text-align: center; }

  .cta-contacts { grid-template-columns: 1fr; }

  .simulador-top { padding: 28px 20px; gap: 24px; }
  .simulador-results { padding: 28px 20px; }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .photo-gallery .photo-item.photo-large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 220px;
  }
  .photo-gallery .photo-item.photo-medium { min-height: 160px; }

  .athlete-strip { padding: 32px 0; gap: 12px; }
  .athlete-card { flex: 0 0 160px; }

  .section-photo-divider { height: 240px; }
  .section-inline-photo img { height: 240px; }
  .section-inline-photo.tall img { height: 280px; }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-padding { padding: 48px 0; }

  .hero h1 { font-size: 2rem; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-timeline { grid-template-columns: 1fr; }
  .perfis-grid { grid-template-columns: 1fr; }

  .photo-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-gallery .photo-item.photo-large {
    grid-column: span 1;
    min-height: 200px;
  }
  .photo-gallery .photo-item.photo-medium { min-height: 180px; }

  .athlete-card { flex: 0 0 140px; }

  .section-photo-divider { height: 180px; }

  .proof-stats { gap: 20px; }
  .proof-stat-item .ps-number { font-size: 2.4rem; }

  .sim-results-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== PRINT ===== */
@media print {
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }
  body { font-size: 11pt; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero { min-height: auto; padding: 60px 0; page-break-after: always; }
  .hero-bg-pattern, .hero-glow, .hero-lines, .hero-scroll-indicator { display: none !important; }
  .section-padding { padding: 48px 0; page-break-inside: avoid; }
  .hero-cta, .cta-btn { display: none; }
  .ap-nav { display: none; }
  @page { margin: 1.5cm; }
}
