/* ==========================================
   Constratégia Landing Page - Styles
   Color scheme: Navy + Gold
   ========================================== */

:root {
  --navy-dark: #0a1628;
  --navy: #0f1d32;
  --navy-light: #162a45;
  --navy-card: #1a2d47;
  --navy-border: #243a56;
  --gold: #b89a3e;
  --gold-light: #c8ab4a;
  --gold-dark: #a08630;
  --gold-gradient: linear-gradient(135deg, #b89a3e, #c8ab4a);
  --cream: #faf7f2;
  --cream-dark: #f0ebe0;
  --white: #ffffff;
  --text-light: #f5f5f5;
  --text-muted: #94a3b8;
  --text-dark: #1a1a1a;
  --text-dark-muted: #6b7280;
  --green: #22c55e;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #0d1b2e;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.gold {
  background: linear-gradient(135deg, #c8ab4a, #e0c46a, #b89a3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gold:hover {
  background-size: 200% auto;
  animation: goldShimmer 2s linear infinite;
}
@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

:focus-visible {
  outline: none;
}
input:focus-visible,
input:focus,
textarea:focus-visible,
textarea:focus,
.tf-input:focus-visible,
.tf-input:focus,
.tf-input:active,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: rgba(255,255,255,0.3) !important;
}

img { max-width: 100%; display: block; transition: transform 0.3s ease; }

a { transition: color 0.3s ease; }

/* --- Reveal animations --- */
.sobre-grid, .sobre-badges, .crescer-grid, .servicos-grid, .servicos-badges,
.testimonial-carousel, .contato-left, .contato-right, .comparativo-card, .faq-list, .cta-banner-container {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition), transform 0.3s ease;
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(184,154,62,0.08);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: filter 0.3s ease;
}
.nav-logo:hover {
  filter: brightness(1.15);
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--navy-dark);
}
.logo-text {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-light); }
.nav-cta {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #c8ab4a, #d4b85a, #c8ab4a);
  color: var(--navy-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 171, 74, 0.25);
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover {
  background: linear-gradient(135deg, #d4b85a, #e0c46a, #d4b85a);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 171, 74, 0.4);
}
.nav-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: var(--transition);
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn:hover::after { width: 300px; height: 300px; }
.btn-primary {
  background: linear-gradient(135deg, #c8ab4a, #d4b85a, #c8ab4a);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 171, 74, 0.3), 0 0 0 0 rgba(200, 171, 74, 0);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: linear-gradient(135deg, #d4b85a, #e0c46a, #d4b85a);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 171, 74, 0.4);
}
.hero-buttons .btn-primary {
  animation: ctaGlow 3s ease-in-out infinite;
}
@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,171,74,0.3); }
  50% { box-shadow: 0 4px 30px rgba(200,171,74,0.5), 0 0 60px rgba(200,171,74,0.1); }
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.btn:active { transform: translateY(1px); }
.btn-outline {
  border: 1px solid var(--navy-border);
  background: transparent;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,154,62,0.08), transparent);
  transition: left 0.5s ease;
}
.btn-outline:hover::before { left: 100%; }
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(184,154,62,0.15);
}
.btn-outline-dark {
  border: 1px solid #d1d5db;
  background: transparent;
  color: var(--text-dark);
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold {
  background: linear-gradient(135deg, #c8ab4a, #d4b85a, #c8ab4a);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(200, 171, 74, 0.25);
  position: relative;
  overflow: hidden;
}
.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-gold:hover::before { left: 100%; }
.btn-gold:hover {
  background: linear-gradient(135deg, #d4b85a, #e0c46a, #d4b85a);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(200, 171, 74, 0.4);
}
.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 18px 36px; font-size: 16px; }
.btn-arrow {
  font-size: 18px;
  display: inline-block;
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

/* ==========================================
   HERO
   ========================================== */
.hero {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 80%, rgba(184,154,62,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(22,42,69,0.3) 0%, transparent 50%),
    linear-gradient(160deg, #080e1a 0%, #0d1b2e 30%, #12243d 60%, #0f1d32 100%);
  padding: 160px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(184,154,62,0.06) 0%, transparent 55%);
  pointer-events: none;
  animation: heroGradientMove 12s ease-in-out infinite alternate;
}
@keyframes heroGradientMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -20px); }
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(22, 42, 69, 0.4) 0%, transparent 60%);
  pointer-events: none;
  animation: heroGradientMove 12s ease-in-out infinite alternate-reverse;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,154,62,0.1);
  border: 1px solid rgba(184,154,62,0.2);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.3s both;
}
.badge-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; display: inline-block; }
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 8px;
  animation: fadeInUp 1s ease 0.5s both;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .gold {
  background: linear-gradient(135deg, #c8ab4a, #e0c46a, #b89a3e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-rotating-word {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
  transition: opacity 0.4s ease;
  min-height: 1.2em;
}
.hero-rotating-word.fade-out { opacity: 0; }
.hero-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 36px;
  animation: fadeInUp 1s ease 0.8s both;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 1s ease 1.1s both; }

/* Hero visual / chart */
.hero-visual {
  position: relative;
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.chart-card {
  background: rgba(15,29,50,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  will-change: transform;
}
.chart-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184,154,62,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(184,154,62,0.1), inset 0 1px 0 rgba(255,255,255,0.08);
}
.chart-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.chart-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.03), transparent);
  pointer-events: none;
  animation: shineEffect 8s ease-in-out infinite;
}
@keyframes shineEffect {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}
.chart-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.chart-icon {
  width: 40px;
  height: 40px;
  background: rgba(184,154,62,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
}
.chart-title { color: var(--text-light); font-weight: 600; font-size: 15px; }
.chart-period { color: var(--text-muted); font-size: 12px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 160px;
  margin-bottom: 20px;
}
.bar {
  flex: 1;
  height: 0;
  background: linear-gradient(to top, var(--navy-light), var(--navy-border));
  border-radius: 4px 4px 0 0;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bar.animate { height: var(--h); }
.bar-gold.animate {
  background: var(--gold-gradient);
  box-shadow: 0 0 15px rgba(184,154,62,0.3);
  animation: barGlow 2s ease-in-out infinite alternate;
}
@keyframes barGlow {
  0% { box-shadow: 0 0 10px rgba(184,154,62,0.2); }
  100% { box-shadow: 0 0 20px rgba(184,154,62,0.4); }
}
.chart-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-value-chart { color: var(--text-light); font-size: 28px; font-weight: 700; }
.stat-label-chart { color: var(--text-muted); font-size: 12px; display: block; }
.chart-badge-green {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: var(--green);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}
.chart-badge-green::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.green-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.stat-value-chart {
  animation: countUp 1s ease-out;
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.floating-card {
  position: absolute;
  top: -10px;
  right: -20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 10px 20px;
  border-radius: 12px;
  color: var(--text-light);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  animation: floatBadge 5s ease-in-out infinite 1s;
  z-index: 5;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-6px) translateX(3px); }
}
.floating-card.card-secure {
  top: auto;
  bottom: -10px;
  left: -20px;
  right: auto;
  animation: floatSecure 5s ease-in-out infinite 2s;
}
@keyframes floatSecure {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(6px) translateX(-3px); }
}
.fc-icon { color: var(--text-muted); display: flex; align-items: center; }

