/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;  /* Evita scroll horizontal */
overflow-y: auto;    /* Permite scroll vertical */

  font-family: 'Montserrat', sans-serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  z-index: 1;

  /* Fondo elegante y tecnológico */
  background: #0a0a0a;
}








/* Contenedor principal */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 20px 40px;
  max-width: 800px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Contenedor de la moneda */
.image-container {
  width: 220px;
  height: 220px;
  perspective: 1000px;
  margin-bottom: 25px;
}

.coin {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

/* Cara frontal y trasera */
.front-face, .back-face {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-position: 38% 20%;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.back-face {
  transform: rotateY(180deg);
}

.border-effect {
  border: 6px solid #00ffe1;
  box-shadow: 0 0 20px rgba(8, 223, 223, 0.6);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Textos animados */
.animated-text {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.8s ease-out;
  font-weight: 700;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 15px;
}

.description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  font-weight: 500;
  color: #ccc;
}

/* Nombre y rol */
.nombre-rol {
  text-align: center;
  line-height: 1.2;
  margin-bottom: 15px;
}

.nombre {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.rol {
  font-family: 'Montserrat', sans-serif;
  margin-top: 0;
  font-size: 1rem;
  font-style: italic;
  color: #888;
  margin-bottom: 20px;
}

/* Iconos de botones */
.telegram-icon,
.whatsapp-icon, 
.messenger-icon {
  width: 28px;
  height: 28px;
  margin-right: 6px;
  flex-shrink: 0;
}



/* Botones */
.buttons {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 20px;
}

.button {
   position: relative;
  background: transparent; /* sin fondo sólido */
  color: #ffffff; /* texto blanco limpio */
  font-family: 'Montserrat', sans-serif; /* fuente moderna y legible */
  border: 2px solid #00ffff; /* borde cyan digital */
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-shadow: none; /* quitar brillo del texto */
  
  opacity: 0;
  transform: scale(0.5) translateX(0px);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button svg {
  width: 20px;
  height: 20px;
  margin-right: 8px; /* espacio entre icono y texto */
  flex-shrink: 0;
}

.button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.6); /* 💎 azul cyan, más tecnológico */
}


/* Footer */
footer {
  margin-top: auto;
  margin-bottom: 20px;
  font-size: 0.9rem;
  z-index: 2;
  position: relative;
  color: #ddd;
}

footer a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: white;
}

/* Fondo canvas */
#mapCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}








/* Ajustes para móviles grandes (como S25 Ultra) */
@media screen and (max-width: 450px) {
  .container {
    padding: 10px 15px 30px;  /* Ajusta los espacios */
    max-width: 100%;          /* Que ocupe todo el ancho */
  }

  .image-container {
    width: 180px;
    height: 180px;
    margin-bottom: 20px;
  }

  .animated-text {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  .description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .buttons {
    gap: 20px;
  }

  .button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  footer {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
}
