/* ============================================
   DESIGN SYSTEM — Consultoria Jurídica
   Colors: #0F2A44 (navy), #C8A45C (gold), #F7F7F7 (bg)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/caviar-dreams');

/* ---------- CSS Variables ---------- */
:root {
  --primary: #0F2A44;
  --primary-light: #1a3d5c;
  --primary-dark: #091b2e;
  --gold: #C8A45C;
  --gold-light: #d4b675;
  --gold-dark: #b08d42;
  --bg: #F7F7F7;
  --bg-white: #ffffff;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #7a7a8a;
  --text-on-dark: #e8e8f0;
  --text-on-primary: #ffffff;

  --shadow-sm: 0 2px 8px rgba(15, 42, 68, 0.06);
  --shadow-md: 0 4px 20px rgba(15, 42, 68, 0.1);
  --shadow-lg: 0 8px 40px rgba(15, 42, 68, 0.15);
  --shadow-gold: 0 4px 20px rgba(200, 164, 92, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1140px;
  --section-padding: 100px 0;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Caviar Dreams', sans-serif;
  font-weight: bold;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 600;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 20px auto 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border: none;
  border-radius: var(--radius-xl);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::before {
  opacity: 1;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(200, 164, 92, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.btn svg,
.btn i {
  width: 20px;
  height: 20px;
}

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(15, 42, 68, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

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

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

.brand-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.brand-text {
  color: var(--text-on-primary);
  font-family: 'Caviar Dreams', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:not(.btn):hover {
  color: var(--gold);
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(15, 42, 68, 0.92) 0%,
      rgba(15, 42, 68, 0.8) 50%,
      rgba(15, 42, 68, 0.7) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(200, 164, 92, 0.15);
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--text-on-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  line-height: 1.7;
  margin-bottom: 36px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
}

.hero-buttons .btn {
  flex: 1;
  padding: 16px 12px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat-number {
  font-family: 'Caviar Dreams', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-photo-wrapper {
  position: relative;
  width: 380px;
  height: 480px;
}

.hero-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-photo-frame {
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(200, 164, 92, 0.3);
  border-radius: calc(var(--radius-lg) + 6px);
  z-index: -1;
}

.hero-photo-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius-lg);
  opacity: 0.2;
  z-index: -2;
}

/* ---------- Decorative Elements ---------- */
.floating-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.floating-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  background: var(--gold);
}

.floating-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: float-slow 20s ease-in-out infinite;
}

.floating-shapes .shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  left: -50px;
  animation: float-slow 15s ease-in-out infinite reverse;
}

@keyframes float-slow {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(30px, -30px) rotate(5deg);
  }
}

/* ---------- Triggers Section ---------- */
.triggers-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.triggers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.trigger-group {
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.trigger-group:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 164, 92, 0.2);
}

.trigger-group-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(200, 164, 92, 0.15);
}

.trigger-group-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trigger-group-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.trigger-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.trigger-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-body);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
}

.trigger-link:hover {
  background: rgba(200, 164, 92, 0.08);
  color: var(--primary);
  padding-left: 22px;
}

.trigger-arrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.trigger-link:hover .trigger-arrow {
  transform: translateX(4px);
}

.trigger-see-all {
  display: inline-block;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 42, 68, 0.06);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition);
}

.trigger-see-all:hover {
  color: var(--primary);
}

/* ---------- Solution Section ---------- */
.solution {
  padding: var(--section-padding);
  background: var(--bg);
  position: relative;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solution-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.solution-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 42, 68, 0.05);
  transition: var(--transition);
}

.solution-feature:hover {
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 164, 92, 0.2);
}

.solution-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.solution-feature span {
  font-weight: 500;
  color: var(--text-dark);
}

.solution-visual {
  position: relative;
}

.solution-card-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.solution-card-stack .s-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 42, 68, 0.06);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.solution-card-stack .s-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 164, 92, 0.2);
}

.s-card-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.s-card-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.s-card-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding);
  background: var(--primary);
  color: var(--text-on-primary);
  position: relative;
  overflow: hidden;
}

.about .floating-shapes .shape {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.about-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(15, 42, 68, 0.9));
}

.about-oab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(200, 164, 92, 0.2);
  border: 1px solid rgba(200, 164, 92, 0.3);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-content h2 {
  color: var(--text-on-primary);
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.about-name {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-on-dark);
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0.9;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  background: rgba(200, 164, 92, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.about-highlight span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
}

/* ---------- Process Section ---------- */
.process {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  opacity: 0.3;
}

.process-step {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.05);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Caviar Dreams', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(15, 42, 68, 0.2);
}

