/* ============================================
   VARIABLES CSS - PALETA DE COLORES CPG
   ============================================ */
:root {
  /* Colores principales */
  --bg-dark: #050b1a;
  --bg-dark-alt: #0b1224;
  --text-light: #f9fafb;
  --text-muted: #9ca3af;
  --gold: #f4b73b;
  --gold-hover: #f7c765;
  --border-soft: #1f2933;
  --danger: #f87171;
  --accent-green: #22c55e;
  
  /* Espaciado */
  --container-max-width: 1200px;
  --section-padding-desktop: 100px;
  --section-padding-mobile: 64px;
  
  /* Transiciones */
  --transition-base: 0.2s ease;
}

/* ============================================
   RESET Y BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

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

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.hidden {
  display: none !important;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 11, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 100;
  padding: 20px 0;
}

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

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--gold);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-base);
}

.nav-link:hover {
  color: var(--gold);
}

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

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

/* ============================================
   BOTONES
   ============================================ */
.btn-primary {
  background-color: var(--gold);
  color: #111827;
  padding: 0.9rem 1.6rem;
  border-radius: 0.375rem;
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 183, 59, 0.3);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

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

.btn-block {
  width: 100%;
  display: block;
}

.btn-secondary {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

.btn-secondary:hover {
  color: var(--gold-hover);
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  transition: color var(--transition-base);
}

.btn-text:hover {
  color: var(--text-light);
}

.btn-header {
  white-space: nowrap;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #050b1a 0%, #0b1224 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(244, 183, 59, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(244, 183, 59, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(5, 11, 26, 0.4) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text-light) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  text-align: left;
}

.hero-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-feature span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
}

/* ============================================
   SECCIONES
   ============================================ */
.section {
  padding: var(--section-padding-desktop) 0;
  background-color: var(--bg-dark);
}

.section-alt {
  background-color: var(--bg-dark-alt);
}

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

.section-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-cta {
  text-align: center;
  margin-top: 64px;
}

.section-cta-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============================================
   COMPAÑÍA
   ============================================ */
.company-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.company-block {
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.company-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
}

.company-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.company-text:last-child {
  margin-bottom: 0;
}

.company-text-intro {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
}

.company-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.company-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   ESTRATEGIAS
   ============================================ */
.strategies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.strategy-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  transition: all var(--transition-base);
}

.strategy-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.strategy-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.strategy-icon svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.strategy-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

.strategy-subtitle {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}

.strategy-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.strategy-features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.strategy-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.strategy-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.strategy-link {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-base);
}

.strategy-link:hover {
  color: var(--gold-hover);
}

/* ============================================
   VENTAJAS
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.advantage-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.advantage-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.advantage-icon svg {
  width: 100%;
  height: 100%;
  color: var(--gold);
}

.advantage-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-light);
}

.advantage-description {
  color: var(--text-muted);
  line-height: 1.7;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(244, 183, 59, 0.05);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gold);
  color: #111827;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.process-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* Awards */
.awards-section {
  margin: 64px 0;
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.awards-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
}

.award-placeholder {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  opacity: 0.7;
}

/* ============================================
   CASOS
   ============================================ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.case-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.case-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.case-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

.case-amount {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.case-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.case-metric {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.metric-label {
  color: var(--text-muted);
  font-weight: 500;
}

.metric-value {
  color: var(--text-light);
  font-weight: 600;
}

.disclaimer-box {
  padding: 32px;
  background: rgba(248, 113, 113, 0.05);
  border: 1px solid rgba(248, 113, 113, 0.2);
  border-radius: 8px;
  margin: 48px 0;
}

.disclaimer-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.disclaimer-text strong {
  color: var(--danger);
}

/* ============================================
   LEGAL
   ============================================ */
.legal-content {
  max-width: 1000px;
  margin: 0 auto;
}

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

.legal-item {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
}

.legal-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.legal-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.legal-text p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.legal-links {
  padding: 48px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  text-align: center;
}

.legal-links-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 32px;
}

.legal-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.legal-link {
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-base);
  display: block;
}

