/* ===== IMPORT BASE TOKENS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #09123a;
  --gold: #ffbb33;
  --orange: #ff7402;
  --white: #ffffff;
  --light-bg: #f5f6fa;
  --gray-100: #f0f1f5;
  --gray-200: #e2e4eb;
  --gray-400: #9a9db3;
  --gray-600: #5a5d73;
  --navy-light: #0f1d52;
  --navy-dark: #060d2a;
  --gold-soft: rgba(255,187,51,0.12);
  --orange-soft: rgba(255,116,2,0.10);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm: 0 2px 8px rgba(9,18,58,0.06);
  --shadow-md: 0 8px 32px rgba(9,18,58,0.10);
  --shadow-lg: 0 16px 48px rgba(9,18,58,0.14);
  --radius: 16px;
  --radius-sm: 10px;
}

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

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

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--orange); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.section-title { margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-600);
  max-width: 600px; line-height: 1.7; font-weight: 400;
}
.section-header { margin-bottom: 56px; }

.highlight-text {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; border-radius: 60px; font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.01em;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,116,2,0.35); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { width: 20px; height: 20px; transition: transform var(--transition); }
.btn:hover .btn-icon { transform: translateX(4px); }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: var(--transition); padding: 20px 0;
}
.header.scrolled {
  background: rgba(9,18,58,0.96); backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; }
.logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500; position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--gold); transition: var(--transition); border-radius: 2px; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 26px !important; background: var(--gold); color: var(--navy) !important; border-radius: 60px; font-weight: 600 !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange); color: var(--white) !important; transform: translateY(-1px); }
.menu-toggle { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1001; }
.menu-toggle span { width: 28px; height: 2px; background: var(--white); border-radius: 4px; transition: var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero-bg-elements { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-elements .orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.15; }
.orb-1 { width: 600px; height: 600px; background: var(--gold); top: -200px; right: -100px; }
.orb-2 { width: 400px; height: 400px; background: var(--orange); bottom: -100px; left: -100px; }
.orb-3 { width: 300px; height: 300px; background: var(--gold); bottom: 20%; right: 20%; opacity: 0.08; }
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 60px; align-items: center;
  padding-top: 110px; padding-bottom: 60px; position: relative; z-index: 2;
}
.hero-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.hero-breadcrumb a:hover { color: var(--gold); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; background: rgba(255,187,51,0.12);
  border: 1px solid rgba(255,187,51,0.25); border-radius: 60px;
  font-size: 0.82rem; font-weight: 600; color: var(--gold);
  margin-bottom: 28px; animation: fadeInUp 0.8s ease;
}
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.3); } }

.hero h1 { color: var(--white); margin-bottom: 24px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-description { color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.8; margin-bottom: 40px; max-width: 500px; animation: fadeInUp 0.8s ease 0.2s both; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.3s both; }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; animation: fadeInUp 0.8s ease 0.4s both; }
.hero-visual-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); border-radius: var(--radius);
  padding: 40px 48px; text-align: center; width: 100%; max-width: 320px;
}
.visual-icon { width: 80px; height: 80px; margin: 0 auto 16px; background: var(--gold-soft); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.visual-icon svg { width: 40px; height: 40px; color: var(--gold); }
.visual-label { color: var(--white); font-weight: 700; font-size: 1.2rem; margin-bottom: 4px; }
.visual-sub { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.hero-floating-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 320px; }
.float-tag {
  padding: 8px 16px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 60px;
  color: rgba(255,255,255,0.75); font-size: 0.8rem; font-weight: 500;
  animation: floatTag 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}
@keyframes floatTag { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* ===== PROVA SOCIAL ===== */
.social-proof { padding: 80px 0; background: var(--light-bg); }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.proof-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 28px;
  text-align: center; border: 1px solid var(--gray-200);
  transition: var(--transition); position: relative; overflow: hidden;
}
.proof-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--orange)); }
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proof-number {
  font-size: 3rem; font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 12px; font-variant-numeric: tabular-nums;
}
.proof-label { font-size: 0.9rem; color: var(--gray-600); font-weight: 500; line-height: 1.4; }
.proof-seal { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.seal-badge { width: 64px; height: 64px; background: linear-gradient(135deg, var(--gold), var(--orange)); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.seal-badge svg { width: 32px; height: 32px; color: var(--navy); }
.proof-seal .proof-label small { display: block; font-size: 0.78rem; opacity: 0.7; margin-top: 4px; }

/* ===== PARA QUEM ===== */
.for-whom { padding: 120px 0; background: var(--white); }
.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 72px; }
.criteria-card {
  padding: 40px 28px; border-radius: var(--radius); background: var(--light-bg);
  border: 1px solid transparent; transition: var(--transition); text-align: center;
}
.criteria-card:hover { border-color: var(--gold); background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.criteria-icon {
  width: 64px; height: 64px; background: var(--gold-soft); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.criteria-icon svg { width: 28px; height: 28px; color: var(--orange); }
.criteria-card h3 { font-size: 1rem; margin-bottom: 10px; }
.criteria-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* Comparison table */
.comparison-block { background: var(--light-bg); border-radius: 20px; padding: 48px; }
.comparison-header { margin-bottom: 32px; }
.comparison-header h3 { font-size: 1.4rem; margin-top: 8px; }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table th, .comparison-table td {
  padding: 14px 20px; text-align: left;
  border-bottom: 1px solid var(--gray-200); font-size: 0.9rem;
}
.comparison-table th { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); background: var(--gray-100); }
.comparison-table th:first-child { border-radius: 8px 0 0 0; }
.comparison-table th:last-child { border-radius: 0 8px 0 0; }
.comparison-table tbody tr:hover { background: rgba(255,187,51,0.06); }
.center-td { text-align: center; color: var(--gray-600); }
.highlight-col { background: rgba(255,187,51,0.08); color: var(--navy); font-weight: 600; }
.highlight-col.center-td { color: var(--navy); }
.badge-best {
  display: inline-block; padding: 2px 10px; background: var(--gold);
  color: var(--navy); border-radius: 60px; font-size: 0.7rem; font-weight: 700;
  margin-left: 8px; vertical-align: middle; text-transform: none; letter-spacing: 0;
}
.check { color: var(--orange); font-weight: 700; margin-right: 4px; }

/* ===== CHALLENGES ===== */
.challenges { padding: 120px 0; background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%); color: var(--white); }
.challenges .section-label { color: var(--gold); }
.challenges .section-title { color: var(--white); }
.challenges .section-subtitle { color: rgba(255,255,255,0.6); }
.challenges-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.challenge-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: var(--transition);
}
.challenge-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,187,51,0.25); transform: translateY(-3px); }
.challenge-icon { width: 48px; height: 48px; min-width: 48px; background: var(--gold-soft); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.challenge-icon svg { width: 22px; height: 22px; color: var(--gold); }
.challenge-content h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 8px; line-height: 1.3; }
.challenge-risk { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 10px; line-height: 1.5; }
.challenge-solution { color: rgba(255,255,255,0.75); font-size: 0.82rem; line-height: 1.5; }
.solution-tag { color: var(--gold); font-weight: 600; }

