:root {
  --bg-color: #121212;
  --text-color: #ffffff;
  --accent: #FFD700;
  --accent-dark: #ccaa00;
  --card-bg: #1e1e1e;
  --border-color: #333;
  --shadow-color: rgba(255, 215, 0, 0.08);
  --danger: #ff4e4e;
  --warning: #ff9800;
  --success: #9cffb0;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: var(--bg-color);
  color: var(--text-color);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
}


.main-wrapper {
  display: flex;
  flex-direction: column;
  background: var(--bg-color);
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  overflow-x: hidden;
}



.scroll-area {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.2rem 1rem 6rem;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 480px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: calc(env(safe-area-inset-bottom, 0) + 5rem);
  padding-top: 0.2rem;
}


.safe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 1rem;
  background: var(--bg-color);
  overflow-y: auto;
}

.main-card {
  background-color: #1e1e1e;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 320px;
  box-sizing: border-box;
  margin: 0 auto;

}

.refresh-btn {
  position: fixed;
  bottom: 90px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #ffe347, #ffc800);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 999;
  cursor: pointer;
}

.refresh-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.35);
}



.logo-img {
  display: block;
  margin: 0 auto;
  max-width: 90px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  animation: logoPop 0.7s ease-out;
}



@keyframes logoPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


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

.user-select select {
  width: 100%;
  background: var(--card-bg);
  color: var(--text-color);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1rem;
  border-radius: 14px;
  font-size: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.summary-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.6rem 1rem;
  overflow-x: hidden;   
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 2rem;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 480px;
}

.resumen-metrica h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.resumen-metrica p {
  margin: 0.4rem 0;
  font-size: 1.05rem;
  text-align: center;
}

#circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
  z-index: 2;
}
.chart-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 2rem auto;
}

#barra-general {
  background: #2a2a2a;
  height: 24px;
  border-radius: 20px;
  margin: 2rem 0 1rem;
  position: relative;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.15);
  width: 100%;
  overflow: hidden;
}

#relleno-general {
  height: 100%;
  background: linear-gradient(to right, #FFD700, #FFA500);
  border-radius: 20px;
  transition: width 0.5s ease-in-out;
}

.pin {
  position: absolute;
  transition: top 0.3s ease, left 0.4s ease;
  top: -24px;
  width: 24px;
  height: 24px;
  background: #ff4fa3;
  border-radius: 50%;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  box-shadow: 0 0 6px rgba(255, 79, 163, 0.5);
  z-index: 2;
}


.meta-box {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.4rem;
  margin-top: 2rem;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.meta-box p {
  text-align: center;
  margin: 0.4rem 0;
}

.barra-meta {
  width: 100%;
  height: 14px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 0.6rem;
}

.relleno-meta {
  height: 100%;
  transition: width 0.5s ease;
}

#metas-todas ul {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

#metas-todas li {
  padding: 0.5rem 0.8rem;
  margin-bottom: 0.4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  font-size: 0.95rem;
}

#metas-todas li.past {
  color: var(--danger);
  text-decoration: line-through;
}

#metas-todas li.future {
  background: rgba(80, 160, 100, 0.15);
  color: var(--text-color);
}

.btn-back {
  text-align: center;
  margin-top: 2rem;
}

