/* Dentro de static/css/contato.css */

/* --- Banner de Transição --- */
.banner-section {
    padding: 80px 0;
    position: relative;
    text-align: center;
    color: var(--cor-branca);
}

.cont-container{
    width: 90%;
    max-width: 60vw;
    margin: 0 auto;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(23, 56, 107, 0.65) 0%, rgba(116, 116, 116, 0.65) 99.99%), url('../images/banner.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.banner-section h2 {
    font-size: 4rem;
    font-weight: 500;
}

.banner-section h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

/* --- Seção de Contato --- */
.contato-section {
    padding: 100px 0;
}
.contato-section .cont-container {
    display: flex;
    gap: 10vw;
    align-items: flex-start;
}

/* Coluna da Esquerda */
.info-column {
    flex-basis: 50%;
}
.info-video {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}
.info-video video {
    width: 100%;
    display: block;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--cor-primaria);
    cursor: pointer;
}
.info-column h3 {
    font-size: 1.8rem;
    color: var(--cor-primaria);
}
.info-column ul {
    list-style: disc;
    padding-left: 20px;
}
.info-column li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--cor-primaria);
}

/* Coluna da Direita (preparação para o formulário) */
.form-column {
    flex-basis: 50%;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
}



/* --- Estilos do Formulário --- */

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cor-primaria);
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; /* Garante que padding não afete a largura total */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(23, 56, 107, 0.1);
}

/* Estilo para a caixa de seleção */
.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.form-group-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #555;
}

/* Botão de Envio */
.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: var(--cor-primaria);
    color: var(--cor-branca);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #2a5a9e;
}
