/* ========================================================
   FALE CONOSCO - CORES INVERTIDAS E SELECT CUSTOM
   ======================================================== */

.pagina-contato {
    background-color: var(--bg-cinza-100);
}

.heroContato {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 0px 0px 0px;
    padding: calc(var(--altura-header) + 40px) var(--respiro-lateral-largo) 80px;
    overflow: hidden;
}

/* Fundo agora é Claro/Branco */
.backgroundCinematico {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95vw;
    height: 85vh;
    background: var(--igt-branco);
    /* Fundo branco pílula */
    border-radius: 40px;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    /* Sombra mais sutil */
}

.containerContato {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* --- COLUNA ESQUERDA (Textos agora Escuros) --- */
.infoContatoWrapper {
    width: 45%;
    color: var(--text-escuro);
}

.tagContato {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-claro);
    margin-bottom: 20px;
    display: block;
}

.tituloContato {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--igt-preto);
    letter-spacing: -1px;
}

.descricaoContato {
    font-size: 18px;
    color: var(--text-medio);
    line-height: 1.6;
    margin-bottom: 50px;
}

.detalhesContato {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.itemDetalhe {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mantém os ícones pretos */
.iconeDetalhe {
    width: 24px;
    height: 24px;
}

.itemDetalhe div {
    display: flex;
    flex-direction: column;
}

.labelDetalhe {
    font-size: 12px;
    color: var(--text-claro);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.valorDetalhe {
    font-size: 16px;
    font-weight: 700;
    color: var(--igt-preto);
}

/* --- COLUNA DIREITA (Formulário Escuro) --- */
.formularioWrapper {
    width: 50%;
    background-color: var(--igt-preto);
    /* Card Preto */
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    /* Sombra pesada */
}

.formularioContato {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.grupoInput {
    display: flex;
    flex-direction: column;
}

.labelCinematico {
    font-size: 13px;
    font-weight: 600;
    color: #b3b3b3;
    /* Label cinza claro */
    margin-bottom: 8px;
}

/* Inputs para Fundo Escuro */
.inputCinematico {
    width: 100%;
    padding: 15px 20px;
    background-color: #1a1a1a;
    /* Cinza bem escuro para o fundo do input */
    border: 1px solid #333333;
    border-radius: 8px;
    font-family: var(--fonte-principal);
    font-size: 15px;
    color: var(--igt-branco);
    /* Texto digitado em branco */
    transition: all 0.3s ease;
    outline: none;
}

.inputCinematico::placeholder {
    color: #666666;
    /* Placeholder discreto */
    font-weight: 400;
}

.inputCinematico:focus {
    border-color: var(--igt-vermelho);
    background-color: #222222;
}

.textareaCinematico {
    resize: vertical;
    min-height: 100px;
}

/* --- SELECT CUSTOMIZADO (Dropdown Fake) --- */
.customSelect {
    position: relative;
    width: 100%;
    user-select: none;
}

.selectTrigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    font-family: var(--fonte-principal);
    font-size: 15px;
    color: #666666;
    /* Cor de placeholder por padrão */
    cursor: pointer;
    transition: all 0.3s ease;
}

.selectTrigger.selecionado {
    color: var(--igt-branco);
    /* Fica branco quando escolhe algo */
    border-color: #555555;
}

.setaSelect {
    width: 16px;
    height: 16px;
    color: #666666;
    transition: transform 0.3s ease;
}

/* Menu de Opções Flutuante */
.selectOptions {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #1f1f1f;
    border: 1px solid #333333;
    border-radius: 8px;
    list-style: none;
    padding: 5px 0;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;

    /* Efeito de abertura */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.customSelect.aberto .selectOptions {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.customSelect.aberto .setaSelect {
    transform: rotate(180deg);
}

.selectOptions li {
    padding: 12px 20px;
    color: #cccccc;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.selectOptions li:hover {
    background-color: var(--igt-vermelho);
    color: var(--igt-branco);
}

/* --- BOTÃO ENVIAR --- */
.btnEnviarContato {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--igt-vermelho);
    color: var(--igt-branco);
    border: none;
    border-radius: 50px;
    padding: 8px 30px 8px 8px;
    font-family: var(--fonte-principal);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: max-content;
    transition: all 0.3s ease;
    margin-top: 5px;
}

.iconeEnviar {
    background-color: var(--igt-branco);
    color: var(--igt-vermelho);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.iconeEnviar svg {
    width: 18px;
    height: 18px;
}

.btnEnviarContato:hover {
    background-color: #d10004;
    /* Vermelho mais vibrante no hover */
}

.btnEnviarContato:hover .iconeEnviar {
    transform: translateX(5px);
}

/* --- RESPONSIVO --- */
@media (max-width: 1024px) {
    .backgroundCinematico {
        width: 100vw;
        border-radius: 0;
    }

    .containerContato {
        flex-direction: column;
        gap: 40px;
    }

    .infoContatoWrapper,
    .formularioWrapper {
        width: 100%;
    }

    .infoContatoWrapper {
        text-align: center;
    }

    .detalhesContato {
        align-items: center;
    }

    .formularioWrapper {
        padding: 35px 25px;
    }

    .btnEnviarContato {
        width: 100%;
        justify-content: space-between;
        padding-right: 15px;
    }
}