/* bottom-tab component */

.bottom-tab{
  width: 100%;
  background: #fff;
}

.bottom-tab__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 16px 26px;

  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* LEFT */
.bottom-tab__left{
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.bottom-tab__logo{
  width: 60px;
  height: 60px;
  height: auto;
  display: block;
}

.bottom-tab__text{
  margin: 0;
  font-size: 18px;
  line-height: 1.3;
  color: #0B2739;
  text-align: center;
  width: 235px;

}

.bottom-tab__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 282px;
  height: 52px;

  padding: 12px 18px;
  border-radius: 60px;
  background: #0B2739;
  color: #fff;
  text-decoration: none;

  font-size: 16px;
  font-weight: 700;
}

/* RIGHT (mobile columna) */
.bottom-tab__right{
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.bottom-tab__card{
  display: block;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
}

.bottom-tab__card img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  width: 266px;
  height: 108px;
}

/* ===== Desktop ===== */
@media (min-width: 786px){

  .bottom-tab__inner{
    padding: 34px 24px 40px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
  }

  .bottom-tab__left{
    flex: 0 0 450px;
    gap: 14px;
    align-items: center;
    margin-left: 80px;
    
  }

  .bottom-tab__logo{
    width: 105px;
  }

  .bottom-tab__right{
    display: grid;
    flex: 1 1 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 640px;
    
  }
  .bottom-tab__text{
    font-size: 35px;
    width: 430px;
  }
  .bottom-tab__btn{
    width: 280px;
    height: 65px;
    border-radius: 60px;
    font-size: 20px;
  }

  .bottom-tab__card img{
    height: 180px; /* opcional para uniformidad */
    object-fit: cover;
  }
  .consulta1{
    content: url("https://aprodmovistarcomsa.blob.core.windows.net/$web/persons/bienvenida-pospago/tabs/img/consulta1-desk.webp");
    width: 280px;
    height: 180px;
  }
  .consulta2{
    content: url("https://aprodmovistarcomsa.blob.core.windows.net/$web/persons/bienvenida-pospago/tabs/img/consulta2-desk.webp");
    width: 280px;
    height: 180px;
  }
  .consulta3{
    content: url("https://aprodmovistarcomsa.blob.core.windows.net/$web/persons/bienvenida-pospago/tabs/img/consulta3-desk.webp");
    width: 280px;
    height: 180px;
  }
  .consulta4{
    content: url("https://aprodmovistarcomsa.blob.core.windows.net/$web/persons/bienvenida-pospago/tabs/img/consulta4-desk.webp");
    width: 280px;
    height: 180px;
  }
}