/* Hero stats */
.hero-stats {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  border-top: 1px solid var(--navy-border);
  padding-top: 40px;
}
.stat-item {
  text-align: center;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 12px;
}
.stat-item:hover {
  background: rgba(184,154,62,0.05);
  transform: translateY(-2px);
}
.stat-row { display: flex; align-items: baseline; justify-content: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
  text-shadow: 0 0 20px rgba(184,154,62,0.2);
  transition: transform 0.3s ease;
}
.stat-prefix { font-size: 20px; color: var(--gold); font-weight: 300; }
.stat-plus { font-size: 20px; color: var(--gold); font-weight: 300; }
.stat-desc {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 2px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--navy-border);
  transition: height 0.3s ease;
}
.hero-stats:hover .stat-divider {
  height: 50px;
}
.hero-explore {
  text-align: center;
  margin-top: 40px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 3px;
}
.hero-explore:hover { color: var(--gold); cursor: pointer; }
.hero-explore:hover svg { transition: transform 0.5s ease-out; }
.explore-arrow { display: flex; justify-content: center; margin-top: 4px; }
.hero-explore svg, .explore-arrow svg {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ==========================================
   SOBRE
   ========================================== */
.sobre {
  padding: 110px 0 60px;
  margin-top: -30px;
  background:
    linear-gradient(to bottom, transparent 0%, var(--cream) 30px),
    radial-gradient(ellipse 50% 40% at 25% 50%, rgba(184,154,62,0.08) 0%, transparent 70%),
    linear-gradient(175deg, #faf7f2 0%, #f7f2e8 40%, #f5efe2 70%, #faf7f2 100%);
  background-color: var(--cream);
  position: relative;
  overflow: visible;
}
/* Enhanced dot pattern texture */
.sobre::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
/* Subtle gold radial glow behind photo area */
.sobre::after {
  content: '';
  position: absolute;
  top: 10%;
  left: 5%;
  width: 45%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(184,154,62,0.1) 0%, rgba(184,154,62,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.sobre-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2;
  letter-spacing: -0.8px;
  position: relative;
  display: inline-block;
  width: 100%;
}
/* Gold underline accent below title - animated on scroll */
.sobre .section-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 2px;
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sobre .revealed .section-title::after,
.sobre.revealed .section-title::after {
  width: 80px;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
.sobre-image {
  position: relative;
  padding-bottom: 40px;
}
/* Glow dourado atras da foto - enhanced opacity */
.sobre-image::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 12px;
  right: -18px;
  bottom: 16px;
  background: linear-gradient(135deg, #c8ab4a, #d4b85a, #b89a3e);
  border-radius: 20px;
  z-index: 0;
  opacity: 0.45;
  transform: rotate(3deg);
  transition: all 0.5s ease;
  filter: blur(2px);
}
.sobre-image:hover::before {
  opacity: 0.6;
  transform: rotate(5deg) scale(1.03);
  top: 20px;
  right: -22px;
  filter: blur(3px);
}
/* Gold corner accent - top left */
.sobre-image::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 36px;
  height: 36px;
  border-top: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 4px 0 0 0;
  z-index: 3;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.sobre-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: url('../img/stela.jpg') center/cover no-repeat;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.5s ease;
  z-index: 1;
}
/* Gold corner accent - bottom right */
.sobre-photo-placeholder::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 36px;
  height: 36px;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 4px 0;
  z-index: 4;
  opacity: 0.7;
  pointer-events: none;
}
.sobre-image:hover .sobre-photo-placeholder {
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: scale(1.01);
}
/* Overlay com citacao - smoother fade */
.sobre-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 28px 100px;
  background: linear-gradient(transparent 0%, rgba(0,0,0,0.6) 20%, rgba(0,0,0,0.9) 100%);
  color: white;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sobre-photo-placeholder:hover .sobre-photo-overlay {
  opacity: 1;
  transform: translateY(0);
}
.sobre-quote-icon {
  font-family: 'Cinzel', serif;
  font-size: 3.5rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(184,154,62,0.3);
}
.sobre-quote-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.95);
  font-style: italic;
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
/* Founder card - premium with gold top accent */
.founder-card {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  z-index: 2;
  transition: all 0.4s ease;
  border-top: 3px solid var(--gold);
}
.sobre-image:hover .founder-card {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}
.founder-info { display: flex; flex-direction: column; }
.founder-name { font-weight: 600; font-size: 16px; }
.founder-role { color: var(--gold); font-size: 13px; }
.founder-initials {
  position: relative;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #c8ab4a, #b89a3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(184,154,62,0.25);
}
.sobre-image:hover .founder-initials {
  transform: scale(1.12);
  box-shadow: 0 4px 14px rgba(184,154,62,0.35);
}
.founder-verified {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Text paragraphs - premium readable with staggered fade-in */
.sobre-text p {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.sobre-text.revealed p,
.revealed .sobre-text p {
  opacity: 1;
  transform: translateY(0);
}
.sobre-text.revealed p:nth-child(1),
.revealed .sobre-text p:nth-child(1) { transition-delay: 0.1s; }
.sobre-text.revealed p:nth-child(2),
.revealed .sobre-text p:nth-child(2) { transition-delay: 0.25s; }
.sobre-text.revealed p:nth-child(3),
.revealed .sobre-text p:nth-child(3) { transition-delay: 0.4s; }
/* Drop cap on first paragraph */
.sobre-text p:first-of-type::first-letter {
  font-family: var(--font-heading);
  font-size: 3.2em;
  float: left;
  line-height: 0.85;
  margin-right: 8px;
  margin-top: 4px;
  background: linear-gradient(135deg, #c8ab4a, #d4b85a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.sobre-text strong { color: var(--text-dark); }
/* Metodo card - enhanced padding and hover */
.metodo-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  border: 1px solid rgba(184, 154, 62, 0.15);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 28px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.metodo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 154, 62, 0.06), transparent);
  transition: left 0.5s ease;
}
.metodo-card:hover::before { left: 100%; }
.metodo-card:hover {
  border-color: rgba(184, 154, 62, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(184, 154, 62, 0.18);
  background: #0d1a2f;
}
.metodo-card-content { flex: 1; }
.metodo-card-label {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.metodo-card-title { color: var(--text-light); font-size: 18px; font-weight: 700; }
.metodo-card-sub { color: var(--text-muted); font-size: 13px; margin-top: 4px; }
.metodo-card-arrow {
  width: 50px;
  height: 50px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  flex-shrink: 0;
  margin-left: 20px;
  transition: all 0.3s ease;
}
.metodo-card:hover .metodo-card-arrow {
  background: var(--gold);
  color: var(--navy-dark);
  transform: translateX(5px) scale(1.05);
}
/* Badge items - interactive with staggered animation and gold divider */
.sobre-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(var(--cream), var(--cream)), linear-gradient(90deg, transparent 0%, rgba(184,154,62,0.3) 20%, rgba(184,154,62,0.5) 50%, rgba(184,154,62,0.3) 80%, transparent 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  border: 1px solid transparent;
  border-top: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  opacity: 0;
  transform: translateY(16px);
}
/* Staggered animation on scroll */
.sobre-badges.revealed .badge-item,
.revealed .badge-item {
  opacity: 1;
  transform: translateY(0);
}
.sobre-badges.revealed .badge-item:nth-child(1),
.revealed .badge-item:nth-child(1) { transition-delay: 0.05s; }
.sobre-badges.revealed .badge-item:nth-child(2),
.revealed .badge-item:nth-child(2) { transition-delay: 0.15s; }
.sobre-badges.revealed .badge-item:nth-child(3),
.revealed .badge-item:nth-child(3) { transition-delay: 0.25s; }
.sobre-badges.revealed .badge-item:nth-child(4),
.revealed .badge-item:nth-child(4) { transition-delay: 0.35s; }
.badge-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(184,154,62,0.12);
  border-color: rgba(184,154,62,0.15);
  border-top: 2px solid var(--gold);
}
.badge-item:hover .badge-icon-circle {
  background: linear-gradient(135deg, #c8ab4a, #d4b85a);
  color: white;
  box-shadow: 0 4px 14px rgba(184,154,62,0.3);
}
.badge-icon-circle {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(184,154,62,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.badge-title { font-weight: 600; font-size: 14px; }
.badge-sub { color: var(--text-dark-muted); font-size: 12px; }

/* ==========================================
   METODOLOGIA (CRESCER)
   ========================================== */
.metodologia {
  padding: 70px 0;
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 60% 50% at 50% 55%, rgba(184,154,62,0.06) 0%, transparent 70%),
    linear-gradient(160deg, #080e1a 0%, #0d1b2e 30%, #12243d 60%, #0f1d32 100%);
  position: relative;
}
.metodologia-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.section-badge-dark, .section-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}
.section-badge-dark {
  background: rgba(184, 154, 62, 0.1);
  border: 1px solid rgba(184, 154, 62, 0.3);
  color: #b89a3e;
}
.section-badge-dark svg { animation: subtlePulse 2s ease infinite; }
@keyframes subtlePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.section-badge-light {
  background: rgba(15, 29, 50, 0.05);
  border: 1px solid rgba(15, 29, 50, 0.15);
  color: #4b5563;
}
.section-title-light {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.25;
  letter-spacing: -0.5px;
}
.section-subtitle-light {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-subtitle {
  color: var(--text-dark-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.metodologia .section-title-light::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 20px auto 0;
  animation: titleLineGlow 3s ease-in-out infinite;
}
@keyframes titleLineGlow {
  0%, 100% { opacity: 0.6; width: 60px; }
  50% { opacity: 1; width: 80px; }
}
.crescer-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.crescer-card {
  perspective: 1000px;
  cursor: pointer;
  min-height: 200px;
}
.crescer-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  transform-style: preserve-3d;
}
.crescer-card.active .crescer-card-inner {
  transform: rotateY(180deg);
}
.crescer-front, .crescer-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  text-align: center;
}
.crescer-front {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s, border-image 0.4s;
}
.crescer-front::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(184,154,62,0.15) 0%, transparent 70%);
  border-radius: 50%;
  left: var(--glow-x, 50%);
  top: var(--glow-y, 50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.crescer-card:hover .crescer-front::before { opacity: 1; }
.crescer-card:hover .crescer-front,
.crescer-card:focus-visible .crescer-front {
  border: 1px solid transparent;
  background: rgba(184,154,62,0.08);
  background-clip: padding-box;
  box-shadow:
    0 0 20px rgba(184,154,62,0.15),
    inset 0 0 20px rgba(184,154,62,0.05),
    0 8px 32px rgba(0,0,0,0.3);
  outline: 1px solid rgba(184,154,62,0.5);
  outline-offset: -1px;
}
.crescer-card:focus-visible .crescer-front { outline: 2px solid var(--gold); outline-offset: 2px; }
.crescer-back {
  background:
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 10px,
      rgba(255,255,255,0.03) 10px,
      rgba(255,255,255,0.03) 20px
    ),
    linear-gradient(145deg, #d4b354 0%, #b89a3e 45%, #96792a 100%);
  border: 1px solid rgba(255,255,255,0.2);
  transform: rotateY(180deg);
  color: var(--navy-dark);
  box-shadow: 0 8px 32px rgba(184,154,62,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  padding: 20px 14px;
}
.crescer-back-icon {
  margin-bottom: 16px;
  opacity: 0.5;
  color: var(--navy);
}
.crescer-back-desc {
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--navy-dark);
  text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}
.crescer-letter {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #d4b354, #b89a3e, #d4b354);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 8px rgba(184,154,62,0.4));
}
.crescer-word {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.crescer-reveal {
  color: var(--gold);
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  letter-spacing: 0.5px;
}
.crescer-card:hover .crescer-reveal {
  opacity: 0;
}
.crescer-reveal-icon {
  opacity: 0.7;
  flex-shrink: 0;
}
/* ---- Comparativo Card (parent container) ---- */
.comparativo-card {
  background: #162133;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  overflow: hidden;
}
.comparativo-card-top {
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.comparativo-card h3 { color: var(--text-light); font-size: 18px; font-weight: 600; margin: 0; }
.comparativo-card p { color: var(--text-muted); font-size: 14px; margin: 4px 0 0; }

/* ---- Tabela comparativa (revealed content) ---- */
.comparativo-tabela {
  padding: 0 32px 36px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, padding 0.6s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.comparativo-tabela.open {
  max-height: 800px;
  opacity: 1;
  padding: 0 32px 36px;
}
.comparativo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ---- Columns (shared base) ---- */
.comparativo-col {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: #111f36;
}

/* ---- Left column (sem estrategia) ---- */
.comparativo-sem {
  background: #212334;
  border: 1px solid #4b2b38;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease 0.1s both;
}
.comparativo-sem:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(192, 57, 43, 0.15);
  border-color: #6b3b48;
}
.comparativo-sem .comparativo-col-header {
  border-bottom: 1px solid rgba(192, 57, 43, 0.1);
}

/* ---- Right column (com estrategia) ---- */
.comparativo-com {
  background: #282f38;
  border: 1px solid #595346;
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease 0.3s both;
}
.comparativo-com:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(184, 154, 62, 0.15);
  border-color: #7a7056;
}

/* ---- RECOMENDADO badge ---- */
.comparativo-badge-recomendado {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, #b89a3e, #c8ab4a);
  color: #0a1628;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 12px;
  border-radius: 0 12px 0 6px;
  z-index: 1;
  text-transform: uppercase;
}

/* ---- Column headers ---- */
.comparativo-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.comparativo-com .comparativo-col-header {
  border-bottom: 1px solid rgba(184, 154, 62, 0.1);
}
.comparativo-col-header div { display: flex; flex-direction: column; align-items: flex-start; }
.comparativo-col-header strong { color: var(--text-light); font-size: 15px; display: block; font-weight: 600; }
.comparativo-col-header div span { color: var(--text-muted); font-size: 12px; margin-top: 2px; text-align: left; }
.comparativo-com .comparativo-col-header div span { color: var(--gold); }

/* ---- Icon: red X ---- */
.comparativo-icon-x {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4b2b38;
  color: #f87171;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Icon: gold check ---- */
.comparativo-icon-check {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 154, 62, 0.15);
  color: #b89a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Column body & rows ---- */
.comparativo-col-body {
  padding: 4px 22px 16px;
}
.comparativo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.comparativo-row:last-child { border-bottom: none; }
.comparativo-row span { color: #a7a8ae; font-size: 14px; }
.comparativo-row strong { color: rgba(245, 245, 245, 0.85); font-size: 14px; font-weight: 600; }

.comparativo-value {
  text-align: right;
}
.comparativo-bar {
  width: 120px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 6px;
  overflow: hidden;
}
.comparativo-bar-fill {
  height: 100%;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.comparativo-bar-fill.gold-bar {
  background: linear-gradient(90deg, #b89a3e, #d4b85a);
  box-shadow: 0 0 8px rgba(184,154,62,0.3);
}

/* "Basica" tag - red */
.comparativo-row .tag-basica {
  color: #c0392b;
  font-weight: 500;
}

/* Right column rows: gold-tinted separator */
.comparativo-com .comparativo-row {
  border-bottom-color: rgba(184, 154, 62, 0.07);
}

/* Gold values in the right column */
.comparativo-com .comparativo-row .gold {
  color: #b89a3e;
  font-weight: 600;
}

/* ---- Disclaimer & CTA ---- */
.comparativo-disclaimer {
  text-align: center;
  color: rgba(148, 163, 184, 0.5);
  font-size: 12px;
  margin-top: 28px;
  line-height: 1.5;
}
.comparativo-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 14px auto 0;
  color: #c8ab4a;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 10px 24px;
  border: 1px solid rgba(184,154,62,0.2);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}
.comparativo-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,154,62,0.08), transparent);
  transition: left 0.5s ease;
}
.comparativo-cta:hover::before { left: 100%; }
.comparativo-cta:hover {
  border-color: var(--gold);
  color: #d4b85a;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,154,62,0.15);
}
.comparativo-cta span {
  transition: transform 0.3s ease;
}
.comparativo-cta:hover span { transform: translateX(4px); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .comparativo-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ==========================================
   SERVIÇOS - Tabs
   ========================================== */
.servicos {
  padding: 80px 0;
  background: linear-gradient(180deg, #faf8f3 0%, #f5f0e6 40%, #faf8f3 100%);
}
.servicos-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.servicos .section-title {
  margin-bottom: 52px;
}

/* ---- FLAGSHIP CARD (Mentoria) ---- */
.srv-flagship {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #ffffff, #fdfcf9);
  border: 2px solid rgba(184,154,62,0.25);
  border-radius: 24px;
  margin-bottom: 32px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(184,154,62,0.08), 0 2px 12px rgba(0,0,0,0.03);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s;
  position: relative;
}
.srv-flagship::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a08630, #b89a3e, #d4b84e, #b89a3e, #a08630);
  z-index: 3;
}
.srv-flagship:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 60px rgba(184,154,62,0.15), 0 4px 16px rgba(0,0,0,0.05);
}
.srv-flagship-img {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.srv-flagship-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.srv-flagship:hover .srv-flagship-img img {
  transform: scale(1.05);
}
.srv-flagship-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  position: relative;
}
.srv-flagship-badge {
  display: inline-block;
  width: fit-content;
  background: linear-gradient(135deg, #b89a3e, #d4b84e);
  color: #0a1628;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.srv-flagship-tag {
  display: inline-block;
  width: fit-content;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,154,62,0.3);
  background: rgba(184,154,62,0.06);
  margin-bottom: 16px;
}
.srv-flagship-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
}
.srv-flagship-desc {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.8;
  margin: 0 0 28px;
}
.srv-flagship-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.srv-flagship-includes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 14px;
  background: rgba(184,154,62,0.06);
  border: 1px solid rgba(184,154,62,0.15);
  border-radius: 10px;
}
.srv-flagship-includes span svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- SERVICE CARDS GRID ---- */
.srv-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.srv-card {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #fdfcf9);
  border: 1px solid rgba(184,154,62,0.12);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}
.srv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
}
.srv-card:hover {
  border-color: rgba(184,154,62,0.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(184,154,62,0.12), 0 4px 12px rgba(0,0,0,0.04);
}
.srv-card:hover::before {
  opacity: 1;
}
.srv-card-img {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.srv-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.srv-card:hover .srv-card-img img {
  transform: scale(1.08);
}
.srv-card-body {
  padding: 28px 28px 32px;
  text-align: left;
}
.srv-card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184,154,62,0.25);
  background: rgba(184,154,62,0.06);
  margin-bottom: 14px;
}
.srv-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.3;
}
.srv-card-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(184,154,62,0.2));
  margin-bottom: 14px;
  border-radius: 2px;
}
.srv-card-desc {
  font-size: 14px;
  color: #5a5a5a;
  line-height: 1.7;
  margin: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .srv-flagship { grid-template-columns: 1fr; }
  .srv-flagship-img { min-height: 220px; }
  .srv-flagship-body { padding: 28px 24px 32px; }
  .srv-flagship-title { font-size: 20px; }
  .srv-flagship-includes { flex-direction: column; }
  .srv-cards-grid { grid-template-columns: 1fr; }
  .srv-card-img { height: 180px; }
  .srv-card-body { padding: 24px 20px 28px; }
  .servicos { padding: 60px 0; }
  .servicos-container { padding: 0 20px; }
}


