/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #ffffff;
}

/* CONTAINER */
.container {
    padding: 30px;
}

/* HEADER TOPO */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.top-bar h2 {
    font-size: 28px;
}

.contador {
    background: #e50914;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
}

/* ALERTAS */
.alert {
    background: #b91c1c;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-warning {
    background: #92400e;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
}

/* FORM ESTILO NETFLIX */
.card-form {
    background: #141414;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.card-form input,
.card-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 6px;
    border: none;
    background: #1f1f1f;
    color: white;
}

.card-form button {
    width: 100%;
    background: #e50914;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
}

.card-form button:hover {
    background: #f6121d;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* CARD LOUVOR (ESTILO NETFLIX) */
.card-louvor {
    background: #181818;
    border-radius: 10px;
    padding: 15px;
    transition: 0.3s;
    position: relative;
}

.card-louvor:hover {
    transform: scale(1.08);
    background: #222;
    z-index: 2;
}

/* TITULO */
.card-louvor h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* ARTISTA */
.artista {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TOM */
.tom {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e50914;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
}

/* AÇÕES */
.acoes {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.acoes a {
    text-decoration: none;
    color: #e50914;
    font-weight: bold;
    font-size: 14px;
}

.acoes a:hover {
    text-decoration: underline;
}

/* HOME (INDEX) */
.home {
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero p {
    color: #aaa;
    margin-bottom: 20px;
}

/* BOTÕES */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-primary {
    background: #e50914;
    padding: 14px 25px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background: #333;
    padding: 14px 25px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
}

/* FEATURES */
.features {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.feature {
    background: #181818;
    padding: 20px;
    border-radius: 10px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .buttons {
        flex-direction: column;
    }
}