/* Variables CSS para el sistema de diseño */
:root {
  --bg: #ffffff;
  --card: #f8fafc;
  --text: #1f2937;
  --muted: #6b7280;
  --brand: #8b5cf6;
  --brand-2: #22d3ee;
  --border: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Contenedor principal */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-brand h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
}

.nav-brand a {
  color: var(--brand);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--brand);
}

/* Generador link styling */
.nav-generator {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white !important;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.nav-generator:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.5);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 8px;
}

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

/* Dropdown menu for sectors */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 16px 0;
  z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-category {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.dropdown-link:hover {
  background: var(--card);
  color: var(--brand);
}

.dropdown-link .sector-emoji {
  margin-right: 8px;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--card);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--brand);
}

.breadcrumb-separator {
  color: var(--muted);
  margin: 0 4px;
}

.breadcrumb-item.current {
  color: var(--text);
  font-weight: 500;
}

/* Related sectors section */
.related-sectors-section {
  background: var(--card);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.related-sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.related-sector-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.related-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--brand);
}

.related-sector-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.related-sector-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.related-sector-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.related-sector-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.related-sector-btn:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
}

/* Hero Section General */
.hero {
  padding: 80px 0 120px;
  text-align: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--card) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text);
}

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

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* Hero Section para Páginas Sectoriales */
.sector-hero {
  padding: 60px 0 100px;
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 24px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.sector-icon {
  font-size: 18px;
}

.hero-guarantees {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
}

.guarantee {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  min-width: 140px;
}

.guarantee strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 4px;
}

.guarantee span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

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

/* Botones */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--brand);
  color: var(--bg);
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--brand-2);
  color: var(--text);
}

.btn-secondary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: var(--bg);
}

/* Sección Clientes */
.clients-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.clients-title {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 500;
}

.clients-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.client-logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  opacity: 0.7;
}

/* Secciones */
.sectors-section, .why-us-section, .why-sector-section, .portfolio-section, 
.calculator-section, .pricing-section, .testimonials-section, .faq-section {
  padding: 80px 0;
}

.why-us-section, .why-sector-section {
  background: var(--card);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Sección de Sectores Showcase */
.sectors-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
  position: relative;
  overflow: hidden;
}

.sectors-showcase::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

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

.section-subtitle {
  font-size: 20px;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto 80px auto;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Grid de sectores mejorado */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Cards de sectores premium */
.sector-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
}

.gradient-border {
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) padding-box,
              linear-gradient(135deg, var(--brand), var(--brand-2)) border-box;
}

.sector-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 25px 50px -12px rgba(139, 92, 246, 0.25),
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border-color: rgba(139, 92, 246, 0.3);
}

.sector-header {
  padding: 32px 32px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.sector-icon {
  font-size: 64px;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.sector-card:hover .sector-icon {
  transform: scale(1.1) rotate(5deg);
}

.sector-badge {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.sector-content {
  padding: 0 32px;
}

.sector-card h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text);
  transition: color 0.3s ease;
}

.sector-card:hover h3 {
  color: var(--brand);
}

.sector-description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.sector-highlights {
  list-style: none;
  margin-bottom: 32px;
}

.sector-highlights li {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
}

.highlight-icon {
  font-size: 16px;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.sector-footer {
  padding: 24px 32px 32px 32px;
}

.btn-sector {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-sector::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;
}

.btn-sector:hover::before {
  left: 100%;
}

.btn-sector:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -8px rgba(139, 92, 246, 0.6);
}

/* CTA adicional */
.sectors-cta {
  margin-top: 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  padding: 48px;
  border-radius: 24px;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.4);
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.btn-primary-large {
  display: inline-block;
  background: white;
  color: var(--brand);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px -8px rgba(0, 0, 0, 0.2);
}

/* Hero buttons */
.hero-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.4);
}

/* Semantic Content Section */
.semantic-content {
  padding: 120px 0;
  background: var(--bg);
}

.content-block {
  margin-bottom: 80px;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
  text-align: center;
}