/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,154,62,0.08) 0%, transparent 70%),
    radial-gradient(circle at 20% 80%, rgba(184,154,62,0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(184,154,62,0.04) 0%, transparent 40%),
    linear-gradient(170deg, #faf7f2 0%, #f7f2e8 40%, #f5efe2 70%, #faf7f2 100%);
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(184,154,62,0.18) 50%, transparent 50%),
    radial-gradient(1px 1px at 30% 65%, rgba(184,154,62,0.12) 50%, transparent 50%),
    radial-gradient(1px 1px at 55% 25%, rgba(184,154,62,0.15) 50%, transparent 50%),
    radial-gradient(1px 1px at 70% 80%, rgba(184,154,62,0.1) 50%, transparent 50%),
    radial-gradient(1px 1px at 85% 45%, rgba(184,154,62,0.13) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 45% 90%, rgba(184,154,62,0.22) 50%, transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 10%, rgba(184,154,62,0.18) 50%, transparent 50%);
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 4px;
  height: 4px;
  background: rgba(184,154,62,0.3);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(184,154,62,0.15);
  animation: testimonialParticle2 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes testimonialParticle2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(20px, -30px); opacity: 0.7; }
}
.testimonials-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.testimonial-carousel {
  margin-top: 48px;
  overflow: hidden;
  padding-top: 8px;
}
.testimonial-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 40px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.testimonial-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(184,154,62,0.3);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 44px;
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(10,22,40,0.08), inset 0 1px 0 rgba(255,255,255,0.5);
  position: relative;
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(184,154,62,0.25), transparent 50%, rgba(184,154,62,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 50px rgba(0,0,0,0.35),
    0 0 80px rgba(184,154,62,0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
  border-color: rgba(184,154,62,0.25);
}
.testimonial-image {
  position: relative;
}
.testimonial-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: url('/img/cliente-ricardo.jpeg') center/cover no-repeat;
  border-radius: 16px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border 0.3s ease;
}
.testimonial-photo-placeholder.t2 {
  background: url('/img/cliente-fellipe-jessica.jpeg') center/cover no-repeat;
}
.testimonial-photo-placeholder.t3 {
  background: url('/img/cliente-jonathan.jpeg') center/cover no-repeat;
}
.testimonial-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 100%);
  border-radius: 0 0 16px 16px;
  pointer-events: none;
  z-index: 1;
}
.growth-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: var(--gold-gradient);
  color: var(--navy-dark);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(184,154,62,0.3);
  overflow: hidden;
}
.growth-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  animation: badgeShine 3s ease-in-out infinite;
}
@keyframes badgeShine {
  0%, 100% { left: -75%; }
  50% { left: 125%; }
}
.testimonial-quote-icon {
  font-family: 'Cinzel', serif;
  font-size: 48px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
  letter-spacing: -2px;
  transition: opacity 0.3s ease, text-shadow 0.3s ease;
}
.testimonial-card:hover .testimonial-quote-icon {
  opacity: 0.85;
  text-shadow: 0 0 20px rgba(184,154,62,0.3);
}
.testimonial-text {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  border-left: 3px solid rgba(184,154,62,0.45);
  padding-left: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.author-initials {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(184,154,62,0.25);
}
.author-name {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
}
.author-role {
  color: var(--gold);
  font-size: 13px;
  opacity: 0.85;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  filter: drop-shadow(0 0 6px rgba(184,154,62,0.5));
  transition: filter 0.3s ease;
}
.testimonial-card:hover .testimonial-stars {
  filter: drop-shadow(0 0 10px rgba(184,154,62,0.7));
}
.testimonial-stars svg:nth-child(1) { animation: starPop 0.3s ease 0.1s both; }
.testimonial-stars svg:nth-child(2) { animation: starPop 0.3s ease 0.2s both; }
.testimonial-stars svg:nth-child(3) { animation: starPop 0.3s ease 0.3s both; }
.testimonial-stars svg:nth-child(4) { animation: starPop 0.3s ease 0.4s both; }
.testimonial-stars svg:nth-child(5) { animation: starPop 0.3s ease 0.5s both; }
@keyframes starPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.testimonial-text strong, .testimonial-text b {
  color: var(--gold);
  font-weight: 600;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(184,154,62,0.3);
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-dark-muted);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
}
.carousel-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,154,62,0.08);
  box-shadow: 0 0 20px rgba(184,154,62,0.15);
}
.carousel-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.carousel-dots { display: flex; gap: 12px; align-items: center; }
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(10,22,40,0.18);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(10,22,40,0.15);
}
.dot:hover {
  background: rgba(10,22,40,0.4);
  border-color: rgba(10,22,40,0.3);
}
.dot.active {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 12px rgba(184, 154, 62, 0.5), 0 0 24px rgba(184, 154, 62, 0.2);
}

