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

@font-face {
    font-family: 'AcciaPiano';
    src: url('../fonts/AcciaPiano.otf') format('opentype');
}

button {
    font-family: 'AcciaPiano', sans-serif;
}

body {
    font-family: 'AcciaPiano', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background-color: #000000;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

h1, h2, h3, h4 {
    color: #bbb; /* Vermelho forte */
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
}

p {
    color: #bbb;
}

strong {
    color: #FF4100;
    font-weight: 600;
}

a {
    color: #FF4100;
}

.header-container {
    width: 100%; /* Ou outra cor de fundo */
    padding: 10px 20px;
    box-sizing: border-box;
    top: 0;
    position: fixed;
    z-index: 1000;
}
    
/* Conteúdo do header com flexbox */

.header-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-height: 80px;
}

.logo-esquerda {
    margin-top: 80px;
    display: flex;
    align-items: center;
    max-width: 180px;
}

.logo-esquerda img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.logo-container img:hover {
    transform: scale(1.07);
    transition: transform 0.3s ease;
}

/* Main Content */
.main-container {
    max-width: 1364px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.item-description {
    width: 100%;
    background: #000000e6;
    border: 3px solid #FF4100;
    box-shadow: 0 0 15px 0 rgba(255, 0, 0);
    margin: 20px 0;
    flex-direction: row;
    justify-content: space-between;
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.item-image {
    width: 100%;
    height: auto;
}

/* Footer */
.footer-container {
    margin-top: 100px;
    background: #000000;
    padding: 40px 0;
    margin-top: auto;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
}

.footer-content {
    max-width: 1364px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    width: 100%;
}

.footer-logo {
    max-width: 120px;
}

.footer-info {
    text-align: center;
    color: #888;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 12px; /* Espaçamento entre os ícones */
}

.social-icons a {
    text-decoration: none; /* Remove o sublinhado */
    color: #888; /* Cor do ícone */
    font-size: 1.5em;
}

.social-icons a:hover {
    color: #FF4100; /* Cor ao passar o mouse */
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-size: cover;
    z-index: -1;
}

@media (max-width: 768px) {
    .main-container {
        padding: 0 5px;
    }
    .item-description {
        flex-direction: column;
        padding: 20px 30px;
        align-items: center;
    }
    .item-image {
        width: 100%;
    }
    .footer-container {
        padding: 20px 0;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    h1, h2, h3, h4 {
        font-size: 1.1em !important;
        padding: 10px;
    }
    .item-image img {
        width: 100% !important;
        max-width: 350px !important;
    }
    .footer-logo {
        max-width: 80px;
    }
}
