.c-guias-esim{
  width: 100%;
  padding: 34px 16px 40px;
  text-align: center;
  background-color: white;
}

.c-guias-esim__head h2{
  font-size: 24px;
  font-family: var(--f3);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  color: #313235;
}

.c-guias-esim__head p{
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  color: #3C3D40;
  margin: 0 0 20px;
}

/* Links container: mobile columna */
.c-guias-esim__links{
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card clicable */
.c-guias-esim__card{
  display: block;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  /* opcional: suave hover */
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.c-guias-esim__img{
  width: 100%;
  height: auto;
  display: block;
  margin-top: -15px;
  margin-bottom: -20px;
}

/* Accesibilidad/focus */
.c-guias-esim__card:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.35);
  border-radius: 12px;
}

/* Hover desktop */
@media (hover:hover){
  .c-guias-esim__card:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.10);
  }
}

@media (min-width: 780px){
  .c-guias-esim{
    padding: 50px 0 60px;
  }

  .c-guias-esim__links{
    max-width: 860px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .c-guias-esim__card{
    width: 300px; /* ajusta si tus imágenes son más largas */
  }
  .c-guias-esim__head h2{
    font-size: 24px;
    font-weight: 700;
  }
  .c-guias-esim__head p{
    font-size: 20px;
    font-weight: 400;
  }
}
