* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cinzel', serif;
}

.titulo {
    font-size: 60px;
    color: #FFD700;

    text-shadow:
        5px #FFD700,
        10px #FFA500,
        20px #FFD700,
        40px #FF8C00;
}

.titulo:hover {
    transform: scale(1.02);
    text-shadow:
        10px gold,
        20px orange,
        40px gold;
    transition: 0.3s;
}

body {
    font-family: "Noto Sans", sans-serif;
    background: linear-gradient(135deg, #8B0000, #4b0000);
    color: #fff;
    line-height: 1.6;
    animation: fadeIn 1s ease-in;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


header {
    background: linear-gradient(to right, #B22222, #8B0000);
    padding: 25px;
    text-align: center;
    border-bottom: 4px solid gold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

header h1 {
    color: gold;
    font-size: 2.5em;
    letter-spacing: 2px;
}


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

nav ul li {
    margin: 0 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    position: relative;
    transition: 0.3s;
}


nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: gold;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: gold;
}


main {
    padding: 30px;
    max-width: 1000px;
    margin: auto;
}


section {
    position: relative;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid gold;
    border-radius: 12px;
    overflow: hidden;
}


section::before,
section::after {
    content: "";
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid gold;
}

section::before {
    top: -8px;
    left: -8px;
    border-right: none;
    border-bottom: none;
}

section::after {
    bottom: -8px;
    right: -8px;
    border-left: none;
    border-top: none;
}


section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}


h2 {
    color: gold;
    margin-bottom: 10px;
}


.img {
    max-width: 220px;
    display: block;
    margin: 15px auto;
    border: 4px solid gold;
    border-radius: 10px;
    transition: transform 0.4s, box-shadow 0.4s;
    border-radius: 10px;
    transition: transform 0.4s, box-shadow 0.4s;
}

.img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px gold;
}


ul {
    margin-left: 20px;
}


footer {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, #B22222, #8B0000);
    border-top: 4px solid gold;
    margin-top: 50px;
    font-size: 0.9em;
}


@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    header h1 {
        font-size: 2em;
    }
}

.fade {
    animation: fadeIn 01ms ease-in;
}

.dragao {
    position: fixed;
    width: 100%;
    height: 100%;
    background: url("https://images.rawpixel.com/image_social_landscape/cHJpdmF0ZS9sci9pbWFnZXMvd2Vic2l0ZS8yMDIzLTEyL3JtMTEzNmRlc2lnbi1yZW1peC1hZS0wMDIuanBn.jpg"),
        radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.08), transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.08), transparent 40%);
    z-index: -1;
    opacity: 0.6;
    background-position: middle;
    background-size: cover;
}

section::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 215, 0, 0.3),
            transparent);
    transform: skewX(-20deg);
}

.btn-oriental {
    display: inline-block;
    padding: 12px 25px;
    color: gold;
    border: 2px solid gold;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}


.btn-oriental::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 215, 0, 0.4);
    transform: skewX(-20deg);
}

.btn-oriental:hover::before {
    animation: shineBtn 0.8s forwards;
}



.btn-oriental:hover {
    background: gold;
    color: #8B0000;
    box-shadow: 0 0 20px gold;
}

h1,
h2 {
    color: gold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px gold;
    }

    to {
        text-shadow: 0 0 20px gold;
    }
}

.lado {
    width: 60%;
    margin: auto;
    padding: 14px;
}

.baixo {
    margin-top: 90px;
    width: 400px;
}


figure {
    text-align: left;
}

figcaption {
    margin-left: 59px;
    font-size: 14px;
    color: #ccc;
}

section {
    display: flex;
    gap: 20px;
}

figure {
    margin-top: 30px;
}

section {
    flex-direction: row-reverse;
}

.tamanhoimg {
    width: 67px;
}