/* Reset de estilos padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos globais */
body {
    background-color: #f6f6f6; /* Fundo da página */
    font-family: Arial, sans-serif;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    padding: 20px 0;
}

header img {
    max-width: 100%; /* A logo será responsiva */
    height: auto; /* Mantém a proporção da logo */
    width: 300px; /* Largura máxima da logo */
    max-height: 175px; /* Altura máxima da logo */
}

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

nav li {
    margin: 0 10px;
}

nav a {
    text-decoration: none;
    color: #333; /* Cor dos links */
    font-weight: bold;
}

main {
    background-color: #f6f6f6; /* Fundo da div .main */
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

section p {
    font-size: 16px;
    margin-bottom: 20px;
}

iframe {
    width: 100%;
    height: 315px; /* Você pode ajustar a altura conforme necessário */
    border: none;
}

footer {
    background-color: #f6f6f6; /* Fundo do rodapé (footer) */
    text-align: center;
    padding: 10px 0;
}

.contato-footer {
    margin-top: 20px; /* Espaço adicionado entre informações de contato e o rodapé */
}

.contato-footer p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contato-footer a {
    text-decoration: none;
    color: #333; /* Cor do link de e-mail */
    font-weight: bold;
}


/* Fale Conosco */

.campo {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #555;
}


/* Estilos para a seção de Portfólio */
.portfolio {
    background-color: #f6f6f6; /* Fundo da seção de Portfólio */
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.portfolio h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Estilos para os vídeos na seção de Portfólio */
.video-item {
    margin-bottom: 40px; /* Espaço entre os vídeos */
}
.video-container {
    margin-bottom: 20px; /* Espaço adicionado entre os vídeos */
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 (dividir 9 pelo 16 e multiplicar por 100) */
    height: 0;
    overflow: hidden;
}

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

.video-description {
    font-size: 16px;
    text-align: center;
    margin-top: 10px; /* Espaço entre o vídeo e a descrição */
}