/* CSS Variables */
:root {
  --c-primary: #0B2545;
  --c-accent: #1D81F2;
  --c-gold: #D4AF37;
  --c-bg: #F5F7FA;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 24px;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-primary);
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Watercolor indigo texture overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(29, 129, 242, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(11, 37, 69, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.2;
  font-weight: 700;
}

p, li {
  line-height: 1.6;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .constellation-layer {
    transform: none !important;
  }
}

/* Mobile Menu Button */
.mobile-menu-btn {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  padding: 0.5rem;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--c-primary);
}

.mobile-menu-btn:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
}

.menu-icon,
.close-icon {
  width: 24px;
  height: 24px;
}

.hidden {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Sidebar */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 320px;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(245, 247, 250, 0.95);
  border-right: 1px solid rgba(11, 37, 69, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.sidebar.open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .sidebar {
    transform: translateX(0);
  }
}

.sidebar-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
}

/* Sidebar Brand */
.sidebar-brand {
  margin-bottom: 3rem;
  text-align: center;
}

.brand-logo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 10rem;
  height: auto;
  max-height: 8rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-fallback {
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
}

.brand-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.brand-subtitle {
  font-size: 0.9rem;
  color: rgba(11, 37, 69, 0.7);
  line-height: 1.4;
}

/* Sidebar Navigation */
.sidebar-nav {
  flex: 1;
}

.nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: var(--c-primary);
  font-weight: 500;
  transition: all 0.2s ease;
}

.nav-link:hover {
  background: rgba(11, 37, 69, 0.05);
  color: var(--c-accent);
}

.nav-link.active {
  background: var(--c-accent);
  color: white;
  box-shadow: var(--shadow-lg);
}

.nav-icon {
  width: 20px;
  height: 20px;
  stroke-width: 1px;
}

/* Sidebar Social */
.sidebar-social {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 37, 69, 0.1);
}

.social-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(11, 37, 69, 0.7);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: 0.75rem;
  background: rgba(11, 37, 69, 0.05);
  color: rgba(11, 37, 69, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(11, 37, 69, 0.1);
  color: var(--c-accent);
}

.social-link.whatsapp:hover {
  color: #25D366;
}

.social-link.instagram:hover {
  color: #E4405F;
}

.social-link.tiktok:hover {
  color: #000000;
}

.social-link.telegram:hover {
  color: #0088CC;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Sidebar Footer */
.sidebar-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(11, 37, 69, 0.1);
}

.sidebar-footer p {
  font-size: 0.75rem;
  color: rgba(11, 37, 69, 0.6);
  text-align: center;
  line-height: 1.4;
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 30;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .mobile-overlay {
    display: none;
  }
}

/* Main Content */
.main-content {
  margin-left: 0;
  min-height: 100vh;
}

@media (min-width: 1024px) {
  .main-content {
    margin-left: 320px;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5rem 1.5rem 2rem;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 0 1.5rem;
  }
}

.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 37, 69, 0.9) 0%,
    rgba(29, 129, 242, 0.75) 50%,
    rgba(212, 175, 55, 0.65) 100%
  );
}

@media (max-width: 768px) {
  .hero-overlay {
    background: linear-gradient(
      135deg,
      rgba(11, 37, 69, 0.95) 0%,
      rgba(29, 129, 242, 0.8) 50%,
      rgba(212, 175, 55, 0.7) 100%
    );
  }
}

/* Constellation Layer */
.constellation-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.15s ease-out;
}

.constellation-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.6);
  animation: pulse 2s infinite;
}

.constellation-dot.small {
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.4);
}

.constellation-dot.medium {
  width: 6px;
  height: 6px;
  background: rgba(212, 175, 55, 0.5);
}

.constellation-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  color: white;
  max-width: 1200px;
  width: 100%;
}

.hero-text {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-text {
    margin-bottom: 4rem;
  }
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.title-line {
  display: block;
  margin-bottom: 0.5rem;
}

.title-line.gold {
  color: var(--c-gold);
}

.hero-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    padding: 0;
  }
}

