/* Modal CTA reutilizable */
/* Modal CTA reutilizable (centrado en pantalla, overlay cubriendo todo) */
.cta-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
}
.cta-modal.show {
  display: flex;
}
.cta-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(.4,1.6,.6,1) 1;
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover {
  color: #e74c3c;
}
.cta-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.cta-3d-btn {
  display: block;
  background: linear-gradient(90deg, #2e86de 0%, #48c6ef 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 12px;
  box-shadow: 0 4px 0 #1b4f72, 0 8px 24px rgba(46,134,222,0.18);
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: transform 0.12s, box-shadow 0.12s;
  position: relative;
}
.cta-3d-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 #1b4f72, 0 4px 12px rgba(46,134,222,0.12);
}
.cta-3d-btn:hover {
  background: linear-gradient(90deg, #48c6ef 0%, #2e86de 100%);
}
/* General Styles */
body {
  background-color: #f8f9fa;
}

.container-fluid {
  padding: 0;
}

#main-content {
  padding: 20px;
}

/* Navbar and Logo Styles */
.navbar {
  padding: 0;
  background: linear-gradient(135deg, #1e88e5, #1565c0) !important;
}

.finzapp-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* Enhanced 3D Navigation Links with 3D Text */
.navbar-nav .nav-link {
  color: #ffffff !important; 
  padding: 0.8rem 1.2rem !important;
  margin: 0.3rem 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #2196f3, #1976d2);
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.2),
    inset 0 -1px 1px rgba(0,0,0,0.1);
  text-shadow: 
    2px 2px 2px rgba(0,0,0,0.5),
    0 0 3px rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-link:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
  border-radius: 8px 8px 0 0;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #42a5f5, #1e88e5);
  box-shadow: 
    0 4px 8px rgba(0,0,0,0.3),
    inset 0 1px 1px rgba(255,255,255,0.3),
    inset 0 -1px 1px rgba(0,0,0,0.2);
  text-shadow: 
    3px 3px 3px rgba(0,0,0,0.6),
    0 0 5px rgba(255,255,255,0.4);
}

.navbar-nav .nav-link:active {
  transform: translateY(1px);
  box-shadow: 
    0 1px 2px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.1);
  text-shadow: 
    1px 1px 1px rgba(0,0,0,0.4),
    0 0 2px rgba(255,255,255,0.2);
}

.navbar-nav .nav-link.active {
  background: linear-gradient(135deg, #64b5f6, #2196f3);
  box-shadow: 
    0 2px 4px rgba(0,0,0,0.3),
    inset 0 1px 3px rgba(0,0,0,0.2);
  text-shadow: 
    2px 2px 4px rgba(0,0,0,0.7),
    0 0 4px rgba(255,255,255,0.3);
}

/* Card Styles */
.card {
  margin-bottom: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.input-group-credit-card {
  display: flex;
  gap: 10px;
}

.input-group-credit-card input {
  width: 60px;
  text-align: center;
}

/* Dashboard Styles */
.dashboard-card {
  height: 100%;
  min-height: 200px;
  transition: all 0.3s ease;
  background: white;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  box-shadow: 
    0 4px 6px rgba(0,0,0,0.05),
    inset 0 1px 0 rgba(255,255,255,0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.1),
    rgba(255,255,255,0)
  );
  border-radius: 10px 10px 0 0;
}

.dashboard-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 8px 15px rgba(0,0,0,0.1),
    inset 0 1px 0 rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  animation: pulse 1.5s infinite;
}

