
.contact-header {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    margin-right: 20px;
}

.contact-header h1 {
    color: #816846;
    font-size: 32px;
    text-align: center;
}

.contact-header p {
    color: #333;
    font-size: 16px;
    text-align: justify;
    
}

.contact-options h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-options ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    align-content: center;
}

.contact-options ul li {
    font-size: 16px;
    color: #333;
}

.contact-options li {
    display: flex;
    border-top: 2px solid #816846; /* cor cinza clara */
    padding: 20px 0;
    justify-content: center;
}
  
.contact-options li:last-child {
    border-bottom: none; /* remove linha do último item */
}
.contact-option{
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    color: black;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid #816846;
    text-decoration: none;
    font-size: 16px;
    width: fit-content;
    transition: background-color 0.3s ease;
}

.contact-option:hover{
    background-color: #675338;
    color:#ffffff;
}

.contact-option:hover svg{
    fill: #ffffff;
}

.contact-option svg{
    margin-right: 10px;
}


.contact-form {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.row{
    margin-top: 10%;
    margin-bottom: 20%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form .form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.contact-form .form-group {
    width: 48%;
}

.contact-form label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.contact-form input[type="text"], 
.contact-form input[type="email"], 
.contact-form input[type="tel"], 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
}

.contact-preference {
    display: flex;
    flex-direction: column;
}

.contact-preference label {
    font-size: 14px;
    color: #333;
}

.contact-form button {
    background-color: #816846;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

.contact-form button:hover {
    background-color: #675338;
    color: white;
}

.contact-form .form-group a {
    color: #004c53;
    text-decoration: none;
}

.contact-form .form-group a:hover {
    text-decoration: underline;
}

/* Flexbox adjustments for layout */
.row {
    display: flex;
    flex-wrap: wrap;
}

.col-md-6 {
    width: 50%;
    padding: 10px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1; /* Para o vídeo ficar atrás do conteúdo */
    pointer-events: none;
}

.video-background img {
    width: 100%;
    height: 100vh;
    min-height: 400px; /* Evita que em dispositivos muito pequenos fique colapsada */
    object-fit: cover;
    object-position: center;
}

.form-title {
    text-align: center;
    color: #816846;
    font-size: 24px;
    margin-bottom: 20px;
}




/* Responsividade básica */
@media (max-width: 768px) {
    .video-background{
        opacity: 0.5;
    }

    .row {
        flex-direction: column;
        align-items: center;
        background: none;
        box-shadow: none;
    }

    .contact-options li {
        border-top: none;
    }

    .col-md-6 {
        width: 100%;
        padding: 10px 0;
    }

    .contact-header h1 {
        font-size: 26px;
    }

    .contact-header p {
        text-align: center; /* Melhor leitura em telas pequenas */
    }

    .contact-options ul li {
        justify-content: center;
    }

    .contact-options h3 {
        text-align: center;
    }

    .contact-option {
        width: 90%; /* Ocupa quase toda a tela sem exagerar */
        justify-content: center;
    }

    .contact-form .form-row {
        flex-direction: column;
        gap: 0px;
    }

    .contact-form .form-group {
        width: 100%;
    }

    .contact-form button {
        width: 100%;
    }
}

/* Ajuste para muito pequenas, tipo 480px */
@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 22px;
    }

    .contact-option {
        font-size: 14px;
        padding: 8px 12px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 13px;
        padding: 10px;
    }

    .contact-form button {
        padding: 10px;
        font-size: 14px;
    }
}
