/* Reset y Variables CSS */
:root {
  /* Colores */
  --color-primary: hsl(220, 100%, 60%);
  --color-primary-light: hsl(220, 100%, 70%);
  --color-primary-dark: hsl(220, 100%, 50%);
  --color-accent: hsl(280, 100%, 70%);
  --color-accent-light: hsl(280, 100%, 80%);
  --color-accent-dark: hsl(280, 100%, 60%);
  --color-background: hsl(220, 15%, 8%);
  --color-foreground: hsl(0, 0%, 98%);
  --color-card: hsl(220, 15%, 12%);
  --color-border: hsl(220, 15%, 20%);
  --color-muted: hsl(220, 15%, 25%);
  --color-muted-foreground: hsl(0, 0%, 70%);
  
  /* Fuentes */
  --font-sans: 'Inter', system-ui, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border-color: var(--color-border);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-background);
  color: var(--color-foreground);
  font-family: var(--font-sans);
  font-feature-settings: "rlig" 1, "calt" 1;
  line-height: 1.5;
  min-height: 100vh;
}

/* Utilidades de Texto */
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.italic { font-style: italic; }

/* Colores de Texto */
.text-primary { color: var(--color-primary); }
.text-accent { color: var(--color-accent); }
.text-white { color: white; }
.text-muted-foreground { color: var(--color-muted-foreground); }

/* Efectos de Vidrio (Glass Effect) */
.glass-effect {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
}

