@font-face {
    font-family: 'NeueKabel';
    src: url(/fonts/NeueKabel/NeueKabel.otf);
}

@font-face {
  font-family: 'Novecento';
  src: url(/fonts/Novecentosanswide-Normal.otf);
}

@font-face {
  font-family: 'Chocolates';
  src: url(/fonts/Chocolate/TT\ Chocolates\ Trial\ Regular.otf);
}

@font-face {
    font-family: 'NeueKabel Light';
    src: url(/fonts/NeueKabel/NeueKabel-ExtraLight.otf) 
}

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

/* Variaveis */
:root{
  --bege:#FEF7E5;
  --preto:#000000;
  --azul_escuro:#092040;
  --azul_claro:#6385AB;
  --branco_azulado:#F7F9FA;

  --brancoAzulado-fundo:#F7F9FA;
  --azulClaro-bege:#6385AB;
  --brancoAzulado-azulEscuro:#F7F9FA;
  --hover:#46658a;
  --focus:#092040;
  --sombra:#4d75a866;

  transition: background-color 0.3s ease, color 0.3s ease;
}

html.dark-mode{
  --brancoAzulado-fundo:#1C1D26;
  --azulClaro-bege:#FEF7E5;
  --brancoAzulado-azulEscuro:#092040;
  --hover:#ded6c2;
  --focus:#bdb396;
  --sombra:#FEF7E566;
}


.contato{
    background-color: var(--azul_escuro);
    color: var(--branco_azulado);
    padding: 4rem 2rem;
    font-family: 'NeueKabel';
    overflow-x: hidden;
}

.contatoTopo{
    text-align: left;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    padding-left: 6em;
    padding-bottom: 4em;
}

.contatoTopo h2{
    font-size: 3.8em;
    font-family: 'Novecento';
    font-weight: 400;
    padding-right: 0.2em;
    padding-top: 0.7em;
}

.contatoTopo h2 span{
    font-size: 1.2em;
}

.contatoTopo p span{
    font-size: 1.2em;
    font-family: 'NeueKabel';
}

.contatoTopo p{
  border-left: 0.1px solid var(--branco_azulado);
  font-family: 'NeueKabel Light';
  padding-left: 0.8rem;
  font-size: 1.9em;
  line-height: 1.5;
}

.contatoContainer{
    display: flex;
    background-image: url(/images/Contato/BackImage.svg);
    background-repeat: no-repeat;
    background-size: 25%;
    background-position: left;
    justify-content: space-between;
    align-items: flex-start;
    width: 100vw;
    height: 50vw;
    margin-left: -2em;
    margin-right: -2em;
    padding: 4em;
    background-color: var(--brancoAzulado-fundo);
    gap: 4em;
}

.contatoForm{
    display: flex;
    flex-direction: column;
    gap:1.5em;
    padding-left: 10em;
}

.contatoForm input,
.contatoForm textarea {
    background-color: var(--azulClaro-bege);
    font-family: 'NeueKabel Light';
    border: none;
    padding: 0.8em;
    border-radius: 20px 20px 0 20px;
    font-size: 1.2em;
    color: var(--brancoAzulado-azulEscuro);
    transition: background 0.3s ease;
    outline: none;
    width: 250%;
    transition: transform 0.2s ease-in-out;
}

.contatoForm textarea {
    padding-bottom: 5em;
}

.contatoForm input::placeholder,
.contatoForm textarea::placeholder{
    color: var(--brancoAzulado-azulEscuro);
    font-family: 'NeueKabel Light';
}

.contatoForm input:hover,
.contatoForm textarea:hover{
    background-color: var(--hover);
    transform: scale(1.05);
}

.contatoForm input:focus,
.contatoForm textarea:focus{
    background-color: var(--focus);
    box-shadow: 0 0 0 3px var(--sombra); 
    border: 1px solid var(--azulClaro-bege); 
}

.contatoForm textarea {
  resize: none;
}

.contatoForm button {
    background-color: var(--azulClaro-bege);
    border: none;
    font-family: 'NeueKabel Light';
    color: var(--brancoAzulado-azulEscuro);
    padding: 0.4em 1em;
    font-size: 1.3em;
    border-radius: 20px 20px 0 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 60%;
    margin-top: 10%;
    transition: transform 0.2s ease-in-out;
}

.contatoForm button:hover {
    background-color: var(--hover);
    transform: scale(1.1);
}

.BalaoArgalji{
    justify-self: end;
    width: 35%;
}

@media (max-width: 768px) {

  .contato {
    padding: 2rem 0rem 0rem;
  }

  .contatoTopo {
    justify-content: center;
    padding-left: 0;
    padding-bottom: 2em;
    margin: 0% 3%;
  }

  .br_ContatoTopo {
    display: none;
  }

  .contatoTopo h2 {
    font-size: 1em;
    padding-right: 1em;
    margin-bottom: 0.5em;
  }

  .contatoTopo p {
    font-size: 0.5em;
  }

  .contatoContainer {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-size: 45%;
    background-position: left;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 2em 1em;
    gap: 2em;
  }

  .contatoForm {
    padding-left: 0;
    width: 100%;
    max-width: 350px; 
  }

  .contatoForm input,
  .contatoForm textarea {
    width: 100%;
    font-size: 1em;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.25);
  }
 
  .contatoForm button {
    width: 100%;
    margin-top: 0em;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 6px 10px 30px rgba(0, 0, 0, 0.25);
  }

  .BalaoArgalji {
    display: none;
  }
}

