/* ===== Variables y base ===== */
:root{
  --olive: #3c5b2b;       /* verde olivo principal */
  --olive-2: #90a17b;     /* tonos suaves (borde/sutil) */
  --text: #1f2917;        /* texto primario */
  --muted: #5b6650;       /* texto secundario */
  --bg: #ffffff;          /* fondo blanco */
  --danger: #dc3545;      /* color de peligro/error */
  --warning: #ffc107;     /* color de advertencia */
  --success: #28a745;     /* color de éxito */
  --radius: 14px;
  --maxw: 1080px;
  --gap: 20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img{max-width:100%;display:block}

/* ===== Utilidades ===== */
.container{max-width:var(--maxw);margin-inline:auto;padding:0 20px}
.muted{color:var(--muted)}
.small{font-size:.9rem}

.topbar{
  background: #dfe9d7;
  color: var(--olive);
  text-align:center;
  padding:6px 10px;
  font-size:.9rem;
  border-bottom:1px solid var(--olive-2);
}

/* ===== Header / Nav ===== */
.site-header{
  position: sticky; top: 0; z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--olive-2);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height:64px;
}
.brand{font-weight:700; color: var(--olive); text-decoration:none}
.nav a{
  color: var(--olive);
  text-decoration:none; margin-left: 14px; padding: 8px 10px; border-radius:10px;
}
.nav a:hover{background:#eef4ea}

/* ===== Hero ===== */
.hero{padding:56px 0}
.hero-grid{
  display:grid; grid-template-columns: 1.1fr .9fr; gap: var(--gap); align-items:center;
}
.hero h1{
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.1;
  margin: 0 0 10px;
  color: var(--olive);
}
.lead{font-size:1.05rem; color: var(--muted)}
.btn{
  display:inline-block; margin-top:14px; background: var(--olive); color: #fff;
  padding: 12px 18px; border-radius: 999px; text-decoration:none; border: none; cursor:pointer;
}
.btn:hover{opacity:.95}
.hero-media img{border:1px solid var(--olive-2); border-radius: var(--radius)}

/* ===== Secciones ===== */
.section{padding:42px 0}
.two-col{display:grid; grid-template-columns: 1fr 1fr; gap: var(--gap)}
.img-card img{border:1px solid var(--olive-2); border-radius: var(--radius)}

.bullets{padding-left: 18px}
.bullets li{margin-bottom:6px}

.divider{
  border:0; height:1px; background: var(--olive-2); margin: 0;
}

/* ===== Formulario ===== */
.form{display:grid; grid-template-columns: 1fr 1fr; gap: 12px}
.form label{display:flex; flex-direction:column; gap:6px; color: var(--olive)}
.form input, .form textarea{
  padding: 12px 14px; border:1px solid var(--olive-2); border-radius:10px;
  outline-color: var(--olive);
}
.form .full{grid-column: 1 / -1}

/* ===== Footer ===== */
.site-footer{border-top:1px solid var(--olive-2); padding: 22px 0; margin-top: 24px}
.footer-grid{display:flex; align-items:center; justify-content:space-between; gap: 12px}
.footer-links a{color: var(--olive); text-decoration:none}
.footer-links a:hover{text-decoration:underline}

/* ===== Políticas de Privacidad ===== */
.policy-hero {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8faf5 0%, #eef4ea 100%);
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-intro {
  background: var(--bg);
  border-left: 4px solid var(--olive);
  padding: 20px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--olive-2);
}

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

.legal-section h2 {
  color: var(--olive);
  font-size: 1.4rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--olive-2);
}

.legal-section h3 {
  color: var(--text);
  font-size: 1.1rem;
  margin: 20px 0 10px 0;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.legal-section ul.bullets {
  margin: 16px 0;
}

.legal-section ul.bullets li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-info {
  background: #f8faf5;
  padding: 20px;
  border-radius: var(--radius);
  margin: 20px 0;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info a {
  color: var(--olive);
  text-decoration: underline;
}

.contact-section {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===== Alertas y Notificaciones ===== */
.alert {
  padding: 15px 20px;
  border-radius: var(--radius);
  margin: 16px 0;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-color: #bee5eb;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  border-radius: var(--radius);
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.notification-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.notification-info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* ===== Página de Eliminar Cuenta ===== */
.delete-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-bottom: 3px solid var(--danger);
}

.delete-methods {
  background: linear-gradient(135deg, #f8faf5 0%, #eef4ea 100%);
}

.method-card {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(60, 91, 43, 0.1);
  text-align: center;
  border-left: 4px solid var(--olive);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 91, 43, 0.15);
}

.method-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--olive);
}

.what-happens {
  padding: 50px 0;
  background: var(--bg);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
  margin-top: 30px;
}

.info-card {
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.info-card:nth-child(1) { border-top-color: var(--danger); }
.info-card:nth-child(2) { border-top-color: var(--warning); }
.info-card:nth-child(3) { border-top-color: var(--olive); }

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.info-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.info-icon.danger { color: var(--danger); }
.info-icon.warning { color: var(--warning); }
.info-icon.info { color: var(--olive); }

.legal-retention {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-left: 4px solid var(--warning);
  padding: 40px 0;
}

.legal-notice {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.2);
}

.legal-warning {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 25px;
  border-left: 4px solid var(--success);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.2);
}