.large-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 900px;
  margin: 0 auto 48px auto;
  text-align: center;
}

.benefits-grid-semantic {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.benefit-item {
  background: var(--card);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px -8px rgba(139, 92, 246, 0.15);
}

.benefit-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.benefit-item p {
  color: var(--muted);
  line-height: 1.6;
}

.features-list {
  max-width: 800px;
  margin: 0 auto;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-icon {
  font-size: 24px;
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature-content p {
  color: var(--muted);
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--card) 0%, var(--bg) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 80px;
}

.pricing-card {
  background: var(--bg);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--brand);
  transform: scale(1.05);
  box-shadow: 0 20px 40px -12px rgba(139, 92, 246, 0.3);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
}

.pricing-header {
  padding: 48px 32px 32px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.price {
  margin-bottom: 8px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
}

.pricing-content {
  padding: 32px;
}

.pricing-content .features-list {
  list-style: none;
  max-width: none;
}

.pricing-content .features-list li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.pricing-content .features-list li:last-child {
  border-bottom: none;
}

.feature-check {
  color: var(--success);
  font-weight: bold;
  margin-right: 12px;
  font-size: 18px;
}

.pricing-footer {
  padding: 24px 32px 32px 32px;
}

.btn-pricing {
  display: block;
  width: 100%;
  background: var(--brand);
  color: white;
  text-align: center;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--brand);
}

.btn-pricing.featured {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-color: transparent;
  box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.4);
}

.btn-pricing:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -8px rgba(139, 92, 246, 0.4);
}

.pricing-guarantee {
  margin-top: 80px;
  text-align: center;
}

.guarantee-content {
  background: linear-gradient(135deg, var(--success) 0%, #10b981 100%);
  color: white;
  padding: 32px;
  border-radius: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.guarantee-content p {
  font-size: 16px;
  opacity: 0.9;
}

.sector-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.sector-features li {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.sector-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 600;
}

/* Grid de beneficios */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.benefit-card {
  background: var(--bg);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgb(0 0 0 / 0.1);
}

.benefit-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.benefit-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.benefit-stat {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
  background: rgba(139, 92, 246, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.portfolio-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s ease;
}

.portfolio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
}

.portfolio-image {
  font-size: 48px;
  text-align: center;
  margin-bottom: 24px;
}

.portfolio-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text);
}

.portfolio-challenge, .portfolio-solution {
  margin-bottom: 16px;
}

.portfolio-challenge strong, .portfolio-solution strong {
  color: var(--text);
  font-weight: 600;
}

.portfolio-results {
  margin-top: 20px;
}

.portfolio-results strong {
  color: var(--brand);
  font-weight: 600;
}

.portfolio-results ul {
  margin-top: 12px;
  padding-left: 20px;
}

.portfolio-results li {
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 14px;
}

/* Calculadora */
.calculator {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.calculator-inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.input-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.input-group input, .input-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s ease;
}

.input-group input:focus, .input-group select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.calculator-button {
  text-align: center;
  margin-bottom: 32px;
}

.calculator-results {
  background: var(--card);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}

.calculator-results h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.result-item {
  background: var(--bg);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.result-item.highlight {
  background: var(--brand);
  color: var(--bg);
}

.result-item.success {
  background: var(--success);
  color: var(--bg);
}

.result-item strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.result-item span {
  font-size: 14px;
  opacity: 0.9;
}

.roi-note {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* Precios */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: flex-start;
}

.pricing-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  position: relative;
  transition: all 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgb(0 0 0 / 0.1);
}

.pricing-card.popular {
  border-color: var(--brand);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--bg);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.price {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}

.price-note {
  font-size: 14px;
  color: var(--muted);
}

.pricing-features {
  margin-bottom: 32px;
  text-align: left;
}

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

