/* ======= TEXTO DE ABAJO DEL BOTÓN ======= */
.button-text {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* ======= FONDO Y BASE ======= */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000; /* Color de fondo liso (gris claro) */
    min-height: 100vh;
}

/* ======= NAVBAR ======= */
nav {
    background-color: #120025;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav img {
    height: 50px;
}

/* ======= IMAGEN PRINCIPAL ======= */
.main-banner {
    max-width: 900px;
    margin: 100px auto 20px auto; /* espacio para el nav fijo */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* ======= BOTÓN WHATSAPP ======= */
.content {
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 20px; /* Aumenta el espacio entre el texto y el icono */
    padding: 30px 80px; /* Aumenta el tamaño del botón */
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 12px; /* Bordes más redondeados */
    font-size: 28px; /* Aumenta el tamaño de la fuente */
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    animation: pulse 1s ease-in-out infinite alternate;
}

.button:hover {
    background-color: #1ea952;
    transform: scale(1.1); /* Aumenta un poco el tamaño al pasar el mouse */
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.button-icon {
    width: 48px; /* Aumenta el tamaño del ícono */
    height: 48px; /* Aumenta el tamaño del ícono */
}

@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* ======= CARTEL CONFIANZA ======= */
.cartel-confianza {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2rem;
  background: linear-gradient(45deg, #120025, #24004b, #471774);
  color: #fff;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  margin: 3%;
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.5);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
}

.info-item svg {
  width: 28px;
  height: 28px;
  fill: #1ea952;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.info-item:hover svg {
  transform: scale(1.1);
}

.info-item span {
  white-space: nowrap;
}

/* ======= CARTEL BRILLANTE ======= */
.cartel-brillante {
  text-align: center;
  margin: 2rem 0;
}

.cartel-brillante span {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
  text-shadow:
    0 0 5px #fff,
    0 0 10px #fff,
    0 0 20px #ff00de,
    0 0 30px #ff00de,
    0 0 40px #ff00de,
    0 0 55px #ff00de,
    0 0 75px #ff00de;
}

/* ======= OTROS ELEMENTOS ======= */
.bottom-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  nav img {
    height: 40px;
  }

  .button {
    padding: 20px 50px; /* Ajuste en pantallas más pequeñas */
    font-size: 22px;
    gap: 15px;
  }

  .button-icon {
    width: 40px; /* Ajusta el tamaño del ícono */
    height: 40px;
  }
}

@media (max-width: 480px) {
  .button {
    padding: 18px 40px;
    font-size: 20px;
  }

  .button-icon {
    width: 36px;
    height: 36px;
  }

  .cartel-brillante span {
    font-size: 2rem;
  }
}




