/*
 * ============================================================
 * CLUBE S+ SAÚDE — Landing Page de Captação de Parceiros
 * Design: "Trust Gradient" — Editorial Premium
 * ============================================================
 *
 * COMO EDITAR CORES:
 * Altere as variáveis abaixo em :root para mudar toda a paleta.
 *
 * COMO EDITAR FONTES:
 * Troque 'Quicksand' pelo nome da fonte desejada (e atualize o <link> no HTML).
 */

/* ==================== VARIÁVEIS GLOBAIS ==================== */
:root {
  --brand-blue: #0052CC;
  --brand-green: #00B84C;
  --brand-teal: #008C8C;
  --brand-dark: #141E32;
  --brand-white: #FFFFFF;
  --brand-bg-light: #FAFBFC;
  --brand-border: #f0f0f0;
  --text-primary: #141E32;
  --text-secondary: rgba(20, 30, 50, 0.6);
  --text-muted: rgba(20, 30, 50, 0.4);
  --font-family: 'Quicksand', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--brand-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul { list-style: none; }

/* ==================== UTILITÁRIOS ==================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.brand-gradient {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 50%, var(--brand-green) 100%);
}

.brand-gradient-text {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-teal) 50%, var(--brand-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 1rem;
}

.section-label .line {
  width: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

.section-spacing {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-spacing { padding: 7rem 0; }
}

@media (min-width: 1024px) {
  .section-spacing { padding: 8rem 0; }
}

/* ==================== GRADIENT BAR (topo) ==================== */
.gradient-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-teal) 50%, var(--brand-green) 100%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 4px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.header-logo img {
  height: 3.5rem;
  width: auto;
}

.header-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .header-nav { display: flex; }
}

.header-nav a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(20, 30, 50, 0.8);
  position: relative;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: var(--brand-blue);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  transition: width 0.3s ease;
}

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

/* Botão CTA no header: sem sublinhado, texto branco */
.header-nav a.btn-cta {
  color: var(--brand-white);
}

.header-nav a.btn-cta::after {
  display: none;
}

.header-nav a.btn-cta:hover {
  color: var(--brand-white);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--brand-white);
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.2);
  transform: translateY(-2px);
}

.btn-cta-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Mobile menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn { display: none; }
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid #f0f0f0;
  padding: 1rem 1.5rem;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(20, 30, 50, 0.8);
  padding: 0.5rem 0;
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
  background: var(--brand-bg-light);
}

.hero-bg-symbol {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.03;
  background-size: 600px;
  background-repeat: no-repeat;
  background-position: center right;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
  }
}

.hero-content { position: relative; z-index: 10; }

.hero-headline {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(20, 30, 50, 0.7);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(20, 30, 50, 0.8);
}

.hero-check svg {
  width: 20px;
  height: 20px;
  color: var(--brand-green);
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 0.5rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid rgba(20, 30, 50, 0.1);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: rgba(0, 82, 204, 0.3);
  color: var(--brand-blue);
}

/* Hero image area */
.hero-image-wrapper {
  position: relative;
}

.hero-blob-1 {
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,82,204,0.08), rgba(0,184,76,0.08));
  filter: blur(48px);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: -3rem;
  left: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,184,76,0.06), rgba(0,82,204,0.06));
  filter: blur(48px);
  pointer-events: none;
}

.hero-image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 82, 204, 0.1);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* Floating cards */
.floating-card {
  position: absolute;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .floating-card { display: flex; }
}

.floating-card-bottom {
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1rem;
}

.floating-card-top {
  top: -1rem;
  right: -1rem;
  padding: 0.75rem;
}

.floating-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.floating-card-icon-sm {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: rgba(0, 184, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-card-icon-sm svg {
  width: 20px;
  height: 20px;
  color: var(--brand-green);
}

.floating-card-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card-text span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-teal);
}

.floating-card-text-sm strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);
}

.floating-card-text-sm span {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--brand-teal);
}

/* Floating health icons */
.floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  display: none;
}

@media (min-width: 1024px) {
  .floating-icons { display: block; }
}

.floating-icon {
  position: absolute;
  animation: floatUpDown 6s ease-in-out infinite;
}

.floating-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.floating-icon-box svg {
  width: 24px;
  height: 24px;
}

/* ==================== BENEFÍCIOS ==================== */
.benefits {
  position: relative;
  background: white;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, transparent 40%, rgba(0,82,204,0.02) 60%, rgba(0,184,76,0.02) 80%, transparent 100%);
  pointer-events: none;
}

.benefits-header {
  max-width: 40rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .benefits-header { margin-bottom: 5rem; }
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.benefit-card {
  position: relative;
  background: white;
  border-radius: 0.75rem;
  border: 1px solid #f0f0f0;
  padding: 2rem;
  transition: all 0.4s ease;
}

.benefit-card:hover {
  box-shadow: 0 20px 40px rgba(0, 82, 204, 0.05);
  border-color: rgba(0, 82, 204, 0.1);
  transform: translateY(-4px);
}

.benefit-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card-icon {
  transform: scale(1.05);
}

.benefit-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
  stroke-width: 1.8;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

.benefit-card-accent {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  border-radius: 9999px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-card-accent {
  opacity: 1;
}

/* ==================== COMO FUNCIONA ==================== */
.how-it-works {
  background: var(--brand-bg-light);
  position: relative;
  overflow: hidden;
}

.how-header {
  max-width: 40rem;
  margin-left: auto;
  text-align: right;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .how-header { margin-bottom: 5rem; }
}

.how-header .section-label {
  justify-content: flex-end;
}

.steps-list {
  max-width: 40rem;
}

.step-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

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

.step-number {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 82, 204, 0.15);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 3.75rem;
  background: linear-gradient(180deg, rgba(0,82,204,0.2), rgba(0,184,76,0.2));
  margin: 0.5rem 0;
}

.step-content {
  padding-bottom: 2.5rem;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== ESTATÍSTICAS ==================== */
.stats {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: var(--brand-dark);
}

@media (min-width: 768px) {
  .stats { padding: 7rem 0; }
}

.stats-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background: linear-gradient(135deg, var(--brand-blue) 0%, transparent 50%, var(--brand-green) 100%);
  pointer-events: none;
}

.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }
}

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