.pricing-features li {
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* Garantía */
.guarantee-section {
  background: var(--brand);
  color: var(--bg);
  padding: 80px 0;
  text-align: center;
}

.guarantee-content {
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.guarantee-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.guarantee-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.guarantee-details {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.guarantee-item {
  text-align: center;
}

.guarantee-item strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.guarantee-item span {
  font-size: 14px;
  opacity: 0.9;
}

/* Testimonios */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px -5px rgb(0 0 0 / 0.1);
}

.testimonial-stars {
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-info strong {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.author-info span {
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  background: var(--card);
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background: var(--border);
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  font-weight: 600;
  color: var(--brand);
}

.faq-answer {
  display: none;
  padding: 24px;
  background: var(--bg);
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* CTA Final */
.final-cta-section {
  background: var(--card);
  padding: 80px 0;
}

.cta-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.cta-content > p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 48px;
}

.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  text-align: left;
}

.contact-form h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: var(--text);
}

.sector-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row input, .form-row select {
  flex: 1;
}

.sector-form input, .sector-form select, .sector-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.sector-form input:focus, .sector-form select:focus, .sector-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

.contact-icon {
  font-size: 32px;
  min-width: 48px;
}

.contact-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-info p {
  margin-bottom: 4px;
  color: var(--text);
}

.contact-info span {
  font-size: 14px;
  color: var(--muted);
}

.contact-urgency {
  background: var(--brand);
  color: var(--bg);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

/* CTA Section del Hub */
.cta-section {
  padding: 80px 0;
  background: var(--brand);
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn-primary {
  background: var(--bg);
  color: var(--brand);
}

.cta-buttons .btn-secondary {
  background: transparent;
  color: var(--bg);
  border: 2px solid var(--bg);
}

.cta-buttons .btn-secondary:hover {
  background: var(--bg);
  color: var(--brand);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}

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

.footer-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

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

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

.footer-bottom p {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--brand);
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 980px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-stats, .hero-guarantees {
    gap: 32px;
  }
  
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-options {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons, .hero-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }
  
  .guarantee-details {
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }
  
  .nav {
    padding: 12px 16px;
    flex-direction: column;
    gap: 16px;
  }
  
  .nav-links {
    gap: 16px;
    font-size: 14px;
  }
  
  .hero, .sector-hero {
    padding: 60px 0 80px;
  }
  
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-stats, .hero-guarantees {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-guarantees .guarantee {
    min-width: auto;
  }
  
  .sectors-section, .why-us-section, .why-sector-section, 
  .portfolio-section, .calculator-section, .pricing-section, 
  .testimonials-section, .faq-section {
    padding: 60px 0;
  }
  
  .sectors-grid, .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .sector-card {
    padding: 24px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .calculator {
    padding: 32px 24px;
  }
  
  .calculator-inputs {
    grid-template-columns: 1fr;
  }
  
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .clients-logos {
    gap: 24px;
  }
  
  .guarantee-details {
    flex-direction: column;
    gap: 24px;
  }
  
  .final-cta-section, .cta-section, .guarantee-section {
    padding: 60px 0;
  }
  
  .cta-content h2, .guarantee-content h2 {
    font-size: 28px;
  }
  
  .footer {
    padding: 48px 0 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Mobile responsive navigation optimizations */
@media (max-width: 768px) {
  .nav {
    position: relative;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--border);
    gap: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .nav-dropdown-content {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 16px;
    background: var(--card);
    border-radius: 8px;
  }

  .breadcrumb-list {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .related-sectors-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Footer navigation enhancements */
.footer-sitemap {
  background: var(--card);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.sitemap-category h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.sitemap-links {
  list-style: none;
}

.sitemap-links li {
  margin-bottom: 8px;
}

.sitemap-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.sitemap-links a:hover {
  color: var(--brand);
}

/* Responsive Design - Nuevas Secciones */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .btn-secondary,
  .btn-primary {
    width: 100%;
    max-width: 280px;
  }

  .semantic-content {
    padding: 80px 0;
  }

  .content-block {
    margin-bottom: 60px;
  }

  .large-text {
    font-size: 18px;
    text-align: left;
  }

  .benefits-grid-semantic {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-row {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .guarantee-content {
    margin: 0 16px;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    width: 100%;
  }

  .semantic-content {
    padding: 60px 0;
  }

  .content-block h2 {
    font-size: 28px;
  }

  .large-text {
    font-size: 16px;
  }

  .benefit-item {
    padding: 24px;
  }

  .pricing-header {
    padding: 32px 24px 24px 24px;
  }

  .pricing-content,
  .pricing-footer {
    padding: 24px;
  }

  .price-amount {
    font-size: 40px;
  }

  .guarantee-content h3 {
    font-size: 20px;
  }
}

/* Estilos para Formulario de Pedidos */

/* Hero del formulario */
.form-hero {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.form-hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.security-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.security-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Sección del formulario */
.order-form-section {
  padding: 80px 0;
  background: var(--bg);
}

.order-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Resumen del pedido */
.order-summary {
  background: var(--card);
  padding: 40px;
  border-radius: 24px;
  border: 2px solid var(--border);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.order-summary h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

.selected-plan .plan-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 16px;
  color: white;
  margin-bottom: 24px;
}

.plan-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.plan-price {
  font-size: 32px;
  font-weight: 800;
}

.features-summary {
  list-style: none;
  margin-bottom: 32px;
}

.features-summary li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}

.feature-check {
  color: var(--success);
  font-weight: bold;
  margin-right: 12px;
  width: 16px;
}

.order-total {
  border-top: 2px solid var(--border);
  padding-top: 24px;
  margin-top: 32px;
}

.total-line {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
}

.final-total {
  font-size: 20px;
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
  color: var(--brand);
}

.guarantee-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.guarantee-icon {
  font-size: 24px;
}

.guarantee-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--success);
}

.guarantee-text p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Formulario */
.order-form {
  background: white;
  border-radius: 24px;
  border: 2px solid var(--border);
  overflow: hidden;
}

.form-section {
  padding: 40px;
  border-bottom: 1px solid var(--border);
}

.form-section:last-child {
  border-bottom: none;
}

.form-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--error);
}

.form-group.valid input,
.form-group.valid select,
.form-group.valid textarea {
  border-color: var(--success);
}

.error-message {
  color: var(--error);
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--brand);
  border-color: var(--brand);
}

.checkbox-label input:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.form-actions {
  padding: 40px;
  background: var(--card);
  text-align: center;
}

.btn-submit {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  border: none;
  padding: 20px 48px;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 16px auto;
  box-shadow: 0 8px 25px -8px rgba(139, 92, 246, 0.4);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px -8px rgba(139, 92, 246, 0.6);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-submit.loading {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Sección de confianza */
.trust-section {
  padding: 80px 0;
  background: var(--card);
}

.trust-content {
  text-align: center;
}

.trust-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text);
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.trust-point {
  text-align: center;
}

.trust-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.trust-point h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.trust-point p {
  color: var(--muted);
  font-size: 16px;
}

/* Modal de éxito */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-modal {
  background: white;
  padding: 48px;
  border-radius: 24px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.success-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.success-modal h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--success);
}

.success-modal p {
  font-size: 16px;
  margin-bottom: 32px;
  color: var(--muted);
}

.next-steps {
  text-align: left;
  background: var(--card);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 32px;
}

.next-steps h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.next-steps ol {
  margin-left: 20px;
  color: var(--muted);
}

.next-steps li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* Responsive para formulario */
@media (max-width: 1024px) {
  .order-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-summary {
    position: static;
  }
}

@media (max-width: 768px) {
  .form-hero {
    padding: 60px 0;
  }

  .security-badges {
    flex-direction: column;
    align-items: center;
  }

  .order-form-section {
    padding: 60px 0;
  }

  .order-summary,
  .form-section {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .trust-points {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
  }

  .success-modal {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .form-hero {
    padding: 40px 0;
  }

  .order-summary,
  .form-section,
  .form-actions {
    padding: 20px;
  }

  .btn-submit {
    padding: 16px 32px;
    font-size: 16px;
  }

  .trust-icon {
    font-size: 40px;
  }

  .trust-point h4 {
    font-size: 18px;
  }
}
