* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;

}


/* Encabezado */
.header {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 0.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
}

.logo-icon {
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.logo-text {
  background: var(--text-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  background-color: var(--secondary-color);
  padding: 0.5rem 5%;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  gap: 1rem;
}

.nav-button {
  background-color: var(--secondary-color);
  color: var(--light-text);
  border: none;
  padding: 0rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 40px;


}

.nav-button:hover {
  background-color: var(--orange);
  border-radius: 12px;
}

.nav-button.pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background-color: var(--naranja-color);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.nav-button.pulse:hover::after {
  animation: ripple 1s ease-out;

}

.nav-button.pulse {
  border-radius: 12px;
  background-color: var(--naranja-color);
}

.nav-button.active {

  background-color: var(--naranja-color);
}

.nav-button-inicio {
  background-color: var(--orange);
  color: var(--light-text);
  border: none;
  padding: 0rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 40px;
  border-radius: 20px;

}

.nav-button-inicio:hover {
  background-color: var(--select-btn);
  border-radius: 20px;
  transform: translateY(-2px);
}


.footer {
  padding: 5rem 12% 1.5rem;
  position: relative;
  margin-top: 20px;
  background-color: var(--secondary-color);
  color: var(--light-text);
  justify-content: center;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
}

/* Logo */
.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-logoCPC {
  height: 80px;
  margin-bottom: 1rem;

  padding: 5px;
  border-radius: 20PX;
}

.footer-desc {
  max-width: 250px;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Títulos */
.footer-links h4,
.footer-social h4,
.footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 0.9rem;
  font-weight: 600;
}

/* Grid de enlaces */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.4rem 1.5rem;
}

.footer-links a {
  color: var(--light-text);
  opacity: 0.8;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* Redes sociales */
.social-icons {
  display: flex;
  gap: 0.9rem;

}

.social-icons a {
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 10%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  opacity: 0.85;
  color: var(--light-text);
}

.social-icons a:hover {
  transform: scale(1.15);
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  color: var(--light-text);

}

/* Contacto */
.footer-contact p {
  margin: 0.2rem 0;
  opacity: 0.85;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  opacity: 0.9;
}

.contact-item i {
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive: ELIMINA o corrige esta media query */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .links-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-item {
    justify-content: center;
  }
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 40vh;
  align-items: center;
  width: 100%;
  /* Se asegura que ocupa el 90% */
  margin: 0 auto;
}

.intro-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 5%;
  padding: 2rem;
  color: var(--primary-color);
}

.imgDepartamento {

  width: 100%;
  margin-left: -10%;
  z-index: 100;
}


.neuron-animation-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}

#neuronCanvas {
  width: 100%;
  height: 100%;
}

.intro-content {
  position: relative;
  z-index: 10;

  padding: 2rem 0;
}

.intro-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  text-align: start;
}

.highlight {
  color: var(--text-color), 0.1;
}

.intro-description {
  font-size: 1.125rem;
  color: var(--parrafo);
  text-align: start;
}

.intro-feature {
  margin-bottom: 2rem;
}

.intro-feature h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.intro-feature p {
  font-size: 0.875rem;
  color: #e9d5ff;
}

.pulse-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #d8b4fe;
  animation: pulse 1.5s infinite;
}

.modal {
  display: none;
  /* oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modalCrearusuario {
  display: none;
  position: fixed;
  z-index: 9999;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  color: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.error {
  text-align: center;
}

.modal span {
  color: red;
  font-size: 100px;
  display: block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Right panel - Auth forms */
.auth-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: white;
}

.auth-container {
  width: 100%;
  max-width: 400px;
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.auth-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: #6b7280;
}

/* Tabs */
.tabs {
  width: 100%;
}

.tab-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
  border-radius: 0.375rem;
  background-color: #f3f4f6;
  padding: 0.25rem;
}

.tab-trigger {
  padding: 0.5rem;
  text-align: center;
  cursor: pointer;
  border-radius: 0.25rem;
  font-weight: 500;
  transition: all 0.2s;
}

