body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f0f2f5;
    margin: 0;
}
header {
    width: 100%;
    background-color: #fff;
    padding: 20px 40px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}
nav {
    display: flex;
    align-items: center;
}
nav a {
    text-decoration: none;
    color: #333;
    margin: 0 15px;
    font-weight: bold;
}
.credit-button {
    background-color: #E91E63;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-left: 15px;
}
main {
    padding: 0;
    text-align: center;
    width: 100%;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 150px;
    background-color: #fff;
}

.hero-main-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.video-container {
    margin-top: 40px;
    width: 100%;
    max-width: 800px; /* Limita a largura máxima do vídeo */
    aspect-ratio: 16 / 9; /* Proporção para vídeos widescreen */
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px; /* Bordas arredondadas para o vídeo */
}


.hero-content {
    flex: 1;
    text-align: left;
}

.hero-subtitle {
    color: #c71585; /* MediumVioletRed */
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.hero-text-image {
    max-width: 80%;
    height: auto;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

.fluxo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    width: 100%;
}

.fluxo-text {
    flex: 1;
    text-align: left;
}

.fluxo-text h2 {
    font-size: 2em;
    color: #333;
}

.fluxo-text h3 {
    font-size: 1.5em;
    color: #555;
    margin-top: 10px;
}

.fluxo-text p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.fluxo-image {
    flex: 1;
}

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



.logo {
    height: 40px;
}

.credit-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 150px;
    background-color: white;
}

.credit-content {
    flex: 1;
    padding-left: 50px;
    text-align: left;
}

.credit-content h1 {
    font-size: 2.5em;
    color: #191970; /* MidnightBlue */
    font-weight: bold;
    line-height: 1.2;
}

.subtitle {
    color: #6a5acd; /* SlateBlue */
    font-size: 1.1em;
    margin-top: 10px;
}


.credit-image {
    flex: 1;
}

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

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

form input {
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.submit-button {
    background-color: #E91E63;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #C2185B;
}

footer {
    background-color: #fff;
    width: 100%;
    padding: 20px 100px;
    box-sizing: border-box;
    margin-top: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-media {
    display: flex;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #E91E63;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.2em;
    margin-right: 10px;
}

.contact-info {
    display: flex;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #E91E63;
    color: white;
    border-radius: 50%;
    font-size: 1.2em;
    margin-right: 10px;
}

#sobre {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 150px;
    background-color: #fff;
    gap: 50px;
}

.sobre-content {
    flex: 1;
    text-align: left;
}

.sobre-content h1 {
    font-size: 2.5em;
    color: #191970;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
}

.sobre-content p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.sobre-form {
    flex: 1;
}

.form-step {
    display: none; /* Esconde todos os passos por padrão */
}

.form-step.active {
    display: block; /* Mostra apenas o passo ativo */
}

.form-question {
    margin-bottom: 15px;
    font-weight: bold;
}

.radio-group {
    margin-bottom: 20px;
}

.radio-group label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.form-message {
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    display: none; /* Escondido por padrão */
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #c62828;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

.upload-section p {
    font-size: 0.9em;
    color: #666;
}

.upload-section ul {
    list-style: none;
    padding: 0;
    font-size: 0.9em;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100vh; /* ou altura desejada */
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none; /* impede clique se for fundo */
}