/* ===== METHODOLOGY ===== */
.methodology { padding: 120px 0; background: var(--white); }
.steps-nav {
  display: flex; gap: 0; background: var(--light-bg);
  border-radius: 60px; padding: 6px; margin-bottom: 48px;
  flex-wrap: wrap;
}
.step-nav-btn {
  flex: 1; min-width: 140px; padding: 14px 20px; border-radius: 60px;
  text-align: center; transition: var(--transition); font-size: 0.85rem;
  display: flex; flex-direction: column; gap: 2px; align-items: center;
}
.step-nav-btn.active { background: var(--navy); color: var(--white); box-shadow: var(--shadow-md); }
.step-num { font-weight: 800; font-size: 0.78rem; opacity: 0.6; }
.step-nav-btn.active .step-num { opacity: 1; color: var(--gold); }
.step-name { font-weight: 600; font-size: 0.88rem; }
.steps-content { position: relative; }
.step-panel {
  display: none; background: var(--light-bg); border-radius: 20px; padding: 56px 48px;
  flex-direction: row; gap: 48px; align-items: flex-start;
  animation: fadeInUp 0.4s ease;
}
.step-panel.active { display: flex; }
.step-panel-icon {
  width: 100px; height: 100px; min-width: 100px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 24px; display: flex; align-items: center; justify-content: center;
}
.step-panel-icon svg { width: 48px; height: 48px; color: var(--gold); }
.step-panel-content { flex: 1; }
.step-panel-content h3 { font-size: 1.5rem; margin-bottom: 16px; }
.step-panel-content p { color: var(--gray-600); line-height: 1.7; margin-bottom: 24px; }
.step-deliverables { display: flex; flex-direction: column; gap: 10px; }
.step-deliverables li {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--navy); font-weight: 500;
}
.step-deliverables li::before {
  content: ''; width: 8px; height: 8px; min-width: 8px;
  background: linear-gradient(135deg, var(--gold), var(--orange)); border-radius: 50%;
}

