/* Base Styles */
:root {
  --primary: #1db954;
  --primary-dark: #169c46;
  --primary-light: #3ecb6a;
  --primary-bg: #f0f9f3;
  --secondary: #333333;
  --text-dark: #333333;
  --text-light: #666666;
  --text-muted: #888888;
  --white: #ffffff;
  --light: #f6f3f3;
  --dark: #212529;
  --border: #e5e7eb;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
  --radius: 0.375rem;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --transition: all 0.2s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

ul {
  list-style: none;
}

/* Listas en GENERAL */

.lista{
  margin-bottom: 1rem;
}

.lista li{
  margin-bottom: 1rem;
}


img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}



.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-muted);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.py-12 {
  padding: 2rem 6rem 3rem 6rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.max-w-2xl {
  max-width: 42rem;
}

.bg-white {
  background-color: var(--white);
}

.bg-light {
  background-color: var(--light);
}

/* Grid */
.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.card-grid-2 {
  grid-template-columns: 1fr;
}

.card-grid-3 {
  grid-template-columns: 1fr;
}


@media (min-width: 768px) {
  .grid-2-cols {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .card-grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .card-grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 185, 84, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  padding: 0 0rem;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: row;
  }
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary);
}

.section-subtitle {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-header {
  padding: 1.5rem 1.5rem 0.75rem;
}

.card-header.text-center {
  text-align: center;
}

.card-header.flex-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.card-body {
  padding: 0.75rem 1.5rem;
  flex-grow: 1;
}


/* Feature Cards */
.feature-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feature-card-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary);
  font-weight: 500;
  margin-top: 1rem;
}

.feature-card:hover .feature-card-link {
  text-decoration: underline;
}

/* Feature Boxes */
.feature-box {
  background-color: var(--light);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.feature-box h3 {
  margin-bottom: 0.75rem;
}

/* Community Structure */
.community-structure {
  position: relative;
  height: 400px;
  max-width: 32rem;
  margin: 0 auto;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-1 {
  width: 300px;
  height: 300px;
  border: 4px solid rgba(29, 185, 84, 0.2);
}

.circle-2 {
  width: 220px;
  height: 220px;
  border: 4px solid rgba(29, 185, 84, 0.4);
}

.circle-3 {
  width: 140px;
  height: 140px;
  border: 4px solid rgba(29, 185, 84, 0.6);
}

.circle-4 {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
}

.structure-label {
  position: absolute;
  background-color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
}

.label-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -180px);
}

.label-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -140px);
}

.label-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100px);
}

.label-4 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100px);
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 1.5rem;
}

.cta-section p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  font-size: 1.25rem;
}


/* Icons */
.icon-primary {
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}


/* Page Header */
.page-header {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.page-header h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}

.toast {
  display: flex;
  align-items: flex-start;
  width: 350px;
  max-width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  background-color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: slideIn 0.3s ease-out;
}

.toast-success {
  border-left: 4px solid var(--success);
}

.toast-error {
  border-left: 4px solid var(--danger);
}

.toast-content {
  flex-grow: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Responsive Utilities */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .py-12 {
    padding: 2rem 3rem 3rem 3rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section {
    padding: 2rem 0;
  }
}

/* ===== Wallet CEMTCA (acotado) ===== */
#wallet-cemtca { --wallet-card-bg: #f8f9fa; } /* gris clarísimo; ajusta si usáis otro tono */

#wallet-cemtca .container { max-width: 1100px; margin: 0 auto; padding: 0 1rem; }
#wallet-cemtca .wallet-header { text-align: center; margin-bottom: 1.5rem; }
#wallet-cemtca .wallet-header .section-title { color: var(--primary); }

/* Caja con fondo gris claro “exacto” como las cabeceras de las otras cajas */
#wallet-cemtca .wallet-box {
  background: var(--wallet-card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
#wallet-cemtca .wallet-box p { margin: 0 0 1rem 0; text-align: justify; color: var(--text-dark); }
#wallet-cemtca .wallet-stack > * + * { margin-top: 1rem; }

/* Lista: solo bullets verdes */
#wallet-cemtca .wallet-benefits { margin: .75rem 0 0 0; padding: 0; list-style: none !important; }
#wallet-cemtca .wallet-benefits li { position: relative; padding-left: 1.25rem; text-align: justify; }
#wallet-cemtca .wallet-benefits li::before {
  content: ""; position: absolute; left: 0; top: .6em; width: .5rem; height: .5rem;
  background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 3px rgba(29,185,84,.15);
}

/* Logos */
#wallet-cemtca .wallet-logos {
  margin-top: 1rem; display: flex; gap: 1rem; align-items: center; justify-content: center; flex-wrap: wrap;
}
#wallet-cemtca .wallet-logos img { height: 36px; max-width: 140px; object-fit: contain; opacity: .95; }

