:root {
  --bg: #0b0f17;
  --card: #121826;
  --muted: #b0bdd7;
  --text: #e5ecff;
  --primary: #7cde2b;
  --danger: #ff4d4d;
  --warning: #ffb020;
  --success: #2ecc71;
  --border: #1e2636;
  --accent: #2a3550;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  --radius: 12px;
  --space: 16px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Helvetica Neue, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 0%, #0f1627 0%, var(--bg) 50%), radial-gradient(1000px 600px at 80% -10%, #0f1a30 0%, var(--bg) 60%);
  line-height: 1.55;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header y Navegación */
.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 100; 
  background: rgba(11, 15, 23, 0.95); 
  backdrop-filter: blur(12px); 
  border-bottom: 1px solid var(--border); 
}

.header-inner { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 64px; 
  position: relative; 
}

.site-title { font-size: 20px; margin: 0; letter-spacing: 0.2px; }
.site-title .logo { 
  width: 24px; 
  height: 24px; 
  vertical-align: -4px; 
  margin-right: 8px; 
  border-radius: 6px; 
  box-shadow: 0 0 0 1px var(--border); 
  animation: floatY 4s ease-in-out infinite; 
}

.logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.2s ease;
}

.logo-link:hover {
  opacity: 0.8;
}

/* Menú hamburguesa móvil */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
/* Selector de idioma - Eliminación completa de list-style */
.lang-switcher { 
  appearance: none !important; 
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: #0e1526 !important; 
  border: 1px solid var(--border) !important; 
  color: var(--text) !important; 
  padding: 8px 10px !important; 
  border-radius: 8px !important; 
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style-position: outside !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
}

/* Eliminar flecha del select */
.lang-switcher::-ms-expand {
  display: none !important;
}

.lang-switcher option {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  background: #0e1526 !important;
  color: var(--text) !important;
  padding: 8px !important;
}

/* Forzar eliminación de list-style en todos los navegadores */
.lang-switcher,
.lang-switcher *,
.lang-switcher option,
.lang-switcher optgroup,
.lang-switcher select,
.lang-switcher select option {
  list-style: none !important;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style-position: outside !important;
  background-image: none !important;
}

/* Estilos adicionales para navegadores específicos */
@supports (-webkit-appearance: none) {
  .lang-switcher {
    -webkit-appearance: none !important;
    background-image: none !important;
  }
}

@supports (-moz-appearance: none) {
  .lang-switcher {
    -moz-appearance: none !important;
    background-image: none !important;
  }
}