/* Hero CTA */
.hero-cta {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hero-cta {
    margin-bottom: 4rem;
  }
}

.cta-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold));
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

@media (min-width: 640px) {
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.cta-button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.cta-button::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;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-icon {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
}

.cta-text-mobile {
  display: inline;
}

.cta-text-full {
  display: none;
}

@media (min-width: 640px) {
  .cta-text-mobile {
    display: none;
  }
  
  .cta-text-full {
    display: inline;
  }
}

.cta-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0;
  }
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .benefit-card {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}

.benefit-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  color: var(--c-gold);
  margin: 0 auto 0.75rem;
  stroke-width: 1px;
}

@media (min-width: 768px) {
  .benefit-icon {
    margin-bottom: 1rem;
  }
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .benefit-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.benefit-description {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .benefit-description {
    font-size: 1rem;
  }
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: rgba(11, 37, 69, 0.8);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.6;
}

.section-subtitle-special {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

/* Method Section */
.method-section {
  background: white;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.method-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: all 0.3s ease;
}

.method-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(29, 129, 242, 0.2);
}

.method-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.method-icon {
  background: rgba(29, 129, 242, 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.method-card:hover .method-icon {
  background: rgba(29, 129, 242, 0.2);
}

.method-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
  stroke-width: 1px;
}

.method-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.method-claim {
  color: var(--c-accent);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.method-description {
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.6;
}

.method-note {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  max-width: 64rem;
  margin: 0 auto;
}

.method-note p {
  color: rgba(11, 37, 69, 0.9);
  line-height: 1.6;
  font-size: 1.125rem;
}

/* Mentoría Section */
.mentoria-section {
  background: rgba(245, 247, 250, 0.5);
}

/* Diagnostic Card */
.diagnostic-card {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.2);
  margin-bottom: 3rem;
  text-align: center;
}

.diagnostic-header {
  margin-bottom: 2rem;
}

.diagnostic-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.2);
  color: var(--c-gold);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.diagnostic-badge svg {
  width: 20px;
  height: 20px;
}

.diagnostic-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.diagnostic-description {
  font-size: 1.125rem;
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.6;
  max-width: 32rem;
  margin: 0 auto 2rem;
}

.diagnostic-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .diagnostic-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.diagnostic-stat {
  text-align: center;
}

.diagnostic-stat svg {
  width: 24px;
  height: 24px;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
}

.diagnostic-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-gold);
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.diagnostic-cta:hover {
  background: rgba(212, 175, 55, 0.9);
  box-shadow: var(--shadow-xl);
}

.diagnostic-cta svg {
  width: 20px;
  height: 20px;
}

/* Program Details */
.mentoria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mentoria-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.program-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
}

.program-header {
  text-align: center;
  margin-bottom: 2rem;
}

.program-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.program-subtitle {
  color: rgba(11, 37, 69, 0.7);
  margin-bottom: 1.5rem;
}

.program-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.program-stat {
  text-align: center;
}

.program-stat svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
  margin: 0 auto 0.75rem;
}

.program-pricing {
  text-align: center;
  margin-bottom: 2rem;
}

.price-value {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}

.price-label {
  color: var(--c-accent);
  font-weight: 500;
}

.price-note {
  font-size: 0.875rem;
  color: rgba(11, 37, 69, 0.6);
  margin-top: 0.25rem;
}