/* ===== Formulario de Eliminación ===== */
.delete-form-section {
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
  padding: 60px 0;
}

.form-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid var(--olive-2);
}

.form-header {
  background: linear-gradient(135deg, var(--olive) 0%, #4a6741 100%);
  color: white;
  padding: 40px;
  text-align: center;
  position: relative;
}

.form-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 10px solid var(--olive);
}

.form-icon {
  margin-bottom: 15px;
}

.icon-warning {
  font-size: 3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.form-header h2 {
  margin: 0 0 10px 0;
  font-size: 1.8rem;
  font-weight: 600;
}

.form-subtitle {
  margin: 0;
  opacity: 0.9;
  font-size: 1rem;
  font-weight: 300;
}

.delete-form-modern {
  padding: 40px;
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

.form-field input,
.form-field select {
  padding: 16px 18px;
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--olive);
  background: white;
  box-shadow: 0 0 0 3px rgba(60, 91, 43, 0.1);
  transform: translateY(-1px);
}

.field-help {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.confirmation-section {
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
  border-radius: 16px;
  border: 2px solid #feb2b2;
}

.warning-box {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border-left: 5px solid var(--danger);
}

.warning-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.warning-content h4 {
  margin: 0 0 15px 0;
  color: var(--danger);
  font-size: 1.1rem;
}

.warning-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.warning-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.confirmation-checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 15px;
  cursor: pointer;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.confirmation-checkbox:hover {
  border-color: var(--olive-2);
  background: #fafbfc;
}

.confirmation-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
  accent-color: var(--olive);
  cursor: pointer;
}

.checkbox-label {
  flex: 1;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
}

.form-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 160px;
  justify-content: center;
}

.btn-secondary {
  background: #f8f9fa;
  color: var(--text);
  border: 2px solid #dee2e6;
}

.btn-secondary:hover {
  background: #e9ecef;
  border-color: var(--olive-2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #c82333 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #a71e2a 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.btn-icon {
  font-size: 1.1rem;
}

.form-footer {
  padding: 30px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.footer-note {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
  justify-content: center;
}

.info-icon {
  font-size: 1.2rem;
  color: var(--olive);
}

/* ===== Responsive Formulario ===== */
@media (max-width: 900px) {
  .form-wrapper {
    margin: 0 15px;
    border-radius: 16px;
  }
  
  .form-header {
    padding: 30px 25px;
  }
  
  .form-header h2 {
    font-size: 1.5rem;
  }
  
  .delete-form-modern {
    padding: 30px 25px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
  }
  
  .confirmation-section {
    padding: 25px 20px;
  }
  
  .warning-box {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .form-actions {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn {
    width: 100%;
  }
  
  .form-footer {
    padding: 25px 20px;
  }
}

.additional-info {
  background: var(--bg);
  padding: 50px 0;
}

.info-box {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #f8faf5 0%, #eef4ea 100%);
  border-radius: var(--radius);
  box-shadow: 0 4px 12px rgba(60, 91, 43, 0.1);
  border-top: 4px solid var(--olive);
  transition: transform 0.3s ease;
}

.info-box:hover {
  transform: translateY(-3px);
}

.info-box .info-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--olive);
}

.info-box h3 {
  color: var(--olive);
  margin-bottom: 15px;
}

/* ===== Bottom Bar ===== */
.bottom-bar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 15px 0;
  border-top: 2px solid var(--olive-2);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.bottom-link {
  color: #ecf0f1;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.bottom-link:hover {
  color: var(--olive-2);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

.separator {
  color: #7f8c8d;
  margin: 0 8px;
  font-weight: bold;
}

/* ===== Responsive ===== */
@media (max-width: 900px){
  .hero-grid, .two-col, .form{grid-template-columns: 1fr}
  .site-header .container{height:auto; padding: 12px 20px; gap: 10px; flex-wrap:wrap}
  .nav a{margin-left:0}
  .policy-content {
    padding: 20px 15px;
  }
  
  .legal-section h2 {
    font-size: 1.2rem;
  }
  
  .contact-info {
    padding: 15px;
  }
  
  .contact-section {
    padding: 20px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border: 1px solid var(--olive-2);
    border-radius: var(--radius);
    padding: 15px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav.nav-open {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-header {
    position: relative;
  }

  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--olive);
    cursor: pointer;
    padding: 5px;
  }
}

@media (min-width: 901px) {
  .mobile-toggle {
    display: none;
  }
}

@media (max-width: 900px) {
  .info-cards {
    grid-template-columns: 1fr;
  }
  
  .method-card {
    padding: 20px;
  }
  
  .checkbox-wrapper {
    flex-direction: column;
    gap: 8px;
  }
  
  .bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ===== Página App Móvil ===== */
.app-hero {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  position: relative;
  overflow: hidden;
}

.app-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(60, 91, 43, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.coming-soon-badge {
  margin-top: 20px;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--olive) 0%, #4a6741 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(60, 91, 43, 0.3);
}

.app-mockup {
  position: relative;
  text-align: center;
}

.app-mockup img {
  max-width: 300px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.app-mockup:hover img {
  transform: rotate(0deg) scale(1.05);
}

.download-section {
  background: linear-gradient(135deg, #f8faf5 0%, #eef4ea 100%);
}

.step-list {
  margin: 20px 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  border-left: 4px solid var(--olive);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--olive);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  flex-shrink: 0;
}

.coming-soon-info {
  text-align: center;
  margin: 30px 0 20px 0;
  font-weight: 600;
  color: var(--olive);
}

.store-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  border-radius: var(--radius);
  color: var(--muted);
  opacity: 0.7;
}

.preview-card {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  margin: 0 auto;
}

.preview-card img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(60,91,43,0.10);
}

.features-section {
  background: var(--bg);
}

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

.feature-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--olive);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

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

.support-section {
  background: linear-gradient(135deg, #f1f8ff 0%, #e3f2fd 100%);
  padding: 60px 0;
}

.support-header {
  text-align: center;
  margin-bottom: 50px;
}

.support-icon-main {
  font-size: 4rem;
  margin-bottom: 20px;
}

.support-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.support-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-bottom: 4px solid var(--olive);
}

.support-card .support-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.support-card h3 {
  color: var(--olive);
  margin-bottom: 15px;
}

.support-card p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.support-card a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: underline;
}

.support-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

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

.btn-primary:hover {
  background: #4a6741;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(60, 91, 43, 0.3);
}

.legal-section {
  background: #f8f9fa;
}

.legal-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.legal-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 4px solid var(--olive);
  transition: all 0.3s ease;
}

