body {
    color: #000000;
    background-color: #FFFFFF;
    margin: 0;
    margin-bottom: 100px;
}

header {
    border-bottom: solid 2px #DAA520;
    margin: 20px;
    font-size: 32px;
    color: #FFD700;
}

.cabecalho {
    background-color: black;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 28px;
    font-weight: bold;
}

/* Estilo para a imagem do logo no cabeçalho */
.cabecalho img {
    width: 300px;      /* Tamanho da imagem - ajuste conforme quiser */
    max-width: 90%;    /* Responsivo para telas pequenas */
    height: auto;      /* Mantém proporção da imagem */
    display: inline-block;
}

section {
    padding-bottom: 80px;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #C19A6B;
}

h1 {
    color: #E03C31;
    font-size: 40px;
}

p {
    font-size: 20px;
    color: #333333;
}

.chamada-texto {
    margin-right: 1%;
    text-align: center;
    padding: 20px;
    background-color: #C19A6B;
    color: #000000;
    width: 80%;
    border-radius: 10px;
}

/* Estilo do vídeo responsivo */
.videos-principal {
    position: relative;
    width: 80%;
    padding-bottom: 45%; /* proporção 16:9 */
    height: 0;
    margin-top: 20px;
}

.videos-principal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Seção de vídeos adicionais */
.categoria {
    background-color: #FFFFFF;
    text-align: center;
    padding: 40px 0;
}

.categoria h2 {
    color: #C19A6B;
    font-size: 32px;
    margin-bottom: 20px;
}

.categoria-videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

.categoria-videos img {
    opacity: 0.5;
    height: 200px;
    transition: opacity 0.3s ease, border 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.categoria-videos img:hover {
    opacity: 1.0;
    border: 3px solid #C19A6B;
}
.logo-One-pice {
    width: 180px;
}