.btn-back button {
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border: none;
  border-radius: 16px;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: bold;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back button:hover {
  transform: scale(1.05);
}

.loader {
  border: 6px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid var(--accent);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
  z-index: 100;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hidden {
  display: none;
}

.title-accent {
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.sub {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  color: #f0f0f0;
}

.btn {
  display: inline-block;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 14px;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.btn:hover {
  transform: scale(1.05);
}

.error {
  color: var(--danger);
  margin-top: 1rem;
  font-size: 0.95rem;
  background: rgba(255, 0, 0, 0.1);
  padding: 0.8rem;
  border-radius: 12px;
  text-align: center;
}

.roadmap-wrapper {
  position: relative;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 1rem;
}


.roadmap-track {
  position: relative;
  height: 12px;
  width: 100%;
  background: #2c2c2c;
  border-radius: 6px;
}


.roadmap-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#roadmap-inner {
  height: 100%;
  background: linear-gradient(to right, var(--accent), var(--accent-dark));
  border-radius: 6px;
  transition: width 0.4s ease-in-out;
}
.mov-card {
  background: #2a2a2a;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.95rem;
}

.mov-fecha {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0.4rem;
}

.mov-dato {
  margin: 0.2rem 0;
}

.mov-obs {
  margin-top: 0.4rem;
  font-size: 0.85rem;
  opacity: 0.8;
}



body::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}
/* Animación fade-in */
.fade-in {
  animation: fadeIn 0.4s ease forwards;
  opacity: 0;
}

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

/* Paginación */
.paginacion {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.paginacion button {
  background-color: #3a3a3a;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.paginacion button:hover:enabled {
  background-color: #555;
}

.paginacion button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.mov-card.efectivo { border-left: 4px solid #2ecc71; }
.mov-card.transferencia { border-left: 4px solid #3498db; }
.mov-card.qr { border-left: 4px solid #f1c40f; }

.btn.disabled {
  pointer-events: none;
  opacity: 0.5;
}

.dashboard-header-fecha {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.6;
  margin: 1rem auto 0.2rem;
}






.error-box {
  background: #2a0000;
  color: #ff4d4d;
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 12px;
  text-align: center;
  max-width: 300px;
  font-size: 0.9rem;
}
.bottom-nav {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: #1e1e1e;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  gap: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 200;
}

.nav-btn {
  color: #ccc;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.nav-btn.active {
  background: #FFD70022;
  color: #FFD700;
}


.bottom-tabs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: space-around;
  padding: 0.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 999;
}

.tab-item {
  flex: 1;
  text-align: center;
  color: #aaa;
  font-size: 0.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  transition: all 0.3s ease;
}

.tab-item.active {
  color: #FFD700;
  font-weight: bold;
}

.tab-item .icon {
  font-size: 1.4rem;
}



.nav-btn .label {
  font-size: 0.7rem;
  line-height: 1;
}


/* 🔄 Fondo animado sutil */
.background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: radial-gradient(circle at center, #FFD70010 0%, transparent 60%);
  pointer-events: none;
}


@keyframes floatBg {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* 🎞️ Animación logo */
.animate-logo {
  animation: scaleFadeIn 0.7s ease forwards;
  opacity: 0;
  transform: scale(0.8);
}

@keyframes scaleFadeIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* 🎯 Centrar login de Google */
.g-signin-center {
  display: flex !important;
  justify-content: center;
}



/* 👋 Bienvenida */
.welcome-message {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.2rem;
  color: #ffd700;
  background: radial-gradient(circle at top left, #222 0%, #111 100%);
  padding: 1.5rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  animation: welcomeFadeIn 0.6s ease-out forwards;
  z-index: 999;
}

@keyframes welcomeFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}



.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #111;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}


.user-info {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: white;
}

.user-photo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid gold;
  object-fit: cover;
}

.logout-btn {
  background-color: #f44336;
  color: white;
  font-weight: bold;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.logout-btn:hover {
  background-color: #d32f2f;
}
#circle-progress {
  transition: stroke-dashoffset 0.9s ease-in-out;
}

.add-mov-btn {
  position: fixed;
  bottom: 160px;
  right: 16px;
  background: #4CAF50;
  color: white;
  border: none;
  font-size: 22px;
  padding: 12px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: opacity 0.3s ease;
}

.modal.hidden {
  display: none;
  opacity: 0;
}


.modal-content {
  background-color: #1e1e1e;
  color: var(--text-color);
  padding: 2rem;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content h3 {
  margin-top: 0;
}

.modal-content label {
  display: block;
  margin: 1rem 0 0.5rem;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  background-color: #2a2a2a;
  color: white;
  border: 1px solid var(--accent);
}

.modal-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}
/* === INPUTS BONITOS PARA FORMULARIO === */
.modal-content input,
.modal-content select,
.modal-content textarea {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 8px;
  font-size: 16px;
}

@media (max-height: 600px) {
  .modal-content {
    max-height: 85vh;
    padding: 1rem;
    font-size: 0.95rem;
  }
}


.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.formulario-movimiento {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.formulario-movimiento input,
.formulario-movimiento select {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.formulario-movimiento button {
  background-color: #ffd700;
  border: none;
  padding: 0.9rem;
  width: 100%;
  border-radius: 0.6rem;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.formulario-movimiento button:hover {
  background-color: #f2c300;
}

.styled-select {
  background: white;
  color: black;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: border-color 0.3s ease;
  margin-bottom: 0.8rem;
  height: auto;
  line-height: 1.2;
}
#selector-contenedor {
  margin: 0.5rem 0;
}


.styled-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}
.choices {
  background-color: var(--card-bg) !important;
  color: var(--text-color) !important;
  border: 1px solid var(--accent);
  border-radius: 8px;
}

.choices__inner {
  background-color: var(--card-bg) !important;
  color: var(--text-color) !important;
  border: none !important;
  padding: 0.5rem 0.75rem;
}

.choices__list--dropdown {
  background-color: var(--card-bg) !important;
  border: 1px solid var(--accent);
  border-top: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  scrollbar-width: none;
}

.choices__list--dropdown .choices__item {
  padding: 0.5rem 1rem;
  color: var(--text-color);
  background-color: var(--card-bg);
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: var(--accent-dark);
  color: #000;
}

.choices[data-type*="select-one"] .choices__button {
  background-color: var(--accent-dark);
  border-radius: 4px;
}

.choices__input {
  background: transparent !important;
  color: var(--text-color) !important;
  border: none !important;
}

.choices__list--dropdown::-webkit-scrollbar {
  display: none;
}

.choices__placeholder {
  opacity: 0.8;
  color: var(--text-color);
}

.resumen-tarjetas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  padding: 0.3rem 0.5rem;
  justify-items: center;
  align-items: center;
  max-width: 320px;
  margin: 0 auto;
}

.tarjeta-resumen {
  background: linear-gradient(145deg, #f6c700, #ffab00);
  color: white;
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  width: 100%;
  max-width: 130px;
  height: 50px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.2s ease;
}

.tarjeta-icono {
  font-size: 1.1rem;
  margin-bottom: 0.1rem;
  line-height: 1;
}

.tarjeta-label {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1;
  margin-bottom: 0.1rem;
}

.tarjeta-valor {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
}


.resumen-lider-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  margin: 1rem auto;
  border-radius: 12px;
  max-width: 420px;
}

.usuario-item {
  margin-bottom: 0.6rem;
}

.usuario-item strong {
  font-size: 0.95rem;
  display: inline-block;
  width: 60%;
}

.usuario-barra {
  background-color: rgba(255,255,255,0.1);
  height: 10px;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 4px;
}

.usuario-barra-inner {
  height: 100%;
  background: var(--accent);
  transition: width 0.4s ease;
}
.usuario-card {
  background: #1e1e1e;
  padding: 0.8rem;
  border-radius: 10px;
  margin-bottom: 0.8rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.usuario-detalle {
  font-size: 0.85rem;
  margin-top: 0.2rem;
  color: #ccc;
}

.paginador {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.paginador button {
  background: #333;
  border: none;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-size: 0.9rem;
}

.paginador button:hover {
  background: var(--accent-dark);
}

.paginador button.activo {
  background: var(--accent);
  font-weight: bold;
}

.paginador button:disabled {
  opacity: 0.4;
  cursor: default;
}
.tarjeta-sub {
  font-size: 0.60rem;
  opacity: 0.8;
  margin-top: 0.1rem;
}

.minigrafico-card {
  background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  padding: 16px;
  margin: 20px auto;
  width: 90%;
  max-width: 400px;
}
:root {
  --safe-bottom: env(safe-area-inset-bottom, 20px);
}

.refresh-btn,
.add-mov-btn {
  bottom: calc(var(--safe-bottom) + 80px);
}

.bottom-tabs {
  padding-bottom: calc(var(--safe-bottom) + 4px);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffd700;
}

.user-name {
  font-weight: 500;
  color: #fff;
  font-size: 0.95rem;
}

.logout-btn {
  background: #ff3333;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.logout-btn:hover {
  background: #ff0000;
}
.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.user-name {
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
}

.user-date {
  color: #aaa;
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 2px;
  line-height: 1;
  opacity: 0.8;
}
.logo-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0 0.6rem;
  margin: 0 auto;
}






@keyframes glow-pulse {
  0%   { box-shadow: 0 0 6px #FFD700; }
  50%  { box-shadow: 0 0 20px #FFD700; }
  100% { box-shadow: 0 0 6px #FFD700; }
}

.camp-info {
  background: #111;
  color: #ccc;
  font-size: 0.9rem;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  max-width: 250px;
  animation: fadeIn 0.3s ease;
}

.hidden {
  display: none;
}

.insta-link {
  display: inline-block;
  margin-top: 8px;
  background: #e1306c;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.insta-link:hover {
  background: #c1275b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
main {
  padding-top: 0;
}

.logo-wrapper {
  margin-top: 8px;
}

/* Ajustar el combo visual generado por Choices.js */
.choices__inner {
  min-height: auto !important;
  padding: 6px 12px !important;
  font-size: 0.9rem !important;
  border-radius: 8px;
  line-height: 1.2;
}

.choices__list--single {
  padding: 0 !important;
}

.choices__placeholder {
  opacity: 0.6;
  font-style: italic;
}

.choices[data-type*="select-one"]::after {
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}



.info-card {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  margin: 20px auto; /* Más espacio entre tarjetas */
  max-width: 640px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left; /* Alinea el texto a la izquierda */
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.03);
}



.info-header {
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-body {
  color: white;
  font-size: 1rem;
  padding-top: 12px;
  padding-bottom: 4px;
  line-height: 1.8;
  text-align: left;
  white-space: pre-line;
  transition: all 0.3s ease;
}


.info-contenido.hidden {
  display: none;
}

.info-toggle {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.info-date {
  font-size: 0.8rem;
  color: #bbb;
  margin-top: 6px;
  display: block;
}


