html,
body {
    width: 100%;
    height: 100vh;
    background-image: url('./img/Fondo-SplashPage2.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 0;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}

main {
    padding: 5dvh 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #00000056;
    background-attachment: fixed;
    color: #FFFFFF;
    /* background-size: contain; */
}


#logo-SS-Global {
    display: flex;
    flex-direction: row;
}

#logo-SS-Global {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* Alinea verticalmente el logo con el texto */
    gap: 10px;
    /* Espacio entre el logo y el texto */
    margin-bottom: 10px;
    /* Espacio antes del separador o subtítulo */
}

.logo-svg {
    width: 40px;
    /* Ajusta el tamaño según tu h1 */
    height: 40px;
    fill: #FFFFFF;
    /* Color blanco para que resalte sobre el fondo azul */
}

#logo-SS-Global h1 {
    margin: 0;
    /* Quitamos márgenes para un control total */
    font-size: 2.2rem;
    /* Ajusta al tamaño de la imagen */
    letter-spacing: 1px;
    /* Un poco de aire entre letras */
}

#span-div {
    width: 60%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    /* Blanco semi-transparente */
    margin: 20px 0;
}

#subtitulo-div {
    text-align: center;
    width: 50%;
    padding-bottom: 5dvh;
}

/* #containerDiv {
    flex: 1 1 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5dvw;
    width: 100%;
    /* .contenedor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.caja {
  min-height: 200px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
} 

} */
#containerDiv {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;       /* PERMITE que las tarjetas bajen si no caben */
    align-items: stretch;  /* Hace que ambas tarjetas midan lo mismo de alto */
    justify-content: center;
    gap: 30px;             /* Espacio fijo entre tarjetas */
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* .info-div {
    display: flex;
    max-width: 30%;
    height: auto;
    max-height: 80%;
    min-height: 45dvh;
    flex-direction: column;
    background-color: #FFFFFF;
    color: #005A70;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 5dvh 0;
    gap: 0.5dvh;
    box-shadow: 5px 5px 10px #000000;
    object-fit: contain;
    place-items: inherit;
    box-sizing: border-box;
} */
.info-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    /* CAMBIOS CLAVE: */
    width: 100%;
    /* Ocupa el ancho disponible */
    max-width: 400px;
    /* Pero no más de 400px (mejor que 30% para mobile) */
    min-height: 450px;
    /* Usar px suele ser más estable que dvh para cajas de texto */
    height: auto;
    /* Permite que crezca si el texto es muy largo */

    padding: 40px 20px;
    /* Padding fijo para evitar que el texto toque los bordes */
    background-color: #FFFFFF;
    color: #005A70;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    /* Asegura que el padding no agrande la caja */
}

.logo-div {
    padding: 1dvh 1dvw;
    position: relative;
}


.logo-div img {
    object-fit: contain;
    width: 100%;
    height: 90px;
    max-height: 90px;
}

.titulo-interno-div {
    text-align: center;

    h3 {
        font-size: 24px;
        margin: 2dvh 0;
    }
}

.textIcon {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    padding: 0 0.5dvh;
    gap: 0.5dvh;
}

.icon {
    width: 18px;
    height: 18px;
}

/* .texto-div {
    font-size: 14px;
    width: 70%;
    text-align: center;
} */

.texto-div {
    font-size: 1rem;
    /* Usar rem es mejor para accesibilidad */
    width: 90%;
    /* Aumentamos el ancho para que el texto no se amontone */
    text-align: center;
    margin: 20px 0;
    /* Espacio arriba y abajo */
    flex-grow: 1;
    /* Empuja el botón hacia abajo si hay poco texto */
    display: flex;
    align-items: center;
    /* Centra el texto verticalmente si sobra espacio */
}

/* .btn-div {
    display: flex;
    justify-content: center;
    width: 70%;
    height: 10%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-radius: 30px;
    cursor: pointer;
} */

.btn-div {
    display: flex;
    justify-content: center;
    /* Un poco más ancho para que el texto del botón quepa */
    width: 90%;
    /* Lo pega al fondo de la tarjeta */
    margin-top: auto;
    border-radius: 30px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn-div button {
    padding: 10px 15px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-div h5 {
    margin: 0;
    font-size: 0.9rem;     /* Ajustamos el tamaño para que no rompa el botón */
    line-height: 1.2;
}

.btn-div:hover {
    transform: scale(1.1);
    /* Agranda el botón un 10% */
    box-shadow: 3px 3px 10px rgba(15, 15, 15, 0.6);
    /* Crea un resplandor blanco */
    background-color: #f0f0f0;
    /* Un gris muy sutil para notar la interacción */
}

.btn-div:active {
    transform: scale(0.95);
    /* Se encoge un poquito al presionarlo */
}

#StreamingBtn {
    background-color: #f17f33;
    color: #FFFFFF;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
}


#SSGlobalbtn {
    background-color: #005A70;
    color: #FFFFFF;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
}