/* ==========================================
   CONSTRACLUB - Premium Redesign
   ========================================== */
.constraclub {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,154,62,0.06) 0%, transparent 70%),
    linear-gradient(170deg, #080e1a 0%, #0d1b2e 30%, #12243d 55%, #0f1f36 75%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}
.constraclub-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.constraclub-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 48px;
}
.constraclub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
  align-items: stretch;
}

/* --- Club Card Base --- */
.club-card {
  position: relative;
  background: rgba(26,45,71,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(184,154,62,0.2);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.club-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.club-card::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184,154,62,0.04), transparent);
  transition: left 0.6s ease;
  pointer-events: none;
}
.club-card:hover {
  transform: translateY(-8px) perspective(800px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(184,154,62,0.12), 0 8px 20px rgba(0,0,0,0.08);
  border-color: rgba(184,154,62,0.35);
}
.club-card:hover::before { opacity: 1; }
.club-card:hover::after { left: 100%; }

/* --- Club Card Inner Elements --- */
.club-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.club-card:hover .club-card-icon {
  transform: scale(1.08);
}
.club-card-badge {
  display: none;
}
.club-card-title {
  font-family: 'Cinzel', serif;
  color: var(--cream-dark);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: 1px;
}
.club-card-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 24px;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 280px;
}
.club-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(184,154,62,0.3);
  margin: 0 auto 22px;
}
.club-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Tier: Essencial (subtle) --- */
.club-card--essencial {
  border-color: rgba(184,154,62,0.08);
}
.club-card--essencial .club-card-icon {
  background: rgba(184,154,62,0.06);
  color: var(--gold-dark);
}
.club-card--essencial .club-card-badge {
  background: rgba(184,154,62,0.08);
  color: var(--gold);
  border: 1px solid rgba(184,154,62,0.2);
}

/* --- Tier: Estrategico (medium) --- */
.club-card--estrategico {
  border-color: rgba(184,154,62,0.18);
  box-shadow: 0 4px 28px rgba(184,154,62,0.06);
}
.club-card--estrategico .club-card-icon {
  background: rgba(184,154,62,0.1);
  color: var(--gold);
}
.club-card--estrategico .club-card-badge {
  background: var(--gold);
  color: var(--navy-dark);
}

/* --- Tier: Patrimonial (flagship) --- */
.club-card--patrimonial {
  border: 2px solid rgba(184,154,62,0.3);
  box-shadow: 0 8px 40px rgba(184,154,62,0.1), 0 2px 12px rgba(0,0,0,0.03);
  transform: scale(1.02);
}
.club-card--patrimonial::before {
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  opacity: 1;
}
.club-card--patrimonial .club-card-icon {
  background: linear-gradient(135deg, rgba(184,154,62,0.15), rgba(200,171,74,0.1));
  color: var(--gold);
  box-shadow: 0 4px 16px rgba(184,154,62,0.15);
}
.club-card--patrimonial .club-card-badge {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 2px 8px rgba(184,154,62,0.3);
}
.club-card--patrimonial:hover {
  transform: scale(1.02) translateY(-8px) perspective(800px) rotateX(2deg);
  box-shadow: 0 24px 60px rgba(184,154,62,0.18), 0 8px 24px rgba(0,0,0,0.06);
  border-color: rgba(184,154,62,0.5);
}

