/* ====== CSS VARIABLES ====== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&display=swap');

:root {
  --primary-color: #0A1628;
  --secondary-color: #1B2A4A;
  --accent-gold: #C8A45C;
  --accent-gold-light: #D4B36E;
  --text-light: #FFFFFF;
  --text-dark: #1a1a1a;
  --background-light: #F8F9FA;
  --background-white: #FFFFFF;
  --border-color: #E1E3E6;
  --success-color: #27AE60;
  --error-color: #EF4444;
  --warning-color: #E67E22;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.18);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.22);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', 'DM Sans', 'Segoe UI', sans-serif;
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--background-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--primary-color); }
h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1.25rem; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }

/* ====== UTILITIES ====== */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; }
.text-center { text-align: center; }
.gold { color: var(--accent-gold); }
.text-sm { font-size: 0.875rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.section { padding: 5rem 0; }
.section > .container > h2,
.section > .container > h3 { margin-bottom: 2rem; }
.section-header + * { margin-top: 0.5rem; }
.section-light { background-color: var(--background-light); }
.img-rounded { border-radius: 1rem; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header p { color: #6b7280; font-size: 1.05rem; }
.overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.3;
  text-decoration: none;
}
.btn-accent {
  background-color: var(--accent-gold);
  color: var(--primary-color);
}
.btn-accent:hover { background-color: var(--accent-gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
}
.btn-primary:hover { background-color: var(--secondary-color); transform: translateY(-2px); }
.btn-whatsapp {
  background-color: #25D366;
  color: var(--text-light);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover { background-color: #1fb855; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.45); }
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.btn-lg { padding: 1.125rem 2.75rem; font-size: 1.05rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ====== BADGES ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.badge-light {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--accent-gold);
}
.badge-gold {
  background: rgba(200,164,92,.1);
  border: 1px solid rgba(200,164,92,.25);
  color: var(--accent-gold);
}

/* ====== CHECKLIST ====== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
}
.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(200,164,92,.2);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ====== HEADER ====== */
header {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  width: 120px;
  height: auto;
}

.header-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ====== TOP BAR ====== */
.topbar {
  background-color: var(--accent-gold);
  color: var(--primary-color);
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
}

.topbar a {
  color: var(--primary-color);
  text-decoration: none;
}

.topbar a:hover {
  text-decoration: underline;
}

/* ====== HERO SECTION ====== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 5rem 0;
  position: relative;
  overflow: visible;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
}

.hero-lead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

.hero-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 100%;
}

.credential-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: var(--accent-gold);
  color: var(--primary-color);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 10;
  max-width: 180px;
}

.credential-badge .text-sm {
  display: block;
  margin-top: 0.25rem;
}

/* ====== SOCIAL PROOF STRIP ====== */
.social-proof-strip {
  background-color: var(--background-light);
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.social-proof-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.social-proof-item p {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0;
}

/* ====== URGENCY BANNER ====== */
.urgency-banner {
  background-color: var(--warning-color);
  color: var(--text-light);
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.urgency-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* ====== SERVICES CARDS ====== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--background-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--accent-gold);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card p {
  color: #6b7280;
  margin-bottom: 0;
}

/* ====== RISK CARDS ====== */
.risk-card {
  background-color: rgba(239, 68, 68, 0.05);
  border: 2px solid var(--error-color);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.risk-card:hover {
  background-color: rgba(239, 68, 68, 0.1);
  transform: translateY(-4px);
}

.risk-icon {
  font-size: 2rem;
  color: var(--error-color);
  margin-bottom: 1rem;
}

.risk-card h3 {
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.risk-card p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ====== MINI GUIDE ====== */
.mini-guide {
  background-color: var(--background-light);
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 2rem 0;
}

.mini-guide h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.guide-step {
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.guide-step p {
  color: #6b7280;
  margin-bottom: 0;
}

/* ====== COMPARISON TABLE ====== */
.comparison-section {
  background-color: var(--background-light);
  padding: 3rem 0;
}

.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
}

.comparison-table {
  width: 100%;
  min-width: 540px;
  border-collapse: collapse;
  background-color: var(--background-white);
  border-radius: 0.5rem;
  overflow: hidden;
}

.comparison-table thead {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.comparison-table th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
  background-color: var(--background-light);
}

.check-icon {
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.cross-icon {
  color: var(--error-color);
  font-weight: 700;
  font-size: 1.25rem;
}

/* ====== WHY CHOOSE US ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
}

.feature-content h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #6b7280;
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ====== PROCESS ====== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: var(--background-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  padding-top: 4rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  text-align: center;
}

.process-step p {
  color: #6b7280;
  margin-bottom: 0;
  text-align: center;
}

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial {
  background-color: var(--background-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-gold);
}

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

.testimonial-text {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-title {
  color: #6b7280;
  font-size: 0.875rem;
}

/* ====== FAQ ====== */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
}

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

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--primary-color);
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.faq-toggle {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  background-color: var(--accent-gold);
  color: var(--primary-color);
  border-radius: 50%;
  font-weight: 700;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  margin-top: 1rem;
  color: #6b7280;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ====== CTA SECTION ====== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ====== FOOTER ====== */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.footer-section a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* ====== FLOATING WHATSAPP ====== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  animation: bounce 2s infinite;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp a:hover {
  background-color: #1fa952;
  transform: scale(1.1);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ====== STICKY MOBILE CTA ====== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 1rem;
  z-index: 99;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.sticky-mobile-cta .btn {
  width: 100%;
}

/* ====== LEGACY LANDING COMPONENTS ====== */
/* Classes for: abogado-soat, abogado-comercial, accidentes-transito, transito-multas */

.top-bar {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 0.625rem 0;
  font-size: 0.8rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.top-bar-left span {
  color: var(--accent-gold);
  font-weight: 600;
}
.top-bar-right {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.top-bar-right a {
  color: var(--text-light);
  text-decoration: underline;
}

.header {
  background-color: #fff;
  padding: 0.875rem 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-area img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-color);
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: 0.75rem;
  color: #6b7280;
  letter-spacing: 0.5px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--accent-gold);
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-photo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo-card {
  position: relative;
}
.hero-photo-card img {
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  max-width: 100%;
}

.stats-bar {
  background: var(--primary-color);
  padding: 2.5rem 0;
  border-top: 3px solid var(--accent-gold);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item {
  color: #fff;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  color: #fff;
}

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

.icon-wrap {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.why-section {
  background: var(--background-light);
}
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.why-item .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-gold);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.why-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.25rem;
}
.why-item p {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 0;
}
.why-image {
  position: relative;
}
.why-image img {
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.overlay-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--accent-gold);
  color: var(--primary-color);
  padding: 1rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  line-height: 1.3;
}
.overlay-badge strong {
  display: block;
  font-size: 1.75rem;
  font-family: var(--font-heading);
}

.process-section {
  background: var(--background-light);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.step-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  padding-top: 3.5rem;
  margin-top: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent-gold);
}
.testimonial-card .stars {
  color: var(--accent-gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  color: #6b7280;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.author {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.author-info .name {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}
.author-info .role {
  font-size: 0.8rem;
  color: #6b7280;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-question .toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--accent-gold);
  color: var(--primary-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
}
.faq-item.active .toggle {
  transform: rotate(45deg);
}
.faq-answer-inner {
  padding-top: 1rem;
  color: #6b7280;
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer {
  background: var(--primary-color);
  color: rgba(255,255,255,.8);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer-line {
  margin-bottom: 0.5rem;
}
.footer-line strong {
  color: #fff;
}
.footer-line a {
  color: var(--accent-gold);
}
.footer-line a:hover {
  text-decoration: underline;
  color: var(--accent-gold);
}
.footer .divider {
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  margin: 1.25rem auto;
  opacity: 0.5;
}

.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 3rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all 0.3s ease;
  animation: floatBounce 2s infinite;
}
.floating-wa:hover {
  background: #1fb855;
  transform: scale(1.05);
  color: #fff;
}
.floating-wa svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .top-bar-right {
    flex-direction: column;
    gap: 0.25rem;
  }
  .hero-photo-wrapper {
    order: -1;
    max-width: 250px;
    margin: 0 auto 1.5rem;
  }
  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .floating-wa span {
    display: none;
  }
  .floating-wa {
    padding: 1rem;
    border-radius: 50%;
  }

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

  .floating-whatsapp {
    bottom: 100px;
  }

  .hero {
    overflow: visible;
    padding: 3rem 0 4rem;
  }

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

  .hero-content {
    order: 2;
  }

  .hero-content h1 {
    font-size: 1.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-lead {
    font-size: 1rem;
    margin-left: auto;
    margin-right: auto;
  }

  .checklist {
    align-items: center;
  }

  .checklist li {
    font-size: 0.875rem;
    text-align: left;
  }

  .hero-content .btn,
  .hero-content .btn-lg {
    width: 100%;
    max-width: 320px;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .badge {
    font-size: 0.7rem;
    padding: 0.4rem 1rem;
  }

  .hero-image {
    order: 1;
    margin-bottom: 1.5rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
    align-items: center;
  }

  .hero-image img {
    width: 100%;
  }

  .credential-badge {
    position: static;
    margin-top: 0.75rem;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .cta-section h2 {
    font-size: 1.5rem;
    word-wrap: break-word;
  }

  .cta-section p {
    font-size: 0.95rem;
  }

  .comparison-table-wrapper {
    overflow-x: visible;
    box-shadow: none;
  }

  .comparison-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: none;
    background: transparent;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .comparison-table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--background-white);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
  }

  .comparison-table tbody tr:nth-child(even) {
    background: var(--background-white);
  }

  .comparison-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 1rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.875rem;
    text-align: left;
  }

  .comparison-table td:first-child {
    background: var(--primary-color);
    color: var(--text-light);
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .comparison-table td:first-child strong {
    color: inherit;
  }

  .comparison-table td:nth-child(2)::before {
    content: 'Solo';
    font-weight: 700;
    color: var(--error-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }

  .comparison-table td:nth-child(3) {
    border-bottom: none;
  }

  .comparison-table td:nth-child(3)::before {
    content: 'Con Abogado';
    font-weight: 700;
    color: var(--success-color);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }

  .comparison-table td br {
    display: none;
  }

  .comparison-table tr:last-child td {
    border-bottom: 1px solid var(--border-color);
  }

  .comparison-table tr:last-child td:nth-child(3) {
    border-bottom: none;
  }

  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stat-number {
    font-size: 1.75rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.3rem; }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-lead {
    font-size: 0.9rem;
  }

  .hero-image {
    max-width: 220px;
  }

  .hero-content .btn,
  .hero-content .btn-lg {
    max-width: 100%;
    font-size: 0.875rem;
    padding: 0.875rem 1.25rem;
  }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  header .container {
    flex-direction: column;
    gap: 1rem;
  }

  .logo {
    width: 100px;
  }

  .floating-whatsapp {
    width: 50px;
    height: 50px;
    right: 1rem;
    bottom: 80px;
  }

  .floating-whatsapp a {
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp svg {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 3rem 0;
  }

  .credential-badge {
    position: static;
    margin-top: 0.5rem;
  }

  .process-step {
    margin-top: 2rem;
  }

  .process-step::before {
    top: -40px;
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}