.tab-trigger.active {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

input {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: border-color 0.2s;
}

input:focus {
  outline: none;
  border-color: #8b5cf6;
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.forgot-password {
  font-size: 0.75rem;
  color: var(--text-color);
  text-decoration: none;
}

.forgot-password:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  width: 100%;
}

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

.btn-primary:hover {
  background-color: var(--select-btn);
}

.btn-outline {
  background-color: white;
  border: 1px solid #d1d5db;
  color: #374151;
}

.btn-outline:hover {
  background-color: #f9fafb;
}

/* Divider */
.divider {
  position: relative;
  margin: 1.5rem 0;
  text-align: center;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #e5e7eb;
}

.divider span {
  position: relative;
  padding: 0 0.75rem;
  background-color: white;
  color: #6b7280;
  font-size: 0.75rem;
  text-transform: uppercase;
}

/* Social login */
.social-login {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
}

.stats {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 30vh;
}

.stat {
  color: whitesmoke;

  width: 30%;

  height: 7vw;
  align-content: center;
}

.buttons button {
  margin-top: 2vh;
  padding: 1vw 1vh;
  width: 50%;
  font-size: 1rem;
  border: none;
  background-color: var(--naranja-color);
  color: white;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: all 0.2s;
}

.buttons {
  display: flex;
}

.escondido {
  display: none;
}

/* Responsive */
@media (min-width: 768px) {
  .container {
    flex-direction: row;
  }

  .intro-panel {
    width: 50%;
    min-height: 40vh;

  }

  .intro-panel-home {
    width: 80%;
    min-height: 40vh;
  }

  .auth-panel {
    width: 100%;
  }

  .intro-title {
    font-size: 3rem;
  }

  .stats {
    display: flex;
    justify-content: center;
    margin: 2vh 0;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    height: 30vh;
  }
}


.main-content {
  max-width: 90%;
  margin: 0 auto 2rem;
  border-radius: 15px;
}



/* Tarjetas */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.card {
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--card-shadow);
}

.card-front {
  background-color: var(--card-bg);
  border: 1px solid rgba(110, 72, 170, 0.1);
}

.card-back {
  background: var(--secondary-color);
  color: white;
  transform: rotateY(180deg);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}





#mapa svg {
  width: 100%;
  align-items: center;
  fill: var(--text-color);
}

#mapa svg path {

  fill: #7e9fe1;
}


.counters-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.counter {
  width: 150px;
  height: 150px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  position: relative;
  box-shadow: 0 10px 20px rgba(110, 72, 170, 0.2);
}

.counter-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.counter-label {
  font-size: 0.8rem;
  font-weight: 500;
}

.pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.helix-title,
.stats-title {
  text-align: center;
  margin-bottom: 2rem;
}

.helix-title h3,
.stats-title h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.loginEntidades {
  width: 300px;
  height: 200px;

  border-radius: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-color);
  text-align: center;

  cursor: pointer;
}

.logoEntidad {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid var(--secondary-color);

  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.loginEntidades img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}


.loginEntidades p {
  min-height: 3em;
}

.loginEntidades:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.socios-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;

}

.socios-container b {
  font-size: 2.5rex;
}

.socios-container p {
  font-size: 1.9rex;
}

.action-button {
  margin-bottom: 1vh;
  color: var(--text-description);
  border: none;
  border-radius: 10px;
  padding: 0.2rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--primary-color);
  max-width: 200px;
  /* 
    margin-bottom: 1vh;
    display: flex;
    align-items: center;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
        transition: var(--transition); */

  /* box-shadow: 0 4px 10px rgba(142, 45, 226, 0.3); */
}

.action-button:hover {
  transform: translateY(-3px);
  background: var(--gray-color);
  /* box-shadow: 0 6px 15px rgba(48, 45, 226, 0.4); */
}

/* CONTENEDOR PRINCIPAL (Tarjetas + Gráfica) */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 90%;
  margin: 2rem auto;

}

/* GRID DE LAS TARJETAS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  flex: 1;
}

/* Hace que las tarjetas siempre midan lo mismo que la gráfica */
.stat-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* ← Ajusta el alto interno */
  transition: 0.3s;
  height: 100%;

  /* ← Ajusta la altura */
}

.stat-card:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-4px);
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-label {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--primary-color);
}

.stat-card a {
  font-size: 1.2em;
  font-weight: 500;
  color: #606163;
  justify-content: center;
  /* centra horizontalmente */
  align-items: center;
  /* centra verticalmente */
  flex-grow: 1;
  /* ocupa todo el espacio disponible */
  text-align: center;
}

.stat-icon i {
  font-size: 2em;
  color: var(--naranja-color);
}