/* ===== TIMELINE ===== */
.timeline-sec { padding: 120px 0; background: var(--light-bg); }
.timeline-sec .section-header { text-align: center; }
.timeline-sec .section-subtitle { margin: 0 auto; }
.timeline-wrapper { background: var(--white); border-radius: 20px; padding: 48px; }
.timeline-track {
  display: grid; grid-template-columns: repeat(7, 1fr);
  position: relative; gap: 16px;
}
.timeline-track::before {
  content: ''; position: absolute; top: 20px; left: 20px; right: 20px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}
.timeline-item { display: flex; flex-direction: column; align-items: center; gap: 16px; position: relative; z-index: 1; }
.tl-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--gray-200);
  transition: var(--transition);
}
.tl-dot.active, .timeline-item:hover .tl-dot { background: linear-gradient(135deg, var(--gold), var(--orange)); border-color: transparent; box-shadow: 0 0 0 4px rgba(255,187,51,0.2); }
.tl-content { text-align: center; }
.tl-phase { font-size: 0.7rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.tl-title { font-size: 0.78rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 6px; }
.tl-duration { font-size: 0.72rem; color: var(--gray-400); font-weight: 500; }
.timeline-total {
  display: flex; align-items: center; gap: 10px; justify-content: flex-end;
  margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--gray-200);
  color: var(--gray-600); font-size: 0.95rem;
}
.timeline-total svg { width: 20px; height: 20px; color: var(--orange); }
.timeline-total strong { color: var(--navy); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 120px 0; background: var(--white); }
.testimonials-carousel { position: relative; overflow: hidden; margin-top: 48px; }
.carousel-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonial-card {
  min-width: calc(50% - 12px); background: var(--light-bg);
  border-radius: var(--radius); padding: 48px 40px;
  border: 1px solid var(--gray-200); position: relative; flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.test-quote { font-size: 6rem; color: var(--gold); font-weight: 800; line-height: 0.5; margin-bottom: 16px; display: block; opacity: 0.4; }
.testimonial-card blockquote { font-size: 1rem; line-height: 1.75; color: var(--navy); margin-bottom: 32px; font-style: italic; }
.testimonial-card blockquote strong { color: var(--orange); font-style: normal; }
.test-author { display: flex; align-items: center; gap: 16px; }
.test-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; color: var(--navy); flex-shrink: 0;
}
.test-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.test-company { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-top: 2px; }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--light-bg); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
.carousel-btn svg { width: 20px; height: 20px; color: var(--navy); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gray-200); transition: var(--transition); cursor: pointer; border: none; }
.carousel-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* ===== EXPERT ===== */
.expert { padding: 120px 0; background: linear-gradient(160deg, var(--navy-dark), var(--navy)); }
.expert-grid { display: grid; grid-template-columns: 0.5fr 1fr; gap: 80px; align-items: center; }
.expert-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.expert-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; font-weight: 800; color: var(--navy);
  box-shadow: 0 0 0 8px rgba(255,187,51,0.15);
}
.expert-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.expert-badge {
  padding: 6px 14px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 60px;
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
}
.expert-content .section-label { color: var(--gold); }
.expert-content .section-title { color: var(--white); }
.expert-role { color: var(--gold); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; margin-top: -8px; }
.expert-bio { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 1rem; margin-bottom: 32px; }
.expert-credentials { display: flex; flex-direction: column; gap: 16px; }
.credential-item {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.4;
}
.credential-item svg { width: 22px; height: 22px; color: var(--gold); min-width: 22px; margin-top: 1px; }