/* Botón verde ancho */
#wallet-cemtca .wallet-actions { margin-top: 1.25rem; }
#wallet-cemtca .btn-block-green {
  display: block; width: 100%; text-align: center; padding: 1rem 1.25rem;
  background: var(--primary); color: #fff; text-decoration: none; font-weight: 600;
  border: 1px solid var(--primary); border-radius: 12px; box-shadow: var(--shadow); transition: var(--transition);
}
#wallet-cemtca .btn-block-green:hover {
  background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px);
}

/* Responsivo */
@media (max-width: 768px) {
  #wallet-cemtca .wallet-box { padding: 1.5rem; border-radius: 12px; }
}

/* ===== Bullets verdes para TODAS las listas de la página Wallet ===== */
#wallet-page ul {
  list-style: none;           /* quitamos viñeta nativa */
  margin: .5rem 0 0 0;
  padding: 0;
}

#wallet-page ul > li {
  position: relative;
  padding-left: 1.25rem;      /* espacio para el bullet */
  text-align: justify;
}

/* Alineado a la primera línea del texto */
#wallet-page ul > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;                /* afina 0.60–0.75em según line-height */
  transform: translateY(-50%);
  width: .5rem;
  height: .5rem;
  background: var(--primary); /* verde corporativo */
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(29,185,84,.15); /* halo suave */
}

/* Evitar duplicados si hay iconos FontAwesome en las listas */
#wallet-page ul li i.fa,
#wallet-page ul li i.fas,
#wallet-page ul li i.far,
#wallet-page ul li i.fal {
  display: none !important;
}

/* ===== Logo PassCreator (página Wallet) ===== */
#wallet-page .tech-partner-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* Control de tamaño del logo */
#wallet-page .tech-partner-image img {
  max-width: 240px;   /* 200–260 px recomendado */
  max-height: 60px;   /* evita logos desproporcionados */
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Oculta/neutraliza el placeholder antiguo si quedase en el DOM */
#wallet-page .partner-visual {
  border: none !important;
  background: transparent !important;
  height: auto !important;
  display: none; /* opcional: ocultar del todo */
}



```css
/* ===== Bullets verdes – Global, con exclusiones seguras ===== / / 1) Estilo de bullets para listas de CONTENIDO (no menús ni utilidades) / ul:not(.nav-links):not(.dropdown-menu):not(.mobile-menu-nav) :not(.footer-links):not(.social-links):not(.contact-info):not(.breadcrumbs) { list-style: none; / anulamos viñeta nativa */
margin: .5rem 0 0 0;
padding: 0;
}

/* 2) Bullet verde alineado a la primera línea / ul:not(.nav-links):not(.dropdown-menu):not(.mobile-menu-nav) :not(.footer-links):not(.social-links):not(.contact-info):not(.breadcrumbs) > li { position: relative; padding-left: 1.25rem; / espacio para el bullet / text-align: justify; / mantenemos coherencia con el resto del sitio */
}

ul:not(.nav-links):not(.dropdown-menu):not(.mobile-menu-nav)
:not(.footer-links):not(.social-links):not(.contact-info):not(.breadcrumbs) > li::before {
content: "";
position: absolute;
left