.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--primary);
}

.process-step p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- Differentials Section ---------- */
.differentials {
  padding: var(--section-padding);
  background: var(--bg);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.diff-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.diff-card:hover::before {
  transform: scaleX(1);
}

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

.diff-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.05));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.6rem;
  transition: var(--transition);
}

.diff-card:hover .diff-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--gold);
}

.diff-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.diff-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Testimonials Section ---------- */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-card {
  padding: 40px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.06);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Caviar Dreams', serif;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/* ---------- FAQ Section ---------- */
.faq {
  padding: var(--section-padding);
  background: var(--bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.06);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-sm);
  border-color: rgba(200, 164, 92, 0.3);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gold-dark);
  font-size: 1.2rem;
}

.faq-item.open .faq-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--primary);
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- Final CTA Section ---------- */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta .floating-shapes .shape {
  background: var(--gold);
  opacity: 0.05;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: 2.5rem;
  color: var(--text-on-primary);
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.15rem;
  color: var(--text-on-dark);
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 40px;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: 'Caviar Dreams', serif;
  font-size: 1.1rem;
  color: var(--text-on-primary);
  font-weight: 600;
}

.footer p {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
}

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

.footer-links a:hover {
  color: var(--gold);
}

/* ---------- Floating WhatsApp ---------- */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  animation: pulse-whatsapp 2s ease-in-out infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
  }
}

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta-mobile {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(15, 42, 68, 0.97);
  backdrop-filter: blur(16px);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.sticky-cta-mobile .btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* ---------- Lead Form Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 42, 68, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.98);
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(200, 164, 92, 0.1);
  color: var(--primary);
}

.modal h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.modal-subtitle {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(15, 42, 68, 0.08);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 92, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Text Content (Privacy Policy) ---------- */
.text-section {
  padding: 60px 0 100px;
  background: var(--bg-white);
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 1.05rem;
}

.text-content h2 {
  color: var(--primary);
  font-size: 1.8rem;
  margin: 48px 0 24px;
}

.text-content h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 32px 0 16px;
}

.text-content p {
  margin-bottom: 24px;
}

.text-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.text-content li {
  margin-bottom: 8px;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered delays */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* ---------- Active Nav Link ---------- */
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

.mobile-nav a.active {
  color: var(--gold);
  padding-left: 8px;
  border-left: 3px solid var(--gold);
}

/* ---------- Subpage Hero ---------- */
.page-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0a1e33 100%);
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 42, 68, 0.3) 0%, rgba(15, 42, 68, 0.6) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.page-hero h1 {
  font-size: 2.8rem;
  color: var(--text-on-primary);
  margin-bottom: 20px;
  line-height: 1.15;
}

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

/* ---------- Services Section ---------- */
.services-section {
  padding: var(--section-padding);
  background: var(--bg-white);
}

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

.service-card {
  padding: 36px 28px;
  background: var(--bg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 42, 68, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200, 164, 92, 0.15);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200, 164, 92, 0.12), rgba(200, 164, 92, 0.04));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card>p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card-list li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 6px 0 6px 22px;
  position: relative;
  line-height: 1.5;
}

.service-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Service CTA card */
.service-card-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-cta .service-card-icon {
  background: rgba(200, 164, 92, 0.15);
}

.service-card-cta h3 {
  color: var(--text-on-primary);
}

.service-card-cta>p {
  color: var(--text-on-dark);
  opacity: 0.9;
}

.service-card-cta:hover {
  border-color: transparent;
}

.service-card-cta::before {
  display: none;
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.9rem;
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary);
  z-index: 1001;
  padding: 80px 32px 32px;
  transition: var(--transition-slow);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(200, 164, 92, 0.2);
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-visual {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 360px;
    margin: 0 auto;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .floating-whatsapp {
    display: none !important;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    align-items: center;
  }

  .hero-buttons .btn-whatsapp,
  .final-cta-buttons .btn-whatsapp {
    display: none !important;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .triggers-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-steps::before {
    display: none;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta h2 {
    font-size: 1.8rem;
  }

  .modal {
    padding: 32px 24px;
  }

  .floating-whatsapp {
    bottom: 80px;
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .sticky-cta-mobile {
    display: block;
  }

  .page-hero {
    min-height: auto;
    padding: 110px 0 60px;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 90px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-badge {
    font-size: 0.78rem;
  }

  .page-hero h1 {
    font-size: 1.7rem;
  }
}