.legal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
}

.legal-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.legal-card h3 {
  color: var(--olive);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.legal-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.arrow {
  font-size: 1.5rem;
  color: var(--olive);
  font-weight: bold;
  margin-left: auto;
}

/* ===== Responsive App Móvil ===== */
@media (max-width: 900px) {
  .app-mockup img {
    max-width: 250px;
  }
  
  .store-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .support-info-grid {
    grid-template-columns: 1fr;
  }
  
  .support-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .legal-cards {
    grid-template-columns: 1fr;
  }
  
  .legal-card {
    padding: 20px;
  }
}

/* ===== Botones de descarga de tienda ===== */
.app-download {
  margin-top: 24px;
}
.store-buttons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  background: #f8f9fa;
  color: var(--olive);
  border: 2px solid var(--olive-2);
  text-decoration: none;
  transition: all 0.2s;
}
.store-btn.google-play {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}
.store-btn.google-play:hover {
  background: #1558b0;
  border-color: #1558b0;
}
.store-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
  background: #e9ecef;
  color: #888;
  border-color: #ccc;
}
.store-btn i {
  font-size: 1.3em;
}

/* Mejora de iconografía general */
.method-icon i,
.info-icon i,
.legal-icon i,
.warning-icon i {
  color: var(--olive);
}

.info-icon.danger i { color: var(--danger); }
.info-icon.warning i { color: var(--warning); }
.info-icon.info i { color: var(--olive-2); }

.warning-icon i {
  color: var(--danger);
  font-size: 2.2rem;
}

.form-icon i {
  color: var(--danger);
  font-size: 2.2rem;
}

:root {
  --bg-card: rgba(255, 255, 255, 0.05);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --accent: #00ffaa; /* O el color de tu marca */
}

.store-container {
  max-width: 400px;
  font-family: 'Inter', -apple-system, sans-serif;
}

.store-header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-badge {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(0, 255, 170, 0.1);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  font-weight: 700;
}

.store-grid {
  display: flex;
  gap: 12px;
}

.store-card {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  cursor: not-allowed;
  user-select: none;
}

.store-card.disabled {
  opacity: 0.5;
  filter: grayscale(1);
}

.store-logo {
  fill: var(--text-main);
  margin-right: 12px;
}

.store-text {
  display: flex;
  flex-direction: column;
}

.text-upper {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1;
}

.text-brand {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 2px;
}

/* Efecto hover sutil incluso en disabled para UX */
.store-card.disabled:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