/* --- Club card values block (matches cc-tier-values on /constraclub) --- */
.club-card-values {
  text-align: center;
  margin: 0 0 22px;
}
.club-card-credit-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.club-card-credit-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.3px;
  color: var(--gold);
  margin-bottom: 12px;
}
.club-card-credit-cotas {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -8px;
  margin-bottom: 14px;
}
.club-card-parcela {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(184,154,62,0.3);
  border-radius: var(--radius-full);
  background: rgba(184,154,62,0.08);
}
.club-card-parcela-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.club-card-parcela-value {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--gold);
}
/* Tier-specific colors (mantém gold com nuances) */
.club-card--estrategico .club-card-credit-value,
.club-card--estrategico .club-card-parcela-value { color: var(--gold-light); }
.club-card--estrategico .club-card-parcela {
  border-color: rgba(200,171,74,0.35);
  background: rgba(200,171,74,0.1);
}
.club-card--patrimonial .club-card-credit-value,
.club-card--patrimonial .club-card-parcela-value { color: var(--gold-light); }
.club-card--patrimonial .club-card-parcela {
  border-color: rgba(212,180,74,0.4);
  background: rgba(212,180,74,0.12);
}

/* --- Featured Label (ribbon) --- */
.club-card-featured-label {
  position: absolute;
  top: 18px;
  right: -30px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(184,154,62,0.3);
}

/* --- CTA area --- */
.constraclub-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,154,62,0.3), transparent);
  margin: 0 auto 32px;
}
.constraclub-cta {
  max-width: 600px;
  margin: 0 auto;
}
.constraclub-cta-text {
  color: var(--cream-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.constraclub-cta-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 28px;
  font-style: italic;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .constraclub { padding: 60px 0; }
  .constraclub-container { padding: 0 20px; }
  .constraclub-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .club-card--patrimonial {
    transform: none;
  }
  .club-card--patrimonial:hover {
    transform: translateY(-4px);
  }
  .club-card { padding: 24px 20px; }
  .club-card-featured-label { display: none; }
}

/* ==========================================
   CONTATO - TYPEFORM MULTI-STEP (Premium)
   ========================================== */
.contato {
  padding: 0;
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(184,154,62,0.08) 0%, transparent 70%),
    linear-gradient(160deg, #faf7f2 0%, #f7f2e8 40%, #f5efe2 70%, #faf7f2 100%);
  background-color: var(--cream);
}

/* Radial gold glow in center */
.contato::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,154,62,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise texture overlay */
.contato .contato-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 0;
}
.typeform-header {
  background: transparent;
  padding: 80px 40px 0;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.typeform-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 6px 16px;
  border: 1px solid rgba(184,154,62,0.3);
  border-radius: var(--radius-full);
  background: rgba(184,154,62,0.06);
}
.typeform-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.typeform-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 16px auto 0;
}
.typeform-subtitle {
  font-size: 17px;
  color: var(--text-dark-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Progress bar - step indicator (não-arrastável) */
.typeform-progress {
  height: 4px;
  background: rgba(184,154,62,0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
}
.typeform-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-radius: var(--radius-full);
  width: 9%;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.typeform-progress-label {
  display: block;
  text-align: right;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(184,154,62,0.85);
  text-transform: uppercase;
}
/* Form body - light frosted glass */
.typeform-body {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  margin: 0 auto;
  max-width: 900px;
  border-radius: 24px;
  border: 1px solid rgba(184,154,62,0.25);
  box-shadow:
    0 8px 32px rgba(10,22,40,0.08),
    0 1px 0 rgba(255,255,255,0.6) inset;
  position: relative;
  margin-top: 40px;
  margin-bottom: 40px;
  z-index: 1;
}

/* Decorative dots around form */
.typeform-body::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(184,154,62,0.15) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}
.typeform-body::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(184,154,62,0.15) 1px, transparent 1px);
  background-size: 10px 10px;
  pointer-events: none;
}

.typeform-form {
  max-width: 640px;
  width: 100%;
  border: none;
  position: relative;
}
.typeform-form::before {
  display: none;
}

/* Steps */
.tf-step {
  display: none;
}
.tf-step.active {
  display: block;
  animation: stepFadeIn 0.4s ease;
}
.tf-step.input-focused {
  background: transparent;
  border-radius: 16px;
  transition: background 0.3s ease;
}
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes tfFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.tf-step-number {
  margin-bottom: 20px;
}
.tf-step-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(10,22,40,0.2);
}
.tf-question {
  display: block;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.tf-required {
  color: var(--gold);
  margin-left: 2px;
}

/* Text inputs - premium */
.tf-input {
  width: 100%;
  max-width: 520px;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid rgba(10,22,40,0.18);
  background: transparent;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s ease;
  margin-bottom: 28px;
}
.tf-input::placeholder {
  color: var(--gold-dark);
  opacity: 0.55;
  font-style: italic;
  font-weight: 300;
}
.tf-input:focus {
  border-bottom-color: var(--gold);
  outline: none;
}

/* Multiple choice options - card style */
.tf-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  max-width: 520px;
}
.tf-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(184,154,62,0.3);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: all 0.25s ease;
  text-align: left;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
}
.tf-option:hover {
  border-color: var(--gold);
  background: rgba(184,154,62,0.1);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,154,62,0.15);
}
.tf-option {
  position: relative;
}
.tf-option.selected {
  background: linear-gradient(135deg, rgba(184,154,62,0.15), rgba(184,154,62,0.08));
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 0 12px rgba(184,154,62,0.2);
}
.tf-option.selected::after {
  content: '\2713';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  animation: checkPop 0.3s ease forwards;
}
@keyframes checkPop {
  from { transform: translateY(-50%) scale(0); }
  to { transform: translateY(-50%) scale(1); }
}
.tf-option-key {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border: 1.5px solid rgba(184,154,62,0.5);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  transition: all 0.25s ease;
}
.tf-option.selected .tf-option-key {
  background: var(--gold-gradient);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(184,154,62,0.3);
}

/* Buttons row */
.tf-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

/* OK / Submit button - gold premium */
.tf-ok {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.tf-ok::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s ease;
}
.tf-ok:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184,154,62,0.35);
  filter: brightness(1.08);
}
.tf-ok:hover::after {
  left: 100%;
}
.tf-ok:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.tf-submit {
  padding: 14px 42px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(184,154,62,0.3);
}
.tf-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: submitShine 3s ease infinite;
}
@keyframes submitShine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}
.tf-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(184,154,62,0.4);
}

/* Back button - ghost style */
.tf-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(184,154,62,0.3);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.tf-back:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,154,62,0.08);
}

/* Inline error message */
.tf-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: -18px;
  margin-bottom: 16px;
  display: none;
}
.tf-error.visible {
  display: block;
  animation: tfFadeIn 0.3s ease;
}

/* Trust line below form */
.contato-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 0;
  color: var(--text-dark-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.contato-trust svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Success screen */
.tf-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 30px;
  animation: tfFadeIn 0.5s ease;
  position: relative;
  overflow: visible;
}
.confetti-piece {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  animation: confettiFall 3s ease-out forwards;
  opacity: 0;
}
@keyframes confettiFall {
  0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(400px) rotate(720deg); opacity: 0; }
}
.tf-success h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.tf-success p {
  color: var(--text-dark-muted);
  font-size: 16px;
  margin-bottom: 8px;
}
.tf-success .success-check {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(34,197,94,0.3);
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.success-check svg polyline, .success-check svg path {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.6s ease 0.3s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

/* Shake animation for validation */
@keyframes tfShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}
.tf-shake {
  animation: tfShake 0.4s ease;
}

/* Booking form */
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--navy); color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer {
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 8px;
}
.form-success, .guide-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 0;
}
.success-check {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 16px;
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes successPop {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-success h3, .guide-success h3 { color: var(--text-light); margin-bottom: 8px; }
.form-success p, .guide-success p { color: var(--text-muted); }

/* Guide card */
.guide-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-top: 0;
}
.guide-label {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.guide-card h3 {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 20px;
}
.guide-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.guide-list {
  list-style: none;
  margin-bottom: 28px;
}
.guide-list li {
  color: var(--text-muted);
  font-size: 15px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.guide-check {
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(34,197,94,0.15);
  border-radius: 50%;
}
.guide-check svg { flex-shrink: 0; }
.guide-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guide-form input {
  width: 100%;
  padding: 16px 18px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
}
.guide-form input::placeholder { color: var(--text-muted); }
.guide-form input:focus { outline: none; border-color: rgba(255,255,255,0.3); box-shadow: none; }

/* ==========================================
   AGENDAMENTO
   ========================================== */
.agendamento {
  padding: 100px 0;
  background: linear-gradient(170deg, var(--navy-dark) 0%, var(--navy) 100%);
}
.agendamento-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.agendamento-header { margin-bottom: 48px; }
.agendamento-subtitle {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}
.agendamento-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--navy-border);
}
.agendamento-form-wrapper {
  background: rgba(255,255,255,0.03);
  padding: 36px;
}
.agendamento-slots-wrapper {
  background: rgba(255,255,255,0.06);
  padding: 36px;
  border-left: 1px solid var(--navy-border);
}
.agendamento-form-title {
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 24px;
}
.agendamento .form-group input,
.agendamento .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--navy-light);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
}
.agendamento .form-group input::placeholder,
.agendamento .form-group textarea::placeholder { color: var(--text-muted); }
.agendamento .form-group input:focus,
.agendamento .form-group textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.3);
  box-shadow: none;
}
.agendamento .form-group textarea { resize: vertical; min-height: 80px; }
.agendamento .form-disclaimer.light { color: var(--text-muted); }
.agendamento .form-success h3 { color: var(--text-light); margin-bottom: 8px; }
.agendamento .form-success p { color: var(--text-muted); }