.dashboard-card:nth-child(1):hover {
  background: linear-gradient(135deg, #ffffff, #e3f2fd);
}

.dashboard-card:nth-child(2):hover {
  background: linear-gradient(135deg, #ffffff, #e8f5e9);
}

.dashboard-card:nth-child(3):hover {
  background: linear-gradient(135deg, #ffffff, #fff3e0);
}

.dashboard-card:nth-child(4):hover {
  background: linear-gradient(135deg, #ffffff, #f3e5f5);
}

.dashboard-card:nth-child(5):hover {
  background: linear-gradient(135deg, #ffffff, #e0f7fa);
}

.dashboard-card:nth-child(6):hover {
  background: linear-gradient(135deg, #ffffff, #f1f8e9);
}

.dashboard-card:nth-child(7):hover {
  background: linear-gradient(135deg, #ffffff, #fff8e1);
}

.dashboard-card:nth-child(8):hover {
  background: linear-gradient(135deg, #ffffff, #fce4ec);
}

.dashboard-card .card-body {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
}

.dashboard-card h5 {
  color: #495057;
  font-weight: 500;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

.dashboard-card h3 {
  color: #2196f3;
  font-weight: 600;
  margin-bottom: 0;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

.dashboard-card:hover h3 {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.dashboard-card .text-center {
  margin-top: 1rem;
}

.dashboard-card .bi {
  font-size: 2rem;
  transition: all 0.3s ease;
  color: #1976d2;
}

.dashboard-card:hover .bi {
  transform: scale(1.1) rotate(5deg);
  color: #2196f3;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0.2);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(33, 150, 243, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(33, 150, 243, 0);
  }
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* New Styles */
.currency-flag {
  width: 24px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  border: 1px solid #ddd;
  border-radius: 2px;
}

#exchange-rates table {
  margin-bottom: 0.5rem;
}

#exchange-rates td,
#exchange-rates th {
  vertical-align: middle;
  padding: 0.75rem;
}

#exchange-rates tbody tr:hover {
  background-color: rgba(0,123,255,0.05);
}

.user-banner {
  background: linear-gradient(135deg, #42a5f5, #1976d2);
  padding: 10px 20px;
  color: white;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.user-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.user-info:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.user-emoji {
  font-size: 1.5em;
}

.user-name {
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.emoji-selector {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  max-width: 300px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.emoji-option {
  font-size: 1.5em;
  padding: 8px;
  cursor: pointer;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s ease;
}

.emoji-option:hover {
  background: #f0f0f0;
  transform: scale(1.1);
}

.emoji-selector-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

/* Chatbot Styles */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.chat-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.chat-icon {
  font-size: 24px;
  color: white;
}

.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-container {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  height: 500px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.chat-container.chat-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.chat-button-hidden {
  opacity: 0;
  pointer-events: none;
}

.chat-header {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  margin: 0;
  font-size: 1.1em;
  font-weight: 500;
}

.chat-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.chat-messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  margin: 5px 0;
}

.user-message {
  background: #e3f2fd;
  color: #1565c0;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
}

.bot-message {
  background: #f5f5f5;
  color: #424242;
  align-self: flex-start;
  border-bottom-left-radius: 5px;
}

.chat-input-container {
  padding: 15px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

.chat-input {
  flex-grow: 1;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 20px;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input:focus {
  border-color: #1e88e5;
}

.chat-send {
  background: linear-gradient(135deg, #1e88e5, #1565c0);
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Profile Modal Styles */
.profile-modal .modal-body {
  padding: 20px;
}

.profile-form .form-group {
  margin-bottom: 1rem;
}

.profile-form label {
  font-weight: 500;
  color: #495057;
}

.profile-form .form-control {
  border-radius: 8px;
  border: 1px solid #ced4da;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.profile-form .form-control:focus {
  border-color: #1e88e5;
  box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
}

.profile-modal .modal-footer {
  border-top: 1px solid #dee2e6;
  padding: 1rem;
}

.profile-modal .btn-delete-account {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border: none;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.profile-modal .btn-delete-account:hover {
  background: linear-gradient(135deg, #c82333, #bd2130);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Contact Button Styles */
.contact-buttons {
  display: flex;
  gap: 10px;
}

.contact-btn {
  padding: 5px 15px;
  border: none;
  border-radius: 20px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.contact-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.email-btn {
  background: linear-gradient(135deg, #42a5f5, #1976d2);
}

.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e);
}

.internal-contact {
  background: linear-gradient(135deg, #6610f2, #6f42c1);
  border: none;
  padding: 8px 16px;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9em;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.internal-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.internal-contact:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Add message card styles */
.message-card {
  transition: all 0.3s ease;
}

.message-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.message-date {
  color: #6c757d;
  font-size: 0.9em;
}

.message-content {
  margin: 10px 0;
}

.admin-response {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 10px;
}

.admin-response h6 {
  color: #0d6efd;
  margin-bottom: 10px;
}

.admin-response p {
  margin-bottom: 5px;
}

.admin-response small {
  display: block;
  text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .input-group-credit-card {
    flex-wrap: wrap;
  }
  
  .input-group-credit-card input {
    width: calc(25% - 8px);
  }
  
  .dashboard-card {
    min-height: 150px;
  }
  
  .finzapp-logo {
    height: 40px;
  }
  
  /* Mobile navbar adjustments */
  .navbar-nav .nav-link {
    margin: 0.2rem 0;
  }
  
  .navbar-toggler {
    background: linear-gradient(135deg, #2196f3, #1976d2);
    border: none;
    box-shadow: 
      0 2px 4px rgba(0,0,0,0.2),
      inset 0 1px 1px rgba(255,255,255,0.2);
    padding: 0.5rem 0.8rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: 
      0 0 0 0.2rem rgba(255,255,255,0.2),
      0 2px 4px rgba(0,0,0,0.2),
      inset 0 1px 1px rgba(255,255,255,0.2);
  }
}

/* Add responsive styles for the chatbot */
@media (max-width: 768px) {
  .chat-container {
    width: calc(100% - 40px);
    height: 60vh;
    bottom: 80px;
  }
  
  .chat-button {
    width: 50px;
    height: 50px;
  }
  
  .chat-icon {
    font-size: 20px;
  }
}
.flag-emoji {
    font-family:
      "Twemoji Mozilla",
      "Segoe UI Emoji",
      "Apple Color Emoji",
      "Noto Color Emoji",
      "Segoe UI Symbol",
      emoji, sans-serif;
    font-size: 1.1em;
    line-height: 1;
    vertical-align: -0.1em;
  }
  /* PASO 5 corregido — oculto por defecto y visible solo si el <body> tiene la clase is-admin-version */
.version-badge { display: none; }
body.is-admin-version .version-badge { display: flex; align-items: center; }

/* ===== Unificar estilo del botón admin con los nav-link ===== */
.navbar .admin-button {
  /* Mismos tokens que .navbar-nav .nav-link */
  color: #ffffff !important;
  padding: 0.8rem 1.2rem !important;
  margin: 0.3rem 0.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #2196f3, #1976d2) !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.2),
    inset 0 -1px 1px rgba(0,0,0,0.1);
  text-shadow:
    2px 2px 2px rgba(0,0,0,0.5),
    0 0 3px rgba(255,255,255,0.3);
  border: none;              /* anula borde Bootstrap */
  display: inline-block;     /* asegura caja similar a <a.nav-link> */
  line-height: 1.25;
}

.navbar .admin-button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #42a5f5, #1e88e5) !important;
  box-shadow:
    0 4px 8px rgba(0,0,0,0.3),
    inset 0 1px 1px rgba(255,255,255,0.3),
    inset 0 -1px 1px rgba(0,0,0,0.2);
  text-shadow:
    3px 3px 3px rgba(0,0,0,0.6),
    0 0 5px rgba(255,255,255,0.4);
}

.navbar .admin-button:active {
  transform: translateY(1px);
  box-shadow:
    0 1px 2px rgba(0,0,0,0.2),
    inset 0 1px 1px rgba(255,255,255,0.1);
  text-shadow:
    1px 1px 1px rgba(0,0,0,0.4),
    0 0 2px rgba(255,255,255,0.2);
}

/* Activo/seleccionado (opcional, por si querés marcar estado) */
.navbar .admin-button.active {
  background: linear-gradient(135deg, #64b5f6, #2196f3) !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.3),
    inset 0 1px 3px rgba(0,0,0,0.2);
  text-shadow:
    2px 2px 4px rgba(0,0,0,0.7),
    0 0 4px rgba(255,255,255,0.3);
}

/* Responsivo: mismo ajuste que los nav-link en móvil */
@media (max-width: 768px) {
  .navbar .admin-button {
    margin: 0.2rem 0;
    width: 100%;              /* opcional: que se vea igual en menú colapsado */
    text-align: left;         /* opcional: alinear como los demás ítems */
  }
}
/* ====== Modal CTA (movido desde index.html) ====== */
.cta-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.45);
  justify-content: center;
  align-items: center;
}
.cta-modal.show { display: flex; }
.cta-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px 24px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  min-width: 320px;
  max-width: 90vw;
  text-align: center;
  position: relative;
  animation: modalIn 0.25s cubic-bezier(.4,1.6,.6,1) 1;
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7rem;
  color: #888;
  cursor: pointer;
  transition: color 0.2s;
}
.close-modal:hover { color: #e74c3c; }
.cta-modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}
.cta-3d-btn {
  display: block;
  background: linear-gradient(90deg, #2e86de 0%, #48c6ef 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 12px;
  box-shadow: 0 4px 0 #1b4f72, 0 8px 24px rgba(46,134,222,0.18);
  text-decoration: none;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  transition: transform 0.12s, box-shadow 0.12s;
  position: relative;
}
.cta-3d-btn:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 #1b4f72, 0 4px 12px rgba(46,134,222,0.12);
}
.cta-3d-btn:hover {
  background: linear-gradient(90deg, #48c6ef 0%, #2e86de 100%);
}

/* ====== Social del footer (quitado inline) ====== */
.footer-social {
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}
.footer-social a,
.footer-social-link {
  color: #fff;
}

/* ====== Portafolio: modificadores de porcentaje (quitado inline) ====== */
/* Usa estas clases en el HTML, p. ej.: <div class="chart-segment bonds pct-40"> */
.chart-segment.pct-0   { --percentage: 0%; }
.chart-segment.pct-5   { --percentage: 5%; }
.chart-segment.pct-10  { --percentage: 10%; }
.chart-segment.pct-15  { --percentage: 15%; }
.chart-segment.pct-20  { --percentage: 20%; }
.chart-segment.pct-25  { --percentage: 25%; }
.chart-segment.pct-30  { --percentage: 30%; }
.chart-segment.pct-35  { --percentage: 35%; }
.chart-segment.pct-40  { --percentage: 40%; }
.chart-segment.pct-45  { --percentage: 45%; }
.chart-segment.pct-50  { --percentage: 50%; }
.chart-segment.pct-55  { --percentage: 55%; }
.chart-segment.pct-60  { --percentage: 60%; }
.chart-segment.pct-65  { --percentage: 65%; }
.chart-segment.pct-70  { --percentage: 70%; }
.chart-segment.pct-75  { --percentage: 75%; }
.chart-segment.pct-80  { --percentage: 80%; }
.chart-segment.pct-85  { --percentage: 85%; }
.chart-segment.pct-90  { --percentage: 90%; }
.chart-segment.pct-95  { --percentage: 95%; }
.chart-segment.pct-100 { --percentage: 100%; }

/* ====== CTA Section (contenedor y titular) ====== */
.cta-section {
  text-align: center;
  padding: 32px 16px;
}
.cta-section h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.cta-section p {
  margin: 0 auto 16px;
  max-width: 600px;
  opacity: 0.9;
}

/* ====== Botón principal "Comenzar Ahora" ====== */
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #2e86de 0%, #48c6ef 100%);
  color: #fff;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 12px;
  box-shadow: 0 4px 0 #1b4f72, 0 8px 24px rgba(46,134,222,0.18);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.12s, background 0.2s;
}
.cta-button:hover {
  background: linear-gradient(90deg, #48c6ef 0%, #2e86de 100%);
}
.cta-button:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 2px 0 #1b4f72, 0 4px 12px rgba(46,134,222,0.12);
}

/* (Opcional) Ajuste responsive del modal */
@media (max-width: 480px) {
  .cta-modal-content { padding: 24px 18px 18px 18px; }
}
