
.cloud-offer {
  padding: 20px;
  text-align: center;
}

.cloud-offer__description {
  font-size: 1rem;
  margin-bottom: 20px;
}

/* Bloque de Beneficios */
.benefits__tittle {
  text-align: center;
}

.benefits {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
}

.benefits__img {
  max-width: none !important;
  display: flex;
}

.benefits__item {
  width: 30%;
  text-align: center;
}

.benefits__icon {
  font-size: 3rem;
  color: #0078d7;
  /* Color de íconos */
}

.benefits__text {
  font-size: 1rem;
  margin-top: 10px;
}

/* Bloque de Planes */
.plans__tittle {
  text-align: center;
  margin: 20px 20px;
}

.plans {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin: 20px 0;
  padding: 10px;
}

.plans__item {
  color: #fff;
  width: 30%;
  /* margin-bottom: 20px; */
  /* padding: 15px; */
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* Ocultar el contenido fuera del padre */

  &:nth-child(4),
  &:nth-child(5),
  &:nth-child(6) {
    .plans__capacity span.storage {
      font-size: 2.1rem;
    }
  }
}

.plans__capacity {
  font-size: 1.3rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
  row-gap: 5px;

  span.text {
    font-size: 1rem;
    font-weight: normal;
    line-height: 1rem;
  }

  span.storage {
    font-size: 2.5rem;
    line-height: 2.5rem;
    letter-spacing: .125rem;
  }
}

.plans__price {
  font-size: 2.1rem;
  margin-top: 10px;
  font-weight: normal;

  span:first-child {
    font-size: 1.3rem;
  }
}

section.plans__buttons {
  display: flex;
  align-items: center;
  margin: 25px;
  justify-content: center;

  div.false-button {
    input[type="radio"] {
      display: none;
    }

    label {
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 25px;
      padding: .5rem 1.5rem;
      border: 1px solid #454748;
      color: #454748;
      user-select: none;
      transition: all ease-in-out 150ms;
      margin: 15px;
    }

    input[type="radio"]:checked+label {
      background-color: #0B2739;
      color: #fefefe;
      border-color: #0B2739;
    }

    label:hover {
      @media (min-width: 1200px) {
        background-color: #0B2739;
        color: #fefefe;
        border-color: #0B2739;
      }
    }
  }
}

section.plans__attributes {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  margin-top: 1rem;

  div.attributes {
    padding: 1rem;
    background-color: #F5F5F5;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    display: none;

    h3 {
      text-align: center;
    }

    ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      row-gap: 1rem;

      li {
        display: flex;
        align-items: center;
        column-gap: .5rem;
        font-size: .9rem;
        line-height: 1.1rem;
      }
    }
  }
}

.plans__benefits__img{
  width: 25px;
  margin: 15px 12px;
}

.buttom__section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.buttom{
  color: white;
  background-color: #0078d7;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  margin: 25px 25px;
  width: 200px;
    height: 40px;
}

/* Bloque de recordatorio */
.reminder {
  font-size: 0.9rem;
  margin-top: 30px;
  font-weight: bold;
}

/* Mobile - hasta 767px */
@media (max-width: 767px) {
  .cloud-offer__description {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .benefits {
    flex-direction: column;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    margin: 15px 15px auto;
  }

  .benefits__item {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
  }

  .benefits__icon {
    font-size: 2rem;
    margin-right: 10px;
  }

  .benefits__text {
    font-size: 0.9rem;
    padding-left: 15px;
    border-bottom: 2px solid #e0e0e0;
    display: inline-block;
    padding-bottom: 5px;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columnas en móviles */
    gap: 10px 15px;
    /* Espacio entre los items */
    justify-items: center;
    /* Centrar elementos */
    margin: 20px 0;
  }

  .plans__item {
    width: 100%;
    /* Que ocupen el 100% del ancho disponible dentro de las columnas */
    /* padding: 15px; */
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra similar a la imagen */
    text-align: center;
  }

  .plans__capacity {
    /* font-size: 1.5rem; */
    color: white;
    /* margin-bottom: 10px; */
    background-color: #019DF4;

  }

  .plans__price {
    /* font-size: 1rem; */
    color: #333;
  }

  .reminder {
    font-size: 0.9rem;
    margin-top: 20px;
    text-align: center;
  }
}

/* Tablet - entre 768px y 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .cloud-offer__description {
    font-size: 1.1rem;
  }

  .benefits {
    flex-direction: row;
    justify-content: space-evenly;
    row-gap: 45px;
  }

  .benefits__item {
    width: 45%;
    margin-bottom: 20px;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 15px;
    justify-items: center;
    margin: auto;
    width: 580px;
  }

  .plans__item {
    width: 100%;
  }

  .plans__capacity {
    font-size: 1.8rem;
    color: white;
    background-color: #019DF4;
  }

  .plans__price {
    font-size: 1.2rem;
    color: black;
    text-align: center;
  }
  .benefits__icon{
    display: flex;
    justify-content: center;
  }
}

/* Desktop - desde 1025px en adelante */
@media (min-width: 1025px) {
  .cloud-offer__description {
    font-size: 1.2rem;
  }

  .benefits__item {
    width: 30%;
    border-right: 2px solid #019DF4;
    margin-bottom: 55px;
  }

  .plans {
    display: grid;
    grid-template-columns: repeat(3, 3fr);
    gap: 10px 15px;
    justify-items: center;
    grid-row-gap: 10px;
    grid-column-gap: 0px;
    margin: auto;
    width: 700px;
  }

  .plans__item {
    width: 80%;
  }

  .plans__capacity {
    font-size: 1.8rem;
    color: white;
    background-color: #019DF4;
  }

  .plans__price {
    font-size: 1.5rem;
    color: black;
    text-align: center;
  }

  .reminder {
    font-size: 1rem;
  }
  .benefits__icon{
    display: flex;
    justify-content: center;
  }
  
  .benefits{
    max-width: 1090px;
    margin: 0 auto;
    padding-top: 45px;
  }
  .benefits__text{
    margin: 5px;
  }

  .plans__buttons{
    display: flex;
  }
  .text{
    font-size: 18px;
  }
  .buttom__title{
    padding-top: 35px;
  }
}