/* Slot picker */
.slot-picker { display: flex; flex-direction: column; }
.slot-dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.slot-date-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 6px;
  background: var(--navy-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}
.slot-date-btn:hover { border-color: var(--navy-border); color: var(--text-light); }
.slot-date-btn.active {
  background: var(--navy);
  border-color: var(--gold);
  color: var(--gold);
}
.slot-day-name { font-size: 10px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; opacity: 0.7; }
.slot-date-btn.active .slot-day-name { opacity: 1; }
.slot-day-num { font-size: 20px; font-weight: 700; line-height: 1.2; }
.slot-month { font-size: 10px; opacity: 0.7; }
.slot-date-btn.active .slot-month { opacity: 1; }
.slot-selected-date {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 12px;
  font-weight: 500;
}
.slot-times {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.slot-time-btn {
  width: 100%;
  padding: 14px;
  background: var(--navy-light);
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}
.slot-time-btn:hover { border-color: var(--navy-border); }
.slot-time-btn.active {
  background: rgba(184,154,62,0.12);
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}
.slot-loading, .slot-empty {
  color: var(--text-muted);
  font-size: 14px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E"),
    radial-gradient(ellipse at 20% 30%, rgba(184,154,62,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #080e1a 0%, #0d1b2e 50%, #0a1628 100%);
  padding: 60px 0 30px;
  backdrop-filter: blur(16px);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.2);
  position: relative;
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-border);
}
.footer-brand {}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
  margin-bottom: 20px;
}
.social-icons { display: flex; gap: 12px; }
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: rgba(184,154,62,0.15);
  border-color: rgba(184,154,62,0.3);
  box-shadow: 0 0 20px rgba(184,154,62,0.15);
  color: var(--gold);
  transform: translateY(-3px);
}
.footer-nav h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav a, .footer-nav p {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
  position: relative;
}
.footer-nav a:hover { color: var(--gold); padding-left: 8px; }
.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
  transform: translateY(-50%);
}
.footer-nav a:hover::before { width: 4px; }
.footer-nav p svg { color: var(--gold); }
.footer-secure {
  color: var(--gold);
  font-size: 12px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-contact-item {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 0;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; }
.footer-legal {
  background: rgba(184,154,62,0.03);
  border: none;
  border-top: 1px solid rgba(184,154,62,0.1);
  border-radius: 0;
  padding: 16px 24px;
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal strong { color: var(--gold); }

/* ==========================================
   RESPONSIVE
   ========================================== */
/* Floating cards do hero sobrepõem com o +127% em viewports apertados (1025-1279) */
@media (max-width: 1279px) {
  .floating-card { display: none; }
}

@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .sobre { padding: 60px 0 40px; }
  .sobre-grid { grid-template-columns: 1fr; gap: 40px; }
  .sobre-image { max-width: 100%; }
  .sobre-photo-placeholder { min-height: 400px; }
  .sobre-badges { grid-template-columns: repeat(2, 1fr); }
  .badge-item { padding: 16px 18px; }
  .sobre-text p:first-of-type::first-letter { font-size: 2.8em; }
  .crescer-grid { grid-template-columns: repeat(4, 1fr); }
  .servicos-grid { grid-template-columns: 1fr; }
  .testimonial-card { grid-template-columns: 1fr; }
  .testimonial-image { max-width: 100%; }
  .typeform-header { padding: 60px 20px 0; }
  .typeform-body { padding: 40px 20px; margin-top: 24px; margin-bottom: 24px; border-radius: 16px; }
  .typeform-body::before,
  .typeform-body::after { display: none; }
  .tf-option { padding: 14px 18px; min-height: 48px; }
  .tf-ok { padding: 14px 28px; }
  .tf-submit { padding: 16px 36px; }
  .tf-back { padding: 14px 18px; }
  .tf-input { font-size: 17px; }
  .tf-options { max-width: 100%; }
  .tf-input { max-width: 100%; }
  .agendamento-layout { grid-template-columns: 1fr; }
  .agendamento-slots-wrapper { border-left: none; border-top: 1px solid var(--navy-border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px 40px;
    gap: 16px;
    border-bottom: 1px solid var(--navy-border);
  }
  .hero { padding: 120px 0 60px; }
  .hero-container, .hero-stats, .sobre-container, .metodologia-container,
  .servicos-container, .testimonials-container,
  .agendamento-container, .footer-container {
    padding: 0 20px;
  }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .sobre { padding: 48px 0 32px; }
  .sobre-badges { grid-template-columns: 1fr; }
  .sobre-photo-placeholder { min-height: 350px; }
  .sobre-image::after { width: 28px; height: 28px; }
  .sobre-photo-placeholder::after { width: 28px; height: 28px; }
  .founder-card {
    left: 0; right: 0;
    padding: 16px 18px;
    flex-direction: column-reverse;
    text-align: center;
    gap: 10px;
  }
  .founder-info { align-items: center; }
  .founder-initials { width: 40px; height: 40px; font-size: 13px; }
  .metodo-card { padding: 22px 24px; }
  .metodo-card-arrow { width: 44px; height: 44px; }
  .badge-icon-circle { width: 42px; height: 42px; min-width: 42px; }
  .badge-item { padding: 16px 18px; gap: 12px; }
  .sobre-text p:first-of-type::first-letter { font-size: 2.5em; }
  .crescer-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .crescer-card, .crescer-card-inner { min-height: 140px; }
  .crescer-letter { font-size: 28px; }
  .crescer-word { font-size: 10px; }
  .crescer-reveal { font-size: 8px; }
  .nav-logo img { height: 60px !important; margin: -15px 0 !important; }
  .testimonial-slide { padding: 0 10px; }
  .testimonial-card { padding: 24px; gap: 20px; }
  .hero-buttons { flex-direction: column; gap: 12px; }
  .servicos-badges { flex-direction: column; gap: 12px; }
  .sbadge-divider { width: 60px; height: 1px; }
  .agendamento-form-wrapper, .agendamento-slots-wrapper { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .comparativo-card-top { flex-direction: column; text-align: center; gap: 16px; }
  .typeform-body { padding: 32px 20px; border-radius: 16px; }
  .tf-question { font-size: 18px; }
}

@media (max-width: 480px) {
  .crescer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   PREMIUM ANIMATIONS & EFFECTS
   ========================================== */

/* --- 1. Smooth page load fade-in --- */
body {
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.page-loaded {
  opacity: 1;
}

/* --- 2. Enhanced scroll reveal directions --- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.crescer-card.reveal-up {
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- 3. Cursor glow effect --- */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184,154,62,0.12) 0%, rgba(184,154,62,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  opacity: 0;
  will-change: left, top;
}
.cursor-glow.visible {
  opacity: 1;
}

/* --- 4. Typing cursor effect --- */
.hero-rotating-word {
  display: inline-block;
  position: relative;
  border-bottom: 3px solid var(--gold);
  padding-bottom: 4px;
}
.hero-rotating-word::after {
  content: '';
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--gold);
  margin-left: 4px;
  vertical-align: baseline;
  animation: typingCursorBlink 0.8s step-end infinite;
}
@keyframes typingCursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
.hero-rotating-word.fade-out::after {
  opacity: 0;
}

/* --- 5. Section dividers --- */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,154,62,0.3) 20%, rgba(184,154,62,0.5) 50%, rgba(184,154,62,0.3) 80%, transparent 100%);
  position: relative;
  overflow: visible;
}
.section-divider::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184,154,62,0.4);
}

/* Dark section divider variant */
.section-divider-dark {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(184,154,62,0.2) 20%, rgba(184,154,62,0.35) 50%, rgba(184,154,62,0.2) 80%, transparent 100%);
  position: relative;
  overflow: visible;
}
.section-divider-dark::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(184,154,62,0.4);
}

/* --- 6. Magnetic button base styles --- */
.btn-magnetic {
  transition: transform 0.2s ease;
}

/* --- 7. Parallax wrapper --- */
.hero-visual {
  will-change: transform;
}

