/* FUENTES Y COLORES */
@font-face {
    font-family: "SF-Pro";
    src: url(../font/SF-Pro.ttf);
}

* {
    font-family: "SF-Pro", serif;
    color: white;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

html, body {
    height: 100%;
    background-color: #1b1a1d;
}

/* BODY */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* LOGO */
.logo {
    margin: -5px;
    cursor: pointer;
}

.logo img {
    width: 75px;
    height: 75px;
}

/* VIDEO */
.video {
    text-align: center;
}

video {
    width: 400px;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
}

/* TÍTULO */
.title h1 {
    text-align: center;
    font-size: clamp(40px, 8vw, 180px); /* se ajusta según pantalla */
    margin: 20px 0;
    user-select: none;
    color: white;
}

/* BOTÓN */
.sign-in {
    text-align: center;
    margin: 20px 0;
}

.sign-in button {
    border-radius: 22px;
    padding: 12px 30px;
    color: black;
    background-color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}

.sign-in button:hover {
    background-color: rgb(156, 156, 156);
}

.sign-in a {
    color: black;
    text-decoration: none;
}

/* DESCRIPCIÓN */
.description h2 {
    max-width: 90%;
    margin: 20px auto;
    text-align: center;
    font-size: clamp(18px, 3vw, 40px);
    line-height: 1.4;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.card1, .card2 {
    flex: 1 1 300px;
    max-width: 500px;
    background-color: rgba(40, 40, 40, 0.3);
    box-shadow: 5px 7px 20px rgba(10, 10, 10, 0.7);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.card1 img, .card2 img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background-color: #1b1a1d;
}

/* CONTENIDO CARD */
.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
}

.container h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.container p {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* FOOTER */
.footer {
    background-color: #2c2c2e;
    padding: 20px 10px;
    margin-top: auto;
}

.footer ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.footer a {
    color: #cacaca;
    font-size: 0.8rem;
    text-decoration: none;
}
