body {
  font-family: sans-serif;
  margin: 0;
}

header {
  background-color: #192a56;
  color: #ffffff;
}

#Voltar {
  display: inline-block;
  background-color: #425481;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s;
}

#Voltar:hover {
  background-color: #f5f5f5;
  color: black;
}

.projetos-Jose {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.texto-container {
  flex: 1;
  min-width: 300px;
}

.texto-container h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.texto-container p {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.imagem-container {
  text-align: center;
}

.imagem-container img {
    width: 300px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
}

#contato-main {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background-color: #f4f4f4;
}

.form-container {
  background-color: white;
  width: 100%;
  max-width: 600px;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
  color: #192a56;
  margin-bottom: 10px;
  text-align: center;
}

.form-container p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

form input[type="text"],
form input[type="email"],
form textarea,
form input[type="file"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #192a56;
  outline: none;
}

.btn-enviar {
  width: 100%;
  padding: 15px;
  background-color: #192a56;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn-enviar:hover {
  background-color: #273c75;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 20px 0 20px;
  box-sizing: border-box;
}

.header-actions {
  display: flex;
  gap: 15px;
}

.action-btn {
  width: 45px;
  height: 45px;
  
  /* : 
     50% = Bola
     12px = Quadrado arredondado (App) */
  border-radius: 12px; 
  
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  text-decoration: none;
}

.action-btn:hover {
  transform: scale(1.1);
}


.action-btn img {
    width: 39px;
    height: 60px;
    object-fit: contain;
}

.btn-whats {
  background-color: #0ca629; 
}

.btn-google {

  background-color: #7248B9; 
}


.link {
  color: #f4f4f4;
  text-decoration: none;
  font-weight: bold;
}

#link_Wap{
 transition: 1s;
}
#link_Wap:hover {
  color: #0ca629;
  transform: scale(1.1);
}

#link_Form{
  transition: 1s;
}
#link_Form:hover {
  color: #9467e0;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .top-nav {
    padding: 15px;
  }
  .action-btn {
    width: 40px;
    height: 40px;
  }
  .action-btn img {
    width: 22px;
    height: 22px;
  }
}

@media   (max-width: 415px)
{
  .projetos-Jose {
    padding-left: 1rem;
}
}