* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: serif;
    background: #070707;
    color: #eee;
}

/* HERO */

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(120,0,0,0.5), black);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
}

.hero h2 {
    color: #aa0000;
    margin-bottom: 20px;
}

.frase {
    font-size: 1.5rem;
    margin: 20px 0;
}

/* BOTONES */

.btn {
    padding: 12px 25px;
    border-radius: 10px;
    text-decoration: none;
    margin: 5px;
    display: inline-block;
}

.primary {
    background: #800000;
    color: white;
}

.secondary {
    border: 1px solid #555;
    color: #ccc;
}

/* CARDS */

.cards {
    display: flex;
    gap: 20px;
    padding: 60px;
    justify-content: center;
}

.card {
    background: #111;
    padding: 30px;
    border-radius: 15px;
    width: 250px;
}

/* SINOPSIS */

.sinopsis {
    padding: 80px;
    text-align: center;
}

.sinopsis h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #222;
}