.legal-link:hover {
  background: rgba(244, 183, 59, 0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark-alt);
  border-top: 1px solid var(--border-soft);
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-column {
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-base);
}

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

.footer-description {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer-regulatory {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
  text-align: center;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-disclaimer {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================
   MODALES
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  z-index: 200;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 201;
  padding: 20px;
  overflow-y: auto;
}

.modal-content {
  background: #ffffff;
  border-radius: 12px;
  max-width: 560px;
  width: 100%;
  padding: 48px 40px;
  position: relative;
  color: #1f2937;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 28px;
  color: #6b7280;
  cursor: pointer;
  transition: color var(--transition-base);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  color: #1f2937;
}

.modal-header {
  margin-bottom: 32px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Formulario de verificación */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.checkbox-group {
  display: block;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all var(--transition-base);
}

.checkbox-label:hover {
  border-color: var(--gold);
  background: rgba(244, 183, 59, 0.02);
}

.checkbox-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  margin-top: 2px;
}

.checkbox-input:checked + .checkbox-custom {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-input:checked + .checkbox-custom::after {
  content: '✓';
  color: #111827;
  font-weight: 700;
  font-size: 16px;
}

.checkbox-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.checkbox-text strong {
  color: #111827;
  font-weight: 700;
}

.required {
  color: var(--danger);
  font-weight: 700;
}

.link-inline {
  color: var(--gold);
  text-decoration: underline;
}

.link-inline:hover {
  color: var(--gold-hover);
}

.modal-info {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
}

.modal-info-icon {
  width: 20px;
  height: 20px;
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-info-text {
  flex: 1;
  font-size: 0.875rem;
  color: #1e40af;
  line-height: 1.6;
}

/* Modal de calificación exitosa */
.modal-success {
  text-align: center;
  margin-bottom: 32px;
}

.modal-success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-success-icon svg {
  width: 36px;
  height: 36px;
  color: white;
  stroke-width: 3;
}

.benefits-list {
  margin-bottom: 32px;
}

.benefits-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
}

.benefits-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-items li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 6px;
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 2px;
  stroke-width: 3;
}

.benefits-items span {
  flex: 1;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

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

/* Modal de rechazo */
.modal-rejection {
  text-align: center;
  margin-bottom: 32px;
}

.modal-rejection-icon {
  width: 64px;
  height: 64px;
  background: #fef2f2;
  border: 2px solid var(--danger);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.modal-rejection-icon svg {
  width: 36px;
  height: 36px;
  color: var(--danger);
  stroke-width: 2;
}

.rejection-explanation {
  margin-bottom: 24px;
}

.rejection-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.rejection-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  margin: 16px 0 12px;
}

.rejection-text {
  color: #6b7280;
  line-height: 1.7;
  font-size: 0.95rem;
}

.rejection-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.rejection-list li {
  color: #374151;
  font-size: 0.9rem;
  line-height: 1.6;
  padding-left: 8px;
}

.rejection-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  margin-bottom: 24px;
}

.rejection-note-icon {
  width: 20px;
  height: 20px;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 2px;
}

.rejection-note-text {
  flex: 1;
  font-size: 0.875rem;
  color: #92400e;
  line-height: 1.6;
}

.rejection-note-text strong {
  color: #78350f;
}

.redirect-text {
  font-size: 0.875rem;
  color: #6b7280;
  text-align: center;
}

#countdown {
  font-weight: 700;
  color: var(--danger);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  /* Header */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: rgba(5, 11, 26, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    padding: 32px;
    transition: left 0.3s ease;
    border-top: 1px solid var(--border-soft);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .btn-mobile-menu {
    display: flex;
  }
  
  .btn-header {
    display: none;
  }
  
  /* Hero */
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  /* Sección */
  .section {
    padding: var(--section-padding-mobile) 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Grids */
  .company-grid,
  .advantages-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }
  
  .strategies-grid,
  .cases-grid,
  .awards-grid,
  .legal-links-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-ctas {
    width: 100%;
  }
  
  .hero-ctas .btn-primary {
    width: 100%;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .modal-content {
    padding: 32px 24px;
  }
  
  .modal-title {
    font-size: 1.5rem;
  }
}