.stat-value {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-value .stat-suffix {
  font-size: 0.7em;
  opacity: 0.8;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==================== DEPOIMENTOS ==================== */
.testimonials {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .testimonials { padding: 7rem 0; }
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 50, 0.75);
}

.testimonials .container {
  position: relative;
  z-index: 10;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-label {
  color: var(--brand-green);
  justify-content: center;
}

.testimonials-header .section-title {
  color: white;
}

.testimonial-carousel {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
}

.testimonial-quote-icon {
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  opacity: 0.1;
}

@media (min-width: 768px) {
  .testimonial-quote-icon { left: -2rem; }
}

.testimonial-quote-icon svg {
  width: 64px;
  height: 64px;
  color: white;
}

.testimonial-content {
  text-align: center;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .testimonial-content { padding: 0 3rem; }
}

.testimonial-text {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 2rem;
  min-height: 7.5rem;
  transition: opacity 0.5s ease;
}

.testimonial-author strong {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.875rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

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

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}

.testimonial-dot {
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  width: 2rem;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.testimonial-dot:not(.active) {
  width: 0.5rem;
  background: rgba(255, 255, 255, 0.3);
}

.testimonial-dot:not(.active):hover {
  background: rgba(255, 255, 255, 0.5);
}

/* ==================== FAQ ==================== */
.faq {
  position: relative;
  background: white;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,82,204,0.015) 100%);
  pointer-events: none;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .faq-header { margin-bottom: 5rem; }
}

.faq-header .section-label {
  justify-content: center;
}

.faq-header .section-subtitle {
  max-width: 36rem;
  margin: 0 auto;
}

.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
  background: white;
  border-radius: 1rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 40px rgba(0, 82, 204, 0.03);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.open {
  background: rgba(0, 82, 204, 0.02);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

.faq-question:hover .faq-question-text {
  color: var(--brand-blue);
}

.faq-question-left {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-right: 1rem;
}

.faq-question-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(0, 82, 204, 0.4);
  margin-top: 0.125rem;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.faq-question-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.faq-chevron {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: #f0f0f0;
}

.faq-item.open .faq-chevron {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  transform: rotate(180deg);
}

.faq-chevron svg {
  width: 16px;
  height: 16px;
  color: rgba(20, 30, 50, 0.5);
  transition: color 0.3s ease;
}

.faq-item.open .faq-chevron svg {
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}

.faq-item.open .faq-answer {
  max-height: 15rem;
  opacity: 1;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 4rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
}

.faq-cta p {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.faq-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.faq-cta a:hover {
  color: var(--brand-teal);
}

/* ==================== FORMULÁRIO DE CONTATO ==================== */
.contact {
  position: relative;
  background: white;
  overflow: hidden;
}

.contact-bg-symbol {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 33%;
  height: 50%;
  opacity: 0.02;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
  }
}

.contact-info { position: relative; z-index: 10; }

.contact-trust-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-trust-item span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(20, 30, 50, 0.7);
}

.contact-meeting-img {
  margin-top: 2.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.05);
  display: none;
}

@media (min-width: 1024px) {
  .contact-meeting-img { display: block; }
}

.contact-meeting-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Form */
.contact-form {
  background: var(--brand-bg-light);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

@media (min-width: 768px) {
  .contact-form { padding: 2.5rem; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}

.form-group { display: flex; flex-direction: column; }

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-group label .optional {
  font-weight: 500;
  color: rgba(20, 30, 50, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #e0e0e0;
  background: white;
  color: var(--text-primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(20, 30, 50, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(0, 82, 204, 0.4);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23141E32' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: none;
  min-height: 6rem;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 0.75rem;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 4rem 2rem;
}

.form-success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.form-success-icon svg {
  width: 40px;
  height: 40px;
  color: white;
}

.form-success h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.form-success p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.form-success button {
  background: none;
  border: none;
  color: var(--brand-blue);
  font-weight: 700;
  font-family: var(--font-family);
  font-size: 1rem;
  cursor: pointer;
}

.form-success button:hover {
  text-decoration: underline;
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--brand-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-gradient-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-teal), var(--brand-green));
}

.footer-inner {
  padding: 4rem 0 5rem;
}

@media (min-width: 768px) {
  .footer-inner { padding: 5rem 0; }
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

.footer-brand img {
  height: 3.5rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: white;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--brand-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== ANIMAÇÕES ==================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
  25% { transform: translateY(-12px) rotate(2deg); opacity: 0.8; }
  50% { transform: translateY(-6px) rotate(-1deg); opacity: 0.7; }
  75% { transform: translateY(-14px) rotate(1deg); opacity: 0.85; }
}

.animate-on-scroll {
  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);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

.animate-on-scroll.from-right {
  transform: translateX(30px);
}

.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
.delay-600 { transition-delay: 600ms; }
