﻿.planes-index {
  width: 100%;
  padding: 64px 20px 72px;
  background: #fff;
  font-family: "arkibal_displayregular", Arial, sans-serif;
}

.planes-index,
.planes-index * {
  box-sizing: border-box;
}

.planes-index__encabezado {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.planes-index__titulo {
  margin: 0 0 10px;
  background: -webkit-linear-gradient(360deg, rgba(0, 55, 98, 1) 25%, rgba(0, 204, 160, 1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "arkibal_displayheavy", Arial, sans-serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: normal;
  line-height: 1.08;
}

.planes-index__bajada {
  margin: 0;
  color: #00a6a6;
  font-family: "arkibal_displayregular", Arial, sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: normal;
}

.planes-index__grilla {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(250px, 320px));
  align-items: start;
  justify-content: space-between;
  gap: 34px;
}

.planes-index__card {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #f7f7f7;
  border-radius: 20px;
  box-shadow: 14px 8px 30px rgba(0, 0, 0, 0.06);
  text-align: start;
}

.planes-index__nombre,
.planes-index__detalle,
.planes-index__etiqueta,
.planes-index__precio,
.planes-index__periodo {
  margin: 0;
}

.planes-index__nombre {
  width: 100%;
  padding-bottom: 7px;
  border-bottom: 1.5px solid #9a9a9a;
  color: #06182f;
  font-family: "arkibal_displayregular", Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.2;
}

.planes-index__nombre b {
  font-family: "arkibal_displayheavy", Arial, sans-serif;
  font-weight: normal;
}

.planes-index__detalle {
  margin-top: 22px;
  color: #071a31;
  font-family: "arkibal_display_ltlight", Arial, sans-serif;
  font-size: 23px;
  font-weight: bold;
  line-height: 1.25;
}

.planes-index__etiqueta {
  width: fit-content;
  margin-top: 14px;
  padding: 2px 5px;
  color: #05192f;
  background: #b2e3df;
  border-radius: 4px;
  font-family: "arkibal_displayregular", Arial, sans-serif;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.1;
  text-transform: uppercase;
}

.planes-index__precio {
  margin-top: 16px;
  color: #01a198;
  font-family: "arkibal_displayheavy", Arial, sans-serif;
  font-size: 40px;
  font-weight: normal;
  line-height: 1;
}

.planes-index__periodo {
  margin-top: 12px;
  color: #92949e;
  font-family: "arkibal_display_ltlight", Arial, sans-serif;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.25;
}

.planes-index__boton {
  width: 100%;
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #00365f;
  border: none;
  border-radius: 30px;
  padding: 10px 50px;
  font-family: "arkibal_displayheavy", Arial, sans-serif;
  font-size: 21px;
  font-weight: normal;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.planes-index__boton:hover,
.planes-index__boton:focus-visible {
  color: #fff;
  background: #00365f;
  transform: translateY(-8px);
}

.planes-index__boton:focus-visible {
  outline: 3px solid rgba(0, 166, 166, 0.3);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .planes-index__grilla {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
  }
}

@media (max-width: 820px) {
  .planes-index {
    padding: 48px 18px 56px;
  }

  .planes-index__grilla {
    grid-template-columns: minmax(260px, 380px);
    justify-content: center;
    gap: 26px;
  }
}

@media (max-width: 420px) {
  .planes-index {
    padding-inline: 14px;
  }

  .planes-index__titulo {
    font-size: 2rem;
  }

  .planes-index__nombre {
    font-size: 20px;
  }

  .planes-index__detalle {
    font-size: 21px;
  }

  .planes-index__precio {
    font-size: 36px;
  }
}