@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
  background: linear-gradient(120deg, #0d0d0d 0%, #181b2c 100%);
  color: #fff;
  font-family: 'Montserrat', Verdana, 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  /* Fondo animado */
  background-size: 400% 400%;
  animation: moveBG 16s ease-in-out infinite;
}


.planes-identidad h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5em;
  letter-spacing: 0.09em;
  line-height: 1.15em;
  margin-bottom: 24px;

  /* Gradiente con blanco al inicio y colores luego */
  background: linear-gradient(
    90deg,
    #fff    0%,
    #fff   30%,
    #ffd600 40%,
    #ff6d00 50%,
    #00e0ff 60%,
    #ff0080 70%,
    #ffe600 80%,
    #fff   100%
  );
  background-size: 200% 100%;
  background-position: 0% 0;

  -webkit-text-stroke-color: whitesmoke 2px;
  text-shadow: whitesmoke 0px 0px 0px;
  /* Clip del gradiente dentro de las letras */
  -webkit-background-clip: text;
  -webkit-text-fill-color:rgba(250,250,250,0.3);
          background-clip: text;
          color: whitesmoke;

  /* Animación desplaza el gradiente de blanco a color */
  animation: textGradient 4s ease-in-out infinite alternate;
  text-shadow: 0 4px 18px rgba(0,0,0,0.3), 0 2px 0 #000;
}

@keyframes textGradient {
  0%   { background-position:   0% 0; }  /* Se ve zona blanca */
  100% { background-position: 100% 0; }  /* Se ve zona coloreada */
}


/* El párrafo debajo del título, también con animación pero menos intensa */
.planes-identidad p {
  font-family: 'Montserrat', Verdana, 'Segoe UI', sans-serif;
  font-size: 1.35em;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,0.23);
}

/* Animar solo palabras clave en negrita */
.planes-identidad p strong {
  background: linear-gradient(90deg, #ffe600 0%, #ff9100 50%, #00e0ff 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: gradientTextMove 2s infinite alternate;
  font-weight: 900;
  text-shadow: 0 2px 12px rgba(0,0,0,0.17);
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.container h1 {
    color: whitesmoke !important;
}

.planes-header h1 {
  font-size: 2.8em;
  margin-bottom: 10px;
  color: #fff;
}

.planes-header p {
  font-size: 1.2em;
  color: #ccc;
}

.planes-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.plan-card {
  background-color: #161616;
  border: 1px solid #292929;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.plan-card h2 {
  margin: 0;
  font-size: 1.6em;
  color: #ffc107;
}

.plan-card .sub {
  color: #aaa;
  font-size: 1.1em;
  margin: 5px 0 15px;
}

.plan-card .price {
  font-size: 1.4em;
  font-weight: bold;
  color: #00e676;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.plan-card ul li {
  margin-bottom: 10px;
  color: #ddd;
}

.garantia {
  background-color: #212121;
  padding: 12px 15px;
  border-left: 4px solid #ffc107;
  color: #bbb;
  font-size: 0.95em;
  border-radius: 6px;
}

.premium {
  border: 2px solid #ffc107;
}

@media screen and (max-width: 768px) {
  .planes-header h1 {
    font-size: 2em;
  }
  .plan-card {
    padding: 20px;
  }
}