.program-note {
  background: rgba(11, 37, 69, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(11, 37, 69, 0.1);
  margin-bottom: 1.5rem;
}

.program-note p {
  font-size: 0.875rem;
  color: rgba(11, 37, 69, 0.8);
  text-align: center;
}

.program-cta {
  width: 100%;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.program-cta svg {
  width: 20px;
  height: 20px;
}

/* Benefits List */
.benefits-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.benefit-item .benefit-icon {
  background: rgba(29, 129, 242, 0.1);
  padding: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  margin: 0;
}

.benefit-item .benefit-icon svg {
  width: 20px;
  height: 20px;
  color: var(--c-accent);
}

.benefit-item .benefit-title {
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.benefit-item .benefit-description {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Process Flow */
.process-flow {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.1);
  margin-bottom: 3rem;
}

.process-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.process-step {
  text-align: center;
}

.step-number {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--c-gold);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step-title {
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.step-description {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Social Proof */
.social-proof {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.1);
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.proof-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1.5rem;
}

.proof-description {
  font-size: 1.125rem;
  color: rgba(11, 37, 69, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: rgba(11, 37, 69, 0.7);
}

@media (max-width: 768px) {
  .proof-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.proof-stat {
  text-align: center;
}

/* Mapa Section */
.mapa-section {
  background: white;
}

.mapa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .mapa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Current State */
.current-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
  margin-bottom: 2rem;
}

.current-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.status-icon {
  padding: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.status-icon.available {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
}

.status-icon.coming-soon {
  background: rgba(212, 175, 55, 0.2);
  color: var(--c-gold);
}

.status-icon svg {
  width: 24px;
  height: 24px;
}

.current-title,
.future-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
}

.current-description,
.future-description {
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.current-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-accent);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.current-cta:hover {
  background: rgba(29, 129, 242, 0.9);
}

.current-cta svg {
  width: 20px;
  height: 20px;
}

/* Mockup Preview */
.mockup-preview {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.2);
  text-align: center;
}

.mockup-container {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mockup-card-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mockup-card-fallback {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
}

.mockup-label {
  font-size: 0.75rem;
  color: rgba(11, 37, 69, 0.6);
}

/* Future Features */
.future-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(29, 129, 242, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 2rem;
}

.future-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.future-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
}

.future-feature span {
  color: rgba(11, 37, 69, 0.8);
}

/* Development Info */
.development-info {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
}

.development-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.development-description {
  color: rgba(11, 37, 69, 0.7);
  line-height: 1.6;
}

/* App Integration */
.app-integration {
  margin-top: 4rem;
  text-align: center;
}

.app-root {
  background: rgba(11, 37, 69, 0.05);
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(11, 37, 69, 0.1);
  max-width: 64rem;
  margin: 0 auto;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.integration-placeholder {
  color: rgba(11, 37, 69, 0.6);
  font-style: italic;
}

.integration-note {
  font-size: 0.875rem;
}

/* Sobre Mí Section */
.sobre-mi-section {
  background: rgba(245, 247, 250, 0.5);
}

.sobre-mi-subtitle {
  font-size: 1.125rem;
  color: rgba(11, 37, 69, 0.7);
  font-style: italic;
  margin-bottom: 0.5rem;
}

.sobre-mi-years {
  font-size: 1rem;
  color: rgba(11, 37, 69, 0.6);
}

.sobre-mi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .sobre-mi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Photo */
.sobre-mi-photo {
  text-align: center;
}

.photo-container {
  width: 20rem;
  height: 20rem;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.2), rgba(212, 175, 55, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid white;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.photo-fallback {
  font-size: 4rem;
}

.photo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  animation: pulse 3s infinite;
}

.photo-quote {
  font-size: 0.875rem;
  color: rgba(11, 37, 69, 0.6);
  font-style: italic;
}

/* Bio */
.sobre-mi-bio {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-text {
  font-size: 1.125rem;
  color: rgba(11, 37, 69, 0.9);
  line-height: 1.6;
}

.philosophy-card {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(29, 129, 242, 0.1);
}

.philosophy-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.philosophy-text {
  color: rgba(11, 37, 69, 0.9);
  line-height: 1.6;
  font-style: italic;
}

/* Timeline */
.timeline-section {
  margin-bottom: 4rem;
}

.timeline-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.timeline-subtitle {
  text-align: center;
  color: rgba(11, 37, 69, 0.7);
  margin-bottom: 3rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

.timeline-content {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 37, 69, 0.05);
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: var(--shadow-lg);
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
  display: block;
}

.timeline-event {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 0.5rem;
}

.timeline-description {
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.5;
}

.timeline-icon {
  background: rgba(29, 129, 242, 0.1);
  padding: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
  border: 4px solid white;
  box-shadow: var(--shadow);
}

.timeline-icon svg {
  width: 32px;
  height: 32px;
  color: var(--c-accent);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: all 0.3s ease;
}

.stat-card:hover {
  box-shadow: var(--shadow-lg);
}

.stat-card .stat-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
}

.stat-card .stat-label {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
}

/* Sobre Mí CTA */
.sobre-mi-cta {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.1);
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.sobre-mi-cta .cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.sobre-mi-cta .cta-description {
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.sobre-mi-cta .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.sobre-mi-cta .cta-button svg {
  width: 20px;
  height: 20px;
}

/* Contacto Section */
.contacto-section {
  background: white;
}

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(29, 129, 242, 0.2);
  transform: translateY(-2px);
}

.contact-icon {
  background: rgba(245, 247, 250, 1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.contact-card:hover .contact-icon {
  background: rgba(245, 247, 250, 1);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-accent);
}

.contact-title {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--c-accent);
  font-weight: 500;
}

/* Social Section */
.social-section {
  margin-bottom: 4rem;
}

.social-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.social-card {
  max-width: 28rem;
  margin: 0 auto;
}

.social-link {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.social-link:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(29, 129, 242, 0.2);
  transform: translateY(-2px);
}

.social-icon {
  background: rgba(245, 247, 250, 1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.social-link:hover .social-icon {
  background: rgba(245, 247, 250, 1);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  color: #000000;
}

.social-title {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.social-value {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
}

/* Portfolio Section */
.portfolio-section {
  margin-bottom: 4rem;
}

.portfolio-section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  text-align: center;
  margin-bottom: 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-card {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-xl);
  border-color: rgba(29, 129, 242, 0.2);
  transform: translateY(-2px);
}

.portfolio-icon {
  background: rgba(245, 247, 250, 1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  display: inline-flex;
  margin-bottom: 1rem;
}

.portfolio-card:hover .portfolio-icon {
  background: rgba(245, 247, 250, 1);
}

.portfolio-icon svg {
  width: 24px;
  height: 24px;
  color: var(--c-accent);
}

.portfolio-title {
  font-weight: 600;
  color: var(--c-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.portfolio-value {
  color: rgba(11, 37, 69, 0.7);
  font-size: 0.875rem;
}

/* Contacto CTA */
.contacto-cta {
  background: linear-gradient(135deg, rgba(29, 129, 242, 0.05), rgba(212, 175, 55, 0.05));
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(29, 129, 242, 0.1);
  text-align: center;
  margin-bottom: 4rem;
}

.contacto-cta .cta-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--c-primary);
  margin-bottom: 1rem;
}

.contacto-cta .cta-description {
  color: rgba(11, 37, 69, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

.cta-button.primary {
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold));
  color: white;
}

.cta-button.secondary {
  background: white;
  color: #25D366;
  border: 2px solid #25D366;
}

.cta-button.secondary:hover {
  background: rgba(37, 211, 102, 0.05);
}

.cta-button svg {
  width: 20px;
  height: 20px;
}

/* Location Info */
.location-info {
  text-align: center;
}

.location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(11, 37, 69, 0.6);
  margin-bottom: 1rem;
}

.location-icon svg {
  width: 16px;
  height: 16px;
}

.location-description {
  font-size: 0.875rem;
  color: rgba(11, 37, 69, 0.5);
}

/* Footer */
.footer {
  background: var(--c-primary);
  color: white;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Footer Brand */
.footer-brand {
  margin-bottom: 1rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo-img {
    width: 10rem;
    height: 10rem;
    object-fit: contain;
}

.footer-logo-fallback {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--c-accent), var(--c-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 0.875rem;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Footer Sections */
.footer-section-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  list-style: none;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--c-gold);
}

.footer-location {
  font-size: 0.875rem;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--c-gold);
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid var(--c-accent);
  outline-offset: 2px;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.125rem;
  }
}