/* ===== SEALS ===== */
.seals { padding: 100px 0; background: var(--light-bg); }
.seals-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.seal-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 24px; text-align: center; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.seal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.seal-icon { width: 56px; height: 56px; background: var(--gold-soft); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.seal-icon svg { width: 26px; height: 26px; color: var(--orange); }
.seal-name { font-weight: 700; font-size: 0.95rem; color: var(--navy); margin-bottom: 6px; }
.seal-desc { font-size: 0.78rem; color: var(--gray-600); line-height: 1.4; }

/* ===== FAQ ===== */
.faq-sec { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1rem; font-weight: 600; color: var(--navy); background: none;
}
.faq-question:hover { color: var(--orange); }
.faq-chevron { width: 20px; height: 20px; min-width: 20px; color: var(--orange); transition: transform 0.3s ease; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 200px; padding-bottom: 24px; }
.faq-answer p { color: var(--gray-600); line-height: 1.75; font-size: 0.95rem; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--navy-dark), var(--navy));
  position: relative; overflow: hidden;
}
.contact-bg-elements { position: absolute; inset: 0; pointer-events: none; }
.c-orb { position: absolute; border-radius: 50%; filter: blur(120px); }
.c-orb-1 { width: 500px; height: 500px; background: var(--gold); opacity: 0.08; top: -200px; right: -100px; }
.c-orb-2 { width: 350px; height: 350px; background: var(--orange); opacity: 0.08; bottom: -100px; left: -80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact-info { color: var(--white); }
.contact-info .section-title { color: var(--white); margin-bottom: 20px; }
.contact-info p { color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8; margin-bottom: 48px; }
.contact-channels { display: flex; flex-direction: column; gap: 16px; }
.contact-channel {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 20px 24px;
  transition: var(--transition);
}
.contact-channel:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,187,51,0.3); transform: translateX(4px); }
.channel-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-icon.whatsapp { background: #25d366; }
.channel-icon.whatsapp svg { width: 24px; height: 24px; fill: #fff; }
.channel-icon.email { background: var(--gold-soft); }
.channel-icon.email svg { width: 22px; height: 22px; color: var(--gold); }
.channel-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
.channel-value { font-size: 0.95rem; color: var(--white); font-weight: 600; margin-top: 2px; }

/* Form */
.contact-form-wrap {
  background: var(--white); border-radius: 20px; padding: 48px 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 32px; color: var(--navy); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-600); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input {
  width: 100%; padding: 14px 18px; background: var(--light-bg);
  border: 2px solid var(--gray-200); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--navy);
  transition: var(--transition); outline: none;
}
.form-group input:focus { border-color: var(--gold); background: var(--white); }
.form-group input::placeholder { color: var(--gray-400); }
.form-success {
  display: none; align-items: center; gap: 12px; padding: 16px 20px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm); color: #15803d; font-size: 0.9rem;
  font-weight: 500; margin-top: 16px;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; min-width: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); padding: 80px 0 32px; color: rgba(255,255,255,0.6); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer-offices { margin-top: 12px; font-size: 0.8rem; opacity: 0.6; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; }
.footer-back { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-back:hover { color: var(--gold); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .seals-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin: 0 auto 40px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .challenges-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { grid-template-columns: 1fr; text-align: center; gaps: 40px; }
  .expert-grid .expert-content { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .timeline-track { grid-template-columns: repeat(4, 1fr); overflow-x: auto; }
  .timeline-track::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0; background: var(--navy);
    flex-direction: column; justify-content: center; align-items: center; gap: 32px; z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-links a { font-size: 1.2rem; color: var(--white); }
  .menu-toggle { display: flex; }
  .step-panel { flex-direction: column; padding: 36px 24px; }
  .steps-nav { overflow-x: auto; flex-wrap: nowrap; border-radius: var(--radius); }
  .step-nav-btn { min-width: 110px; }
  .testimonial-card { min-width: 100%; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .criteria-grid { grid-template-columns: 1fr; }
  .challenges-grid { grid-template-columns: 1fr; }
  .seals-grid { grid-template-columns: repeat(2, 1fr); }
  .expert-grid { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .comparison-block { padding: 28px 20px; }
  .timeline-wrapper { padding: 28px 20px; overflow-x: auto; }
  .timeline-track { min-width: 600px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .proof-grid { grid-template-columns: 1fr; }
  .seals-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
}
