@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');

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

body {
    background-color: #f2e0c9;
    color: #0d0d0d;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
}

header {
    background: linear-gradient(to right, #92c44b, #dc6794);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img {
    width: 150px;
    height: auto;
    margin-bottom: 5px;
}

nav a {
    color: #f2e0c9;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    padding: 5px 12px;
    margin: 0px 20px;
}

nav a:hover {
    color: #0d0d0d;
    background-color: #f1d326;
    border-radius: 15px;
}

main {
    text-align: center;
    margin: 20px;
}

#frase-de-efeito {
    letter-spacing: 1px;
    color: #b93e6a;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0px 0px 8px #b93e9066;
}

h1 {
    color: #43861f;
    font-size: 2rem;
    margin: 20px;
}

h2 {
    color: #b93e6a;
}

.main-container {
    display: flex;
    max-width: 1000px;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
}

.main-block {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 200px;
    background-color: #ebd2aa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #888888;
    justify-content: space-evenly;
    align-items: center;
}

.main-block a {
    color: #f2e0c9;
    background-color: #43861f;
    text-decoration: none;
    padding: 5px 12px;
    margin: 3px 0px;
    border-radius: 15px;
    font-weight: 500;
}

.main-block a:hover {
    color: #0d0d0d;
    background-color: #f1d326;
}

.trailer {
    max-width: 1000px;
    background-color: #ebd2aa;
    border-radius: 10px;
    box-shadow: 0px 0px 6px #888888;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
}

.trailer h2 {
    margin-bottom: 8px;
}

.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: 0px 0px 6px #888888;
    margin-top: 10px;
}

#topo {
    margin-top: 20px;
}

#topo a {
    text-decoration: none;
    color: #0d0d0d;
}

#topo a:hover {
    color: #43861f;
}

footer {
    background-color: #43861f;
    color: #f2e0c9;
    text-align: center;
    padding: 20px 0px;
}

.redes-sociais {
    margin-top: 10px;
}

footer img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s ease;
    margin: 0px 6px;
}

footer img:hover {
    transform: scale(1.1);
}