/* ==========================================
   SCROLL PROGRESS BAR
   ========================================== */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gold-gradient);
  z-index: 9999;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ==========================================
   BACK TO TOP BUTTON
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--navy-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(184,154,62,0.3);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  box-shadow: 0 6px 24px rgba(184,154,62,0.5);
  transform: translateY(-3px);
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  animation: whatsappPulse 2s ease-in-out infinite 0.5s;
}
.whatsapp-float:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
  transform: scale(1.08);
  animation: none;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 16px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.15); }
}

/* ==========================================
   TRUST LOGOS SECTION
   ========================================== */
.trust-logos {
  background: var(--navy-dark);
  padding: 32px 40px;
  text-align: center;
}
.trust-logos-label {
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.6;
}
.trust-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 2px;
  opacity: 0.45;
  transition: opacity 0.3s ease;
}
.trust-logo-item:hover {
  opacity: 0.8;
}
.trust-logo-divider {
  width: 1px;
  height: 18px;
  background: var(--navy-border);
  opacity: 0.5;
}

/* ==========================================
   BADGE TOOLTIPS
   ========================================== */
.badge-item {
  position: relative;
}
.badge-item[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--navy-dark);
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 14px;
  border-radius: 8px;
  white-space: normal;
  width: 220px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  border: 1px solid var(--navy-border);
}
.badge-item[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--navy-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 101;
}
.badge-item[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.badge-item[data-tooltip]:hover::before {
  opacity: 1;
}

/* ==========================================
   TESTIMONIAL IMAGE HOVER ZOOM
   ========================================== */
.testimonial-image {
  overflow: hidden;
  border-radius: 16px;
}
.testimonial-image:hover .testimonial-photo-placeholder {
  transform: scale(1.07);
}
.testimonial-card:hover .testimonial-image::after {
  height: 50%;
  background: linear-gradient(to top, rgba(10,22,40,0.8) 0%, transparent 100%);
}

/* ==========================================
   ACTIVE NAV LINK HIGHLIGHT
   ========================================== */
.nav-links a.nav-active {
  color: var(--gold-light);
}
.nav-links a.nav-active::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* GSAP ScrollTrigger - initial states for elements GSAP will animate */
.srv-card-line {
  transform-origin: left center;
}

/* Metodologia: no pin, no spacer — clean scroll */

/* ==========================================
   ENHANCEMENTS - 15 MELHORIAS
   ========================================== */

/* --- #2: Cards 3D hover (Serviços) --- */
.srv-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.srv-card:hover {
  transform: translateY(-8px) perspective(800px) rotateX(2deg);
  box-shadow: 0 20px 50px rgba(184,154,62,0.12), 0 8px 20px rgba(0,0,0,0.08);
}
.srv-card:hover .srv-card-line {
  width: 60px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

/* --- #5: Carousel slide transition --- */
#carousel-track {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-slide {
  transition: opacity 0.4s ease;
}

/* --- #7: Input focus (clean, no gold glow) --- */
.tf-input:focus {
  border-bottom-color: var(--gold) !important;
  box-shadow: none !important;
  outline: none !important;
}
.tf-input:focus::placeholder {
  opacity: 0.6;
}
.tf-option:hover {
  border-color: rgba(184,154,62,0.5) !important;
  box-shadow: 0 0 20px rgba(184,154,62,0.1);
}

/* --- #8: Nav links underline animado --- */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.3s ease, left 0.3s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.nav-active::after {
  width: 100%;
  left: 0;
}

/* --- #10: Hover scale nas imagens dos cards --- */
.srv-card-img img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.srv-card:hover .srv-card-img img {
  transform: scale(1.08);
}

/* --- #11: Botão CTA ripple dourado aprimorado --- */
.btn:active::after {
  background: radial-gradient(circle, rgba(184,154,62,0.4) 0%, transparent 70%);
  width: 400px;
  height: 400px;
  transition: width 0s, height 0s;
}

/* --- #12: FAQ bounce easing --- */
.faq-answer {
  transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.3s ease;
}
.faq-item[open] .faq-answer {
  animation: faqBounceIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes faqBounceIn {
  0% { opacity: 0; transform: translateY(-8px); }
  60% { transform: translateY(2px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- #13: Hero stats glow on hover --- */
.stat-item:hover .stat-number {
  text-shadow: 0 0 20px rgba(184,154,62,0.5), 0 0 40px rgba(184,154,62,0.2);
  color: var(--gold);
  transition: all 0.3s ease;
}
.stat-item:hover .stat-plus {
  color: var(--gold);
  transition: color 0.3s ease;
}
.stat-item:hover .stat-desc {
  color: rgba(184,154,62,0.8);
  transition: color 0.3s ease;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  body { opacity: 1; transition: none; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .cursor-glow { display: none; }
  .hero-rotating-word::after { animation: none; }
  .section-divider::before { animation: none; }
  .hero-visual { will-change: auto; }
  .whatsapp-float.visible { animation: none; }
  .back-to-top { transition: opacity 0.1s ease; }
}

@media (max-width: 768px) {
  .trust-logos-row { gap: 16px; }
  .trust-logo-item { font-size: 12px; letter-spacing: 1px; }
  .trust-logo-divider { display: none; }
  .back-to-top { bottom: 90px; right: 16px; }
  .whatsapp-float { bottom: 20px; right: 16px; }
  .badge-item[data-tooltip]::after { display: none; }
  .badge-item[data-tooltip]::before { display: none; }
  .faq-container { padding: 0 20px; }
  .faq-question { font-size: 15px; padding: 18px 20px; }
  .faq-answer { padding: 0 20px 18px; }
  .footer-cta { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================
   LOADING SCREEN
   ========================================== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.loading-screen.hide {
  opacity: 0;
  transform: scale(1.05);
}
.loading-screen.gone {
  display: none;
}
.loading-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  animation: loadingPulse 1.5s ease-in-out infinite;
}
@keyframes loadingPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.08); filter: brightness(1.3); }
}
.loading-screen span {
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* ==========================================
   HAMBURGER MENU X ANIMATION
   ========================================== */
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
/* ==========================================
   FAQ SECTION
   ========================================== */
.faq {
  padding: 80px 0;
  background: var(--cream);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(184, 154, 62, 0.3);
}
.faq-item[open] {
  border-color: rgba(184, 154, 62, 0.4);
  box-shadow: 0 4px 16px rgba(184, 154, 62, 0.08);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  list-style: none;
  transition: color 0.3s ease;
  gap: 16px;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::marker {
  display: none;
  content: '';
}
.faq-item[open] .faq-question {
  color: var(--gold-dark);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(184, 154, 62, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}
.faq-answer {
  padding: 0 28px 22px;
  animation: faqSlideDown 0.3s ease;
}
.faq-answer p {
  color: var(--text-dark-muted);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}
@keyframes faqSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   ANIMATED GRADIENT ON CONTACT SECTION
   ========================================== */
.contato {
  position: relative;
  overflow: hidden;
  padding-bottom: 40px;
}
.contato::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(184, 154, 62, 0.04) 25%,
    transparent 50%,
    rgba(184, 154, 62, 0.03) 75%,
    transparent 100%
  );
  background-size: 400% 400%;
  animation: contatoGradient 12s ease infinite;
  z-index: 0;
  pointer-events: none;
}
.contato > * {
  position: relative;
  z-index: 1;
}
@keyframes contatoGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hide cursor glow on touch devices */
@media (hover: none) { .cursor-glow { display: none; } }

/* --- fadeInUp keyframe --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Text selection color --- */
::selection { background: rgba(184,154,62,0.3); color: white; }

/* ==========================================
   MICRO-INTERACTIONS (11-20)
   ========================================== */

/* 13. Card perspective on hover - srv-card */
.srv-card { transition: all 0.4s ease; }

/* 15. Sobre text paragraphs subtle hover shift */
.sobre-text p {
  transition: transform 0.3s ease;
}
.sobre-text p:hover {
  transform: translateX(4px);
}

/* 16. Crescer letter glow – handled via filter: drop-shadow in main rule */

/* 17. Nav CTA button pulse subtle */
.nav-cta { animation: ctaPulse 3s ease infinite; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(200,171,74,0.25); }
  50% { box-shadow: 0 4px 24px rgba(200,171,74,0.4); }
}

/* 18. Metodo card hover glow on arrow */
.metodo-card:hover .metodo-card-arrow {
  box-shadow: 0 0 15px rgba(184,154,62,0.3);
}

/* 19. Footer social links background on hover */
.social-link:hover {
  background: rgba(184,154,62,0.15);
}

/* 20. Smooth section transitions */
section {
  transition: opacity 0.3s ease;
}

/* 21. Hero content glowing dot decoration */
.hero-content {
  position: relative;
}
.hero-content::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -40px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px 5px rgba(184,154,62,0.2);
  animation: dotFloat 4s ease-in-out infinite;
}
@keyframes dotFloat {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(-20px); opacity: 1; }
}

/* 22. Metodologia floating particles */
.metodologia::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 4px;
  height: 4px;
  background: rgba(184,154,62,0.3);
  border-radius: 50%;
  animation: particle1 8s ease-in-out infinite;
}
.metodologia::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 3px;
  height: 3px;
  background: rgba(184,154,62,0.2);
  border-radius: 50%;
  animation: particle2 10s ease-in-out infinite;
}
@keyframes particle1 {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  25% { transform: translate(-20px, -30px); opacity: 0.8; }
  50% { transform: translate(10px, -50px); opacity: 0.4; }
  75% { transform: translate(-15px, -20px); opacity: 0.7; }
}
@keyframes particle2 {
  0%, 100% { transform: translate(0, 0); opacity: 0.2; }
  33% { transform: translate(30px, -20px); opacity: 0.6; }
  66% { transform: translate(-20px, -40px); opacity: 0.3; }
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d1b2e 0%, #162a45 50%, #0d1b2e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(184,154,62,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.cta-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 16px;
}
.cta-banner-text {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ==========================================
   HERO TRUST INDICATORS
   ========================================== */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  animation: fadeInUp 1s ease 1.1s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--gold); }
