* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #121828;
    color: #c0c8e7;
    line-height: 1.6;
}

.container-geral-header {
    background-color: #1A2035;

}

.container-geral-header,
.container-geral {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    background-origin: 0 5px 20px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 18px 35px;
    align-items: center;
    justify-content: space-between;
    display: block;
}

/* Cabecalho e nav */
.site-header {
    background-color: #1a2035;
    padding: 25px 0;
    border-bottom: 1px solid #2a314b;
}

.container-geral-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: #ffffff;
    font-size: 1.8em;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style-type: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 25px;
}

.main-nav ul li a {
    color: #c0c8e7;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #6c9ffc
}

/* Secao Hero */
.hero-section {
    padding: 30px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex-basis: 55%;
    /* Ocupa mais espaço que a imagem */
}

.hero-text h1 {
    font-size: 4.5em;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: bold;
    color: #ffffff;
}

.hero-text h1 span {
    display: block;
    /* Faz cada palavra do título quebrar linha */
}

.titulo-gradiente {
    background: linear-gradient(90deg, #ef629f, #6c9ffc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 500px;
    /* Limita a largura do parágrafo */
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
}

.btn-cta {
    background-color: linear-gradient(90deg, #ef629f, #6c9ffc);
    color: #ffffff;
    border: none
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translate(-2px);
}

.hero-image-container {
    flex-basis: 45%;
    /* Ocupa menos espaço que o texto */
    text-align: center;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 160px;
    /* Se quiser bordas arredondadas na foto */
    /* Para o efeito de sobreposição com código, seria necessário posicionamento
       absoluto e z-index, e o código como imagem de fundo ou pseudo-elemento. */
}

/* idioma */
.lang-switcher .lang-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85em;
    font-weight: 500;
    color: #e5e5e5;
    transition: opacity 0.2s ease-in-out;
    background: linear-gradient(90deg, #642c45, #6598f3);
    border: none;
}

.lang-switcher .lang-btn:hover {
    opacity: 0.85;
}

.lang-switcher .lang-btn i.fa-globe {
    margin-left: 7px;
    font-size: 1.1em;
}

/* Rodape */
.site-footer {
    text-align: center;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 1px solid #2a314b;
    font-size: 0.9em;
}

/* Formulario */
/* Layout de Duas Colunas */
.layout-contato-duas-colunas {
    display: flex;
    flex-wrap: wrap;
    /* Para empilhar em telas menores */
    justify-content: space-between;
    gap: 50px;
    /* Espaço entre as colunas */
}

.coluna-detalhes-pessoais,
.coluna-formulario {
    flex: 1;
    /* Faz com que ambas as colunas tentem ocupar espaço igual */
    min-width: 300px;
    /* Largura mínima antes de quebrar/empilhar */
}

.separador-contato {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(108, 159, 252, 0), rgba(108, 159, 252, 0.75), rgba(108, 159, 252, 0));
    margin: 35px 0;
}

.coluna-detalhes-pessoais h4 {
    /* Estilo para "Minhas Informações:" */
    font-size: 1.5em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.lista-detalhes-contato {
    list-style: none;
    padding: 0;
}

.lista-detalhes-contato li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05em;
}

.lista-detalhes-contato li i {
    /* Estilo dos ícones */
    font-size: 1.5em;
    /* Tamanho do ícone */
    color: #6c9ffc;
    /* Cor de destaque do seu tema */
    margin-right: 18px;
    width: 25px;
    /* Para alinhar os ícones */
    text-align: center;
}

.lista-detalhes-contato li a,
.lista-detalhes-contato li span {
    color: #c0c8e7;
    text-decoration: none;
}

.lista-detalhes-contato li a:hover {
    color: #ffffff;
    text-decoration: underline;
}


/* Estilização do Formulário (baseado no seu print e nos estilos anteriores) */
.container-form {
    background-color: #1A2035;
    /* Fundo do card do formulário */
    padding: 60px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #adb5bd;
    /* Cor dos labels */
    font-weight: 500;
    font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #2a314b;
    /* Borda sutil */
    background-color: #121828;
    /* Fundo dos campos */
    color: #e0e0e0;
    /* Cor do texto digitado */
    font-size: 1em;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6c9ffc;
    /* Cor da borda ao focar */
    box-shadow: 0 0 0 2px rgba(108, 159, 252, 0.25);
}

.btn-enviar {
    /* Botão de Enviar */
    float: right;
    display: inline-block;
    padding: 12px 30px;
    font-size: 1em;
    font-weight: bold;
    color: white;
    background: linear-gradient(90deg, #ef629f, #6c9ffc);
    /* Mesmo gradiente dos outros botões */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-enviar:hover {
    opacity: 0.85;
}

/* Responsividade para as colunas de contato */
@media (max-width: 820px) {

    /* Ponto de quebra onde as colunas começam a ficar apertadas */
    .layout-contato-duas-colunas {
        flex-direction: column;
        /* Empilha as colunas */
    }

    .coluna-detalhes-pessoais {
        margin-bottom: 40px;
        /* Adiciona espaço abaixo dos detalhes quando empilhado */
    }
}

/* Responvidade */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        /* Empilha texto e imagem em telas menores */
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-text h1 {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1.1em;
        margin-left: auto;
        margin-right: auto;
    }

    .main-nav {
        /* Esconder nav e implementar um menu hambúrguer seria o ideal aqui */
        display: none;
        /* Simplesmente esconde por enquanto */
    }

}