/* Menú desplegable de idiomas */
.lang-dropdown[data-open="true"] .lang-menu {
  display: block;
  list-style: none;
}
.lang-dropdown { position: relative; }
.lang-trigger { background: #0e1526; border: 1px solid var(--border); color: var(--text); padding: 6px 10px; border-radius: 8px; cursor: pointer; }
.lang-menu { position: absolute; top: calc(100% + 6px); right: 0; background: #0e1526; border: 1px solid var(--border); border-radius: 10px; padding: 6px; display: none; min-width: 160px; box-shadow: var(--shadow); }
.lang-dropdown[data-open="true"] .lang-menu { display: block; }
.lang-item { padding: 8px 10px; border-radius: 8px; cursor: pointer; }
.lang-item:hover { background: #15223b; }
@keyframes floatY { 0% { transform: translateY(0); } 50% { transform: translateY(-2px); } 100% { transform: translateY(0); } }

/* Navegación */
.site-nav ul { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; }
.site-nav a { color: var(--muted); text-decoration: none; padding: 8px 12px; border-radius: 8px; transition: 150ms ease; }
.site-nav a:hover { color: var(--text); background: var(--accent); }
.site-nav a.active { color: var(--text); background: var(--primary); color: var(--bg); font-weight: 600; }

.site-main { display: grid; gap: 24px; padding: 28px 0; }
.grid.two-cols { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }

.card { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px; }

.analyze-form { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; }
.analyze-form input {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  font-size: 22px;
  background: #0d1424;
  border: 1px solid var(--border);
  border-radius: 10px;
  outline: none;
}
.analyze-form input:focus { border-color: #2f4a88; box-shadow: 0 0 0 3px rgba(124, 222, 43, 0.15); }
.help-text { color: var(--muted); font-size: 12px; margin: 4px 0 0 0; grid-column: 1 / -1; }

.btn { appearance: none; border: 1px solid var(--border); background: #11192a; color: var(--text); padding: 10px 14px; border-radius: 10px; cursor: pointer; transition: 150ms ease; }
.btn:hover { transform: translateY(-1px); background: #15223b; }
.btn.primary { background: linear-gradient(180deg, #9ef04a, #7cde2b); color: #0b0f17; border-color: #75c924; font-weight: 600; }
.btn.primary:hover { filter: brightness(0.98); }

.progress { margin-top: 16px; }
.progress-bar { height: 10px; background: #15223b; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; position: relative; }
.progress-bar::after { content: ""; display: block; height: 100%; width: 0%; background: linear-gradient(90deg, #7cde2b, #4fd166); transition: width 250ms ease; }
.progress-steps { margin-top: 8px; font-size: 13px; color: var(--muted); }
.progress[data-value] .progress-bar::after { width: attr(data-value percentage); }

/* Estilos para la descripción del progreso */
.progress-description {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.progress-step {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.progress-details {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  font-style: italic;
}

.alert { margin-top: 12px; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: #1a2236; }
.alert.error { border-color: #6e1e1e; background: #2a1515; color: #ffd8d8; }
.alert.success { border-color: #1e6e3c; background: #152a1e; color: #d8ffea; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.metrics { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.metrics li { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--border); background: #0e1526; border-radius: 10px; }
.metrics strong { font-size: 15px; }

.charts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.radar-insight { margin-top: 12px; color: var(--muted); border-top: 1px solid var(--border); padding-top: 12px; }
.radar-insight .title { color: var(--text); font-weight: 600; }
.radar-insight .desc { margin-top: 6px; }

.results { display: grid; gap: 24px; }
.empty { color: var(--muted); text-align: center; padding: 28px 0; }

.score-card { padding: 28px; }
.score-hero { display: grid; gap: 10px; align-items: center; justify-items: start; }
.score-label { color: var(--muted); font-weight: 500; }
.score-value { font-size: 48px; font-weight: 800; letter-spacing: -0.5px; }
.score-value.big { font-size: 56px; }
.score-sub { color: var(--muted); font-size: 13px; }
.score-optim { margin-top: 6px; height: 10px; background: #15223b; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.score-optim > span { display:block; height:100%; width:0%; background: linear-gradient(90deg, #de3b3b, #ffb020 50%, #79da2b 90%); transition: width 400ms ease; }
.score-bar { width: 100%; height: 16px; background: #15223b; border: 1px solid var(--border); border-radius: 999px; overflow: hidden; }
.score-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #ff4d4d, #ffb020 40%, #7cde2b 80%); transition: width 400ms ease; }

.issue-group { display: grid; gap: 16px; }
.issue-group > div { display: grid; gap: 16px; }
.issue-group h3 { margin: 8px 0 0; }
.issue-item { border: 1px solid var(--border); background: #0f182a; border-radius: 10px; padding: 12px; display: grid; gap: 6px; }
.issue-item .title { font-weight: 600; display: flex; align-items: center; gap: 6px; }
.issue-item .meta { font-size: 12px; color: var(--muted); display: flex; gap: 8px; }
.issue-item .icon { width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 4px; font-size: 12px; font-weight: 700; margin-right: 6px; }
.icon.pass { background: rgba(46,204,113,0.15); color: #b6ffd1; border: 1px solid #2ecc71; }
.icon.warning { background: rgba(255,176,32,0.15); color: #ffe0a8; border: 1px solid #ffb020; }
.icon.error { background: rgba(255,77,77,0.15); color: #ffd0d0; border: 1px solid #ff4d4d; }
.issue-item .resources { margin-top: 6px; }
.issue-item .resources ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.issue-item .resources li { margin: 0; }
.issue-item .resources a.resource-link { color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.issue-item .resources a.resource-link::before { content: '🔗'; font-size: 14px; line-height: 1; }
.issue-item .resources a.resource-link:hover { text-decoration: underline; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; border: 1px solid var(--border); }
.badge.pass { background: rgba(46, 204, 113, 0.15); color: #b6ffd1; border-color: #2ecc71; }
.badge.warning { background: rgba(255, 176, 32, 0.15); color: #ffe0a8; border-color: #ffb020; }
.badge.error { background: rgba(255, 77, 77, 0.15); color: #ffd0d0; border-color: #ff4d4d; }

.site-footer { border-top: 1px solid var(--border); padding: 20px 0 40px; color: var(--muted); }

/* Generador de Contraseñas */
.password-generator {
  display: grid;
  gap: 24px;
}

.password-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.options-column {
  display: grid;
  gap: 20px;
}

.option-group {
  display: grid;
  gap: 12px;
}

.option-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
}

.option-group label:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.option-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-group input[type="checkbox"]:checked {
  transform: scale(1.1);
}

.length-control {
  display: flex;
  align-items: center;
  gap: 16px;
}

.length-slider {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.length-slider:hover {
  background: var(--accent);
}

.length-slider:focus {
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(124, 222, 43, 0.3);
}

.length-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.length-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.length-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}

.length-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

#length-value {
  background: var(--primary);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  min-width: 40px;
  text-align: center;
  transition: all 0.2s ease;
}

#length-value:hover {
  transform: scale(1.1);
}

.password-result {
  display: grid;
  gap: 16px;
}

.password-display {
  display: flex;
  gap: 12px;
  align-items: center;
}

.password-input {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  background: var(--accent);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  color: var(--text);
  cursor: text;
  transition: all 0.3s ease;
}

.password-input:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(124, 222, 43, 0.15);
  transform: translateY(-2px);
}

.password-input:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.copy-btn {
  padding: 16px;
  font-size: 18px;
  background: var(--accent);
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.copy-btn:hover {
  background: var(--primary);
  color: var(--bg);
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 222, 43, 0.3);
}

.copy-btn:active {
  transform: scale(0.95) translateY(0);
}

.password-strength {
  display: flex;
  align-items: center;
  gap: 16px;
}

.strength-bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.strength-fill {
  height: 100%;
  width: 0%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
}

.strength-fill.very-weak { background: #ff0000 !important; }
.strength-fill.weak { background: #ff6b6b !important; }
.strength-fill.medium { background: #ffd93d !important; }
.strength-fill.strong { background: #6bcf7f !important; }
.strength-fill.very-strong { background: #4caf50 !important; }

#strength-text {
  font-weight: 600;
  min-width: 120px;
  text-align: right;
  transition: all 0.3s ease;
}

.password-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.modern-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.modern-btn:hover::before {
  width: 300px;
  height: 300px;
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.modern-btn:active {
  transform: translateY(-1px);
  transition: all 0.1s ease;
}

.multiple-passwords {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.multiple-passwords h3 {
  margin: 0 0 16px 0;
  color: var(--text);
}

.password-list {
  display: grid;
  gap: 12px;
}

.password-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.2s ease;
  animation: fadeIn 0.3s ease;
}

.password-item:hover {
  transform: translateX(4px);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(124, 222, 43, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.password-item .password-text {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text);
}

.password-item .copy-item-btn {
  padding: 8px 12px;
  font-size: 14px;
  background: var(--accent);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.password-item .copy-item-btn:hover {
  background: var(--primary);
  color: var(--bg);
  transform: scale(1.1);
}

.password-item .copy-item-btn:active {
  transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 23, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
  }
  
  .site-nav[data-open="true"] {
    transform: translateX(0);
  }
  
  .site-nav ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 24px;
    padding: 80px 20px 20px;
  }
  
  .site-nav a {
    font-size: 18px;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
  }
  
  .site-nav a:hover {
    background: var(--primary);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 222, 43, 0.3);
  }
  
  .site-nav a.active {
    background: var(--primary);
    color: var(--bg);
    transform: scale(1.05);
  }
  
  .header-actions {
    gap: 12px;
  }
  
  .lang-trigger {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .password-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .password-actions {
    flex-direction: column;
  }
  
  .password-display {
    flex-direction: column;
    gap: 16px;
  }
  
  .password-strength {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  #strength-text {
    text-align: center;
  }
  
  .length-control {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  
  .length-slider {
    width: 100%;
  }
  
  #length-value {
    align-self: center;
  }
}

/* Estilos para el analizador de Instagram */
#ig-analyzer {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

#ig-analyzer .section-description {
  color: var(--muted);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.1rem;
}

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

#ig-analyzer label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text);
}

#ig-analyzer input[type="text"] {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--card);
  color: var(--text);
  transition: border-color 0.3s ease;
}

#ig-analyzer input[type="text"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(124, 222, 43, 0.1);
}

#ig-analyzer .help-text {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
}

#ig-analyzer .btn.primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

#ig-analyzer .empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

#ig-analyzer .empty-icon {
  margin-bottom: 1rem;
  opacity: 0.6;
}

#ig-analyzer .empty h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}

#ig-analyzer .progress {
  margin: 2rem 0;
}

#ig-analyzer .results {
  margin-top: 2rem;
}

/* Responsive para Instagram Analyzer */
@media (max-width: 768px) {
  #ig-analyzer {
    padding: 1rem;
  }
  
  #ig-analyzer .section-description {
    font-size: 1rem;
  }
  
  #ig-analyzer .btn.primary {
    width: 100%;
    justify-content: center;
  }
}

/* Estilos para la página de inicio */
.hero-section {
  text-align: center;
  padding: 3rem 2rem;
}

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.hero-description {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.feature-icon {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

/* Responsive para página de inicio */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 1rem;
  }
  
  .hero-section h2 {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
}