.hero-trust-divider {
  width: 1px;
  height: 16px;
  background: var(--navy-border);
}
@media (max-width: 640px) {
  .hero-trust { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero-trust-divider { display: none; }
}

/* --- Founder since styling --- */
.founder-since {
  font-size: 11px;
  color: var(--text-dark-muted);
  letter-spacing: 1px;
  display: block;
  margin-top: 2px;
}

/* --- Photo corner accents (handled in main sobre section) --- */

/* ==========================================
   FOOTER CTA & INTERACTIVE
   ========================================== */
.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(184,154,62,0.05);
  border: 1px solid rgba(184,154,62,0.12);
  border-radius: 14px;
  padding: 20px 28px;
  margin-top: 40px;
}
.footer-cta p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #c8ab4a, #d4b85a);
  color: var(--navy-dark);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,154,62,0.3);
}
.footer-cta-btn span { transition: transform 0.3s ease; }
.footer-cta-btn:hover span { transform: translateX(4px); }

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-top-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

/* ==========================================
   EBOOK / LEAD MAGNET SECTION
   ========================================== */
.ebook-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--navy-light) 50%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}
.ebook-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,154,62,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,154,62,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ebook-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(184,154,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ebook-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Book mockup */
.ebook-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.book-glow {
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,62,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.book-wrap {
  position: relative;
  width: 260px;
  height: 340px;
  perspective: 1000px;
  animation: ebookFloat 5s ease-in-out infinite;
}
@keyframes ebookFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.book-wrap::after {
  content: '';
  position: absolute;
  bottom: -24px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 20px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.5) 0%, transparent 70%);
  animation: ebookShadow 5s ease-in-out infinite;
}
@keyframes ebookShadow {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.5; }
  50% { transform: translateX(-50%) scaleX(0.8); opacity: 0.3; }
}
.book {
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateY(-18deg) rotateX(4deg);
  position: relative;
  transition: transform 0.6s ease;
  cursor: pointer;
}
.book:hover {
  transform: rotateY(-8deg) rotateX(2deg) scale(1.03);
}
.book-front {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0F1C2E 0%, #0A1220 100%);
  border-radius: 3px 8px 8px 3px;
  border: 1px solid rgba(184,154,62,0.25);
  box-shadow: 6px 6px 30px rgba(0,0,0,0.6), inset -1px 0 0 rgba(184,154,62,0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px;
  overflow: hidden;
}
.book-front::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.book-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.book-badge::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.book-title-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 0;
}
.book-title-wrap h3 {
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: var(--cream-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}
.book-title-wrap h3 .gold-line {
  color: var(--gold);
  display: block;
  margin-top: 4px;
}
.book-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  margin: 14px 0;
}
.book-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  color: rgba(196,191,181,0.7);
  line-height: 1.5;
}
.book-author {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(184,154,62,0.7);
  font-weight: 500;
}
.book-spine {
  position: absolute;
  left: -18px; top: 0; bottom: 0;
  width: 18px;
  background: linear-gradient(90deg, #070E18, #0D1828);
  border-radius: 3px 0 0 3px;
  transform: rotateY(-90deg) translateX(-50%);
  transform-origin: right center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(184,154,62,0.15);
}
.book-spine span {
  font-family: 'Cinzel', serif;
  font-size: 7px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(184,154,62,0.6);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.book-pages {
  position: absolute;
  right: -6px; top: 4px; bottom: 4px;
  width: 6px;
  background: repeating-linear-gradient(to bottom, #E8E2D6 0 1px, #D4CEC4 1px 2px);
  border-radius: 0 2px 2px 0;
  opacity: 0.6;
}
.book-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-gradient);
  color: var(--navy-dark);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(184,154,62,0.4);
}

/* Copy + Form */
.ebook-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,154,62,0.1);
  border: 1px solid rgba(184,154,62,0.25);
  padding: 7px 16px 7px 10px;
  border-radius: 40px;
  margin: 0 0 28px;
}
.ebook-eyebrow svg { width: 14px; height: 14px; fill: none; stroke: var(--gold); stroke-width: 2; }
.ebook-headline {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream-dark);
  letter-spacing: -0.5px;
  margin: 0 0 8px;
}
.ebook-headline .gold-italic { color: var(--gold); font-style: italic; }
.ebook-divider {
  width: 44px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 22px 0;
}
.ebook-lead {
  font-family: var(--font-heading);
  font-size: 19px;
  font-style: italic;
  font-weight: 400;
  color: rgba(196,191,181,0.85);
  line-height: 1.6;
  margin: 0 0 24px;
  padding-left: 18px;
  border-left: 2px solid rgba(184,154,62,0.45);
}
.ebook-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 36px;
}
.ebook-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 300;
  color: rgba(196,191,181,0.8);
  line-height: 1.5;
}
.ebook-bullet-icon {
  width: 18px; height: 18px;
  background: rgba(184,154,62,0.12);
  border: 1px solid rgba(184,154,62,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ebook-bullet-icon svg { width: 9px; height: 9px; fill: none; stroke: var(--gold); stroke-width: 2.5; }

/* Form */
.ebook-form { display: flex; flex-direction: column; gap: 12px; }
.ebook-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ebook-form-field input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,154,62,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--cream-dark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.ebook-form-field input::placeholder { color: rgba(196,191,181,0.4); }
.ebook-form-field input:focus {
  border-color: rgba(184,154,62,0.55);
  background: rgba(184,154,62,0.04);
}
.ebook-form-submit {
  width: 100%;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200% auto;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--navy-dark);
  cursor: pointer;
  transition: background-position 0.4s ease, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(184,154,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.ebook-form-submit:hover {
  background-position: right center;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(184,154,62,0.4);
}
.ebook-form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.ebook-form-submit svg { width: 16px; height: 16px; fill: none; stroke: var(--navy-dark); stroke-width: 2; }
.ebook-form-privacy {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(196,191,181,0.4);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}
.ebook-form-privacy svg { width: 12px; height: 12px; fill: none; stroke: rgba(196,191,181,0.4); stroke-width: 1.5; }
.ebook-form-error {
  display: none;
  background: rgba(220,80,80,0.1);
  border: 1px solid rgba(220,80,80,0.3);
  color: #f0a78f;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 8px;
}
.ebook-form-error.visible { display: block; }

.ebook-success {
  display: none;
  text-align: center;
  padding: 32px 0;
  animation: ebookFadeIn 0.5s ease forwards;
}
.ebook-success.visible { display: block; }
@keyframes ebookFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.ebook-success-icon {
  width: 56px; height: 56px;
  background: rgba(184,154,62,0.12);
  border: 1px solid rgba(184,154,62,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ebook-success-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 2; }
.ebook-success-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  color: var(--cream-dark);
  margin: 0 0 10px;
}
.ebook-success-title .gold-italic { font-style: italic; color: var(--gold); }
.ebook-success-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(196,191,181,0.65);
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .ebook-inner { grid-template-columns: 1fr; gap: 60px; text-align: center; }
  .ebook-mockup { order: -1; }
  .ebook-lead { text-align: left; }
  .ebook-form-row { grid-template-columns: 1fr; }
  .ebook-eyebrow { margin-left: auto; margin-right: auto; }
  .ebook-divider { margin-left: auto; margin-right: auto; }
  .ebook-bullets { text-align: left; }
}
@media (max-width: 480px) {
  .ebook-section { padding: 72px 20px; }
  .book-wrap { width: 200px; height: 260px; }
  .book-title-wrap h3 { font-size: 18px; }
}