.stat-number {
  font-size: 3em;
  font-weight: bold;
  color: var(--secondary-color);
  display: flex;
  justify-content: center;
  /* centra horizontalmente */
  align-items: center;
  /* centra verticalmente */
  flex-grow: 1;
  /* ocupa todo el espacio disponible */
  text-align: center;
}


.stat-card:hover .stat-number,
.stat-card:hover .stat-label,
.stat-card:hover .stat-icon i,
.stat-card:hover a {
  color: #fff;
}

/* TARJETA DERECHA (gráfica + lista) */
.progress-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  height: 100%;
  /* ← hace que todas coincidan */
}

/* Gráfica */
.progress-circle {
  width: 160px;
  height: 160px;
}

.progress-circle svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.slice {
  fill: none;
  stroke-width: 3.5;
}

.slice1 {
  stroke: var(--yellow);
  stroke-dasharray: 10 100;
  stroke-dashoffset: 0;
}

.slice2 {
  stroke: var(--red);
  stroke-dasharray: 15 100;
  stroke-dashoffset: -10;
}

.slice3 {
  stroke: var(--naranja-color);
  stroke-dasharray: 20 100;
  stroke-dashoffset: -25;
}

.slice4 {
  stroke: var(--blue);
  stroke-dasharray: 25 100;
  stroke-dashoffset: -45;
}

.slice5 {
  stroke: var(--primary-color);
  stroke-dasharray: 30 100;
  stroke-dashoffset: -70;
}

.phase-text ul {
  padding: 0;
  list-style: none;
}

.phase-text li {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.color-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-right: 8px;
}

.c1 {
  background: var(--yellow);
}

.c2 {
  background: var(--red);
}

.c3 {
  background: var(--naranja-color);
}

.c4 {
  background: var(--blue);
}

.c5 {
  background: var(--primary-color);
}

/* Para que el spinner se centre dentro de la torta */
.progress-circle {
  position: relative;
  /* IMPORTANTE */
}

/* Spinner centrado dentro de la torta */
.chart-spinner {
  position: absolute;
  /* Se posiciona dentro del contenedor */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centrado perfecto */

  width: 70px;
  height: 70px;
  border: 6px solid #dcdcdc;
  border-top: 6px solid var(--primary-color);
  border-radius: 50%;
  animation: chartSpin 0.8s linear infinite;
}

@keyframes chartSpin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Spinner exclusivo para las tarjetas */
.stat-spinner {
  width: 24px;
  height: 24px;
  border: 4px solid #d9d9d9;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  animation: statSpin 0.8s linear infinite;
  margin: 0 auto;
}

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

.title {
  color: var(--primary-color);
}

.pilares-section {
  width: 90%;
  margin: 0 auto;
  margin-top: 4%;
}

.pilares-container {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pilar-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  width: 25%;
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.1);
}

.pilar-card h3 {
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}

.pilares-texto {
  margin-top: 2rem;
  text-align: justify;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pilares-container {
    flex-direction: column;
  }

  .pilar-card {
    width: 100%;
  }
}

.timeline-section {
  width: 90%;
  margin: 3rem auto;
  text-align: center;
  margin-top: 4%;
}

.valores-section {
  width: 90%;
  margin: 3rem auto;
  text-align: center;
  margin-top: 4%;
}

.timeline-line {
  height: 3px;
  background: #0d1b2a;
  width: 100%;
  margin: 2rem 0;
}

.timeline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.timeline-item {
  text-align: center;
  width: 18%;
  min-width: 150px;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin: 0 auto 0.5rem;
}

.timeline-year {
  font-weight: bold;
  color: #0d1b2a;
  margin-bottom: 0.5rem;
}

.timeline-text {
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-item {
    width: 100%;
  }
}

.ecosistema-section {
  width: 90%;

  margin: 0 auto;
  text-align: left;
  padding: 2rem 1rem;
}

.ecosistema-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.descripcion {
  margin-top: 0.3rem;
  font-size: 1rem;
  color: #555;
}

.ecosistema-container {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.card-ecosis {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 45%;
  min-width: 330px;
}

.card-ecosis h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.btn-ecosis {
  width: 100%;
  background: var(--gradient-1);
  border: none;
  padding: 1rem;
  border-radius: 40px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.btn-ecosis:hover {
  opacity: 0.85;
}

.btn-registrarme {
  width: 100%;
  background: var(--orange);
  border: none;
  padding: 1rem;
  border-radius: 40px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.btn-registrarme:hover {
  opacity: 0.85;
}