/* Texto con Gradiente */
.gradient-text {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Botones */
.btn-primary {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  box-shadow: 0 10px 40px rgba(96, 165, 250, 0.5);
  transform: scale(1.05);
}

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

.btn-secondary {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  color: var(--color-foreground);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 10px 40px rgba(96, 165, 250, 0.2);
}

/* Card con Hover */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

/* Contenedores */
.container-custom {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Grid Animado */
.animated-grid {
  background-image: 
    linear-gradient(to right, hsl(220, 15%, 15%) 1px, transparent 1px),
    linear-gradient(to bottom, hsl(220, 15%, 15%) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 50px 50px; }
}

/* Animaciones */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes fadeInUp {
  0% { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  100% { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes bounce {
  0%, 100% { 
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% { 
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-bounce {
  animation: bounce 1s infinite;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Navbar */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(51, 57, 69, 0.5);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links button {
  background: none;
  border: none;
  color: var(--color-foreground);
  font-size: 0.875rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-links button:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-button {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  color: var(--color-foreground);
  cursor: pointer;
}

.mobile-menu {
  padding: 1rem;
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  margin-top: 0.5rem;
  border-radius: 0.5rem;
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 1rem;
}

.mobile-menu-content button {
  background: none;
  border: none;
  color: var(--color-foreground);
  text-align: left;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-content button:hover {
  color: var(--color-primary);
}

.mobile-menu-content .btn-secondary,
.mobile-menu-content .btn-primary {
  margin-top: 0.5rem;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem 0;
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero-inner {
  max-width: 80rem;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent);
  border-radius: 9999px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-headline {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 1rem;
  margin-bottom: 3rem;
}

.hero-trust {
  padding-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(96, 165, 250, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.25rem;
  height: 0.75rem;
  background-color: var(--color-primary);
  border-radius: 9999px;
}

/* Problems Section */
.problems-section {
  background: linear-gradient(to bottom, var(--color-background), rgba(30, 35, 43, 0.3));
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: var(--color-muted-foreground);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

.problem-card {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.problem-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-accent));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: white;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-description {
  color: var(--color-muted-foreground);
}

/* Features Section */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.feature-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Differentiators Section */
.differentiators-section {
  background: linear-gradient(to bottom, rgba(30, 35, 43, 0.3), var(--color-background));
}

.diff-card {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(96, 165, 250, 0.2);
  padding: 2rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.diff-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

.diff-card-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.diff-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--color-primary), var(--color-accent));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-icon svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.diff-text {
  flex: 1;
}

.diff-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.diff-description {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
}

.diff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.diff-tag {
  padding: 0.25rem 0.75rem;
  background-color: rgba(96, 165, 250, 0.1);
  color: var(--color-primary);
  font-size: 0.875rem;
  border-radius: 9999px;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(to bottom, var(--color-background), rgba(30, 35, 43, 0.3));
}

.pricing-card {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid rgba(96, 165, 250, 0.3);
  padding: 3rem;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
  max-width: 64rem;
  margin: 0 auto;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.pricing-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-info > p {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.pricing-amounts {
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.pricing-amount .price {
  font-size: 3rem;
  font-weight: 700;
}

.pricing-amount .price.gradient {
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-amount .price.accent {
  color: var(--color-accent);
  font-size: 2.25rem;
}

.pricing-amount .unit {
  color: var(--color-muted-foreground);
}

.pricing-note {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  text-align: center;
  margin-top: 1rem;
}

.pricing-features h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal-content {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 28rem;
  width: 100%;
}

.modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.modal-content p {
  color: var(--color-muted-foreground);
  margin-bottom: 1.5rem;
}

.modal-content .btn-primary {
  width: 100%;
  margin-bottom: 0.5rem;
}

.modal-content .btn-secondary {
  width: 100%;
}

/* Testimonials Section */
.testimonial-card {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(96, 165, 250, 0.2);
}

.quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  color: rgba(96, 165, 250, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
}

.testimonial-info h4 {
  font-weight: 600;
}

.testimonial-info .role {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.testimonial-info .company {
  font-size: 0.875rem;
  color: var(--color-accent);
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-rating svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  fill: var(--color-accent);
}

.testimonial-text {
  color: var(--color-muted-foreground);
  font-style: italic;
}

/* FAQ Section */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-button {
  width: 100%;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-foreground);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-button:hover {
  background-color: rgba(96, 165, 250, 0.05);
}

.faq-button span {
  padding-right: 1rem;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon.open {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  color: var(--color-muted-foreground);
}

/* Contact Form Section */
.contact-section {
  background: linear-gradient(to bottom, rgba(30, 35, 43, 0.3), var(--color-background));
}

.contact-container {
  max-width: 64rem;
  margin: 0 auto;
}

.contact-form-wrapper {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 3rem;
  border-radius: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-label svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-accent);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 0.5rem;
  color: var(--color-foreground);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.2);
}

.form-textarea {
  resize: none;
}

.form-note {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-top: 0.5rem;
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.recaptcha-placeholder {
  background-color: rgba(30, 35, 43, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(51, 57, 69, 0.5);
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
}

.recaptcha-placeholder p {
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
  margin-bottom: 0.5rem;
}

.recaptcha-placeholder p:last-child {
  font-size: 0.75rem;
  margin-bottom: 0;
}

.submit-status {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.submit-status.success {
  background-color: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: rgb(34, 197, 94);
}

.submit-status.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: rgb(239, 68, 68);
}

.form-disclaimer {
  font-size: 0.75rem;
  text-align: center;
  color: var(--color-muted-foreground);
  margin-top: 1rem;
}

/* Footer */
footer {
  background-color: rgba(30, 35, 43, 0.5);
  border-top: 1px solid var(--color-border);
}

.footer-container {
  padding: 3rem 1rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  grid-column: span 2;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--color-muted-foreground);
  margin-bottom: 1rem;
  max-width: 28rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--color-muted-foreground);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--color-primary);
}

.footer-social svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-section h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: var(--color-muted-foreground);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--color-muted-foreground);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-bottom-links a {
  color: var(--color-muted-foreground);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Utilidades de Espaciado */
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Utilidades de Display */
.hidden { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

/* Utilidades de Posición */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }

/* Utilidades de Tamaño */
.w-full { width: 100%; }
.h-full { height: 100%; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 64rem; }
.max-w-5xl { max-width: 80rem; }

/* Utilidades de Border */
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

/* Utilidades de Opacidad */
.opacity-30 { opacity: 0.3; }

/* Utilidades de Transform */
.transform { transform: translateX(-50%); }

/* Utilidades de Overflow */
.overflow-hidden { overflow: hidden; }

/* Utilidades de Cursor */
.cursor-pointer { cursor: pointer; }

/* Utilidades de Transición */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.3s ease; }
.transition-transform { transition: transform 0.3s ease; }

/* Media Queries - Tablet y Desktop */
@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
  
  .hero-subheadline {
    font-size: 1.5rem;
  }
  
  .hero-cta {
    flex-direction: row;
  }
  
  .section-title {
    font-size: 3rem;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navbar-container {
    height: 5rem;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
  }
  
  .footer-bottom-links {
    margin-top: 0;
  }
  
  .contact-form-wrapper {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  
  .nav-cta {
    display: flex;
  }
  
  .mobile-menu-button {
    display: none;
  }
  
  .hero-headline {
    font-size: 4.5rem;
  }
  
  .grid-cols-1 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Ajustes adicionales para iconos SVG */
svg {
  display: inline-block;
  vertical-align: middle;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
}

.icon-md {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Ajustes para inputs y formularios */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  font-family: inherit;
}

/* Ajustes para imágenes */
img {
  max-width: 100%;
  height: auto;
}

