/* =====================================================
   LANDING PAGE REPARACIÓN TARJETA GRÁFICA - MAE RECOVERY
   CSS optimizado con temática visual/gráficos
   ===================================================== */

/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #8b5cf6;
  --secondary-color: #06b6d4;
  --accent-color: #0891b2;
  --dark-color: #1e1b4b;
  --light-gray: #f8f9fa;
  --border-color: #e5e7eb;
  --text-color: #374151;
  --success-color: #10b981;
  --error-color: #ef4444;
  --graphics-purple: #8b5cf6;
  --display-cyan: #06b6d4;
  --warning-yellow: #f59e0b;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  background: linear-gradient(135deg, var(--graphics-purple), var(--display-cyan));
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px !important;
  width: 150px !important;
  contain: layout;
  display: block;
  object-fit: contain;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
  will-change: opacity;
}

.main-nav a:hover {
  opacity: 0.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.95rem;
  will-change: transform;
}

.btn-primary {
  background: var(--graphics-purple);
  color: white;
}

.btn-light {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-graphics {
  background: linear-gradient(45deg, var(--graphics-purple), var(--display-cyan));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-graphics:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.btn-display {
  background: linear-gradient(45deg, var(--display-cyan), var(--accent-color));
  color: white;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-display:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  padding: 4rem 0;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="100" height="20" fill="url(%23a)"/></svg>');
  opacity: 0.3;
}

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

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  aspect-ratio: 3/2;
  display: block;
}

/* Graphics Problem Indicators */
.graphics-status {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
}

.status-icon {
  font-size: 1.2rem;
}

.status-icon.problem {
  color: var(--warning-yellow);
}

.status-icon.solution {
  color: var(--success-color);
}

/* Pricing Display */
.pricing-badge {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  padding: 1.5rem;
  border-radius: 16px;
  margin: 2rem 0;
  backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pricing-badge h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
}

.price-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.price-item .device {
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.price-item .price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #f59e0b;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  display: block;
  line-height: 1.1;
}

/* Trust indicators */
.trust-indicators {
  display: flex;
  gap: 2rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.trust-item i {
  color: var(--display-cyan);
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark-color);
}

.section-title.light {
  color: white;
}

.bg-light {
  background: var(--light-gray);
}

.gradient {
  background: linear-gradient(135deg, var(--graphics-purple), var(--display-cyan));
  color: white;
}

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

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  will-change: transform;
  border-top: 4px solid var(--graphics-purple);
  color: var(--text-color);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--graphics-purple);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.feature-icon.display {
  background: var(--display-cyan);
}

.feature-icon.success {
  background: var(--success-color);
}

.feature-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

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

/* Graphics Problems */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-left: 4px solid var(--warning-yellow);
}

.problem-icon {
  width: 80px;
  height: 80px;
  background: var(--warning-yellow);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.problem-card h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.problem-card p {
  color: var(--text-color);
  line-height: 1.6;
}

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

.benefit-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--display-cyan);
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.benefit-content h3 {
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.benefit-content p {
  color: var(--text-color);
  line-height: 1.6;
}

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

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--text-color);
}

.service-card h3 {
  color: var(--dark-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-color);
  line-height: 1.6;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--graphics-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

/* FAQ ACORDEÓN */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border-left: 4px solid var(--graphics-purple);
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq-question {
  padding: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--graphics-purple);
  transition: transform 0.3s ease;
  will-change: transform;
  flex-shrink: 0;
}

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

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  background: #fafbfc;
  border-top: 1px solid #e5e7eb;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding-top: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: white;
}

.contact-details {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  color: var(--display-cyan);
  font-size: 1.25rem;
  width: 20px;
  margin-top: 0.25rem;
}

.schedule {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

/* Contact Form */
.contact-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: white;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--display-cyan);
  background: rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Checkbox personalizado */
.checkbox-group {
  margin: 1.5rem 0;
}

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

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

.checkmark {
  min-width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-top: 2px;
}

.checkbox-label:hover .checkmark {
  border-color: var(--display-cyan);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
  background: var(--display-cyan);
  border-color: var(--display-cyan);
}

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

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-primary-form {
  background: var(--graphics-purple);
  color: white;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--graphics-purple);
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--dark-color);
  margin-top: 1rem;
}

.testimonial-device {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: #d1d5db;
  padding: 3rem 0 1rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

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

.footer a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--display-cyan);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Utilities */
.text-center {
  text-align: center !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-danger {
  color: var(--error-color) !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.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;
}

/* Visual Effects */
.glitch-effect {
  position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-effect::before {
  animation: glitch-1 0.5s infinite;
  color: var(--display-cyan);
  z-index: -1;
}

.glitch-effect::after {
  animation: glitch-2 0.5s infinite;
  color: var(--warning-yellow);
  z-index: -2;
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, 2px); }
  80% { transform: translate(-2px, -2px); }
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Animación hamburguesa activa */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* OPTIMIZACIONES PAGESPEED MÓVIL */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .header-cta {
    display: none; /* Ocultar botón de llamar en móvil */
  }

  .main-nav {
    position: relative;
    order: -1; /* Mover el menú antes del logo */
  }

  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--graphics-purple), var(--display-cyan));
    flex-direction: column;
    width: 100vw;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0;
    padding: 1rem 0;
    margin-left: -1rem; /* Compensar padding del container */
    z-index: 1000;
  }

  .main-nav ul.show {
    display: flex;
  }

  .main-nav li {
    margin: 0;
    width: 100%;
  }

  .main-nav a {
    font-size: 1rem;
    padding: 1rem 2rem;
    display: block;
    background: none;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .main-nav li:last-child a {
    border-bottom: none;
  }
  .hero {
    padding: 3rem 0;
    min-height: 60vh;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
  }

  .header-content::after {
    content: '';
    width: 40px; /* Mismo ancho que el menú hamburguesa */
    height: 40px;
    display: flex;
    align-items: center;
    visibility: hidden; /* Invisible pero ocupa espacio */
  }

  .header-cta {
    display: none; /* Ocultar botón de llamar en móvil */
  }

  .logo {
    flex: 1;
    text-align: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img {
    display: block;
    margin: 0 auto;
  }

  .graphics-status {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .status-item {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .price-item {
    padding: 1.5rem 1rem;
  }

  .price-item .device {
    font-size: 1.2rem;
  }

  .price-item .price {
    font-size: 2rem;
  }

  .pricing-badge {
    padding: 1.5rem 1rem;
    margin: 1.5rem 0;
  }

  .trust-indicators {
    justify-content: center;
    gap: 1rem;
  }

  .trust-item {
    font-size: 0.8rem;
  }

  .checkbox-label {
    font-size: 0.85rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .features-grid,
  .benefits-list,
  .services-grid,
  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-icon,
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .service-icon,
  .problem-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.9rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1rem 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }

  .feature-card,
  .service-card,
  .testimonial-card,
  .problem-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .status-item {
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
  }
}

/* Optimizaciones adicionales para PageSpeed */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mejora para touch devices */
@media (hover: none) and (pointer: coarse) {
  .btn {
    padding: 1rem 1.5rem;
  }

  .faq-question {
    padding: 1.25rem;
  }
}