/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5e3e1;
}

main {
    padding: 20px;
}



.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.menu li a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.caixa1 {
    background-color: white;
    padding: 40px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa1:hover {
    transform: scale(1.03); /* Aumenta levemente */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


.caixa1 h1 {
    flex: 1 1 100%;
    font-size: 28px;
    color: #a88f8a;
    text-align: left;
    margin-bottom: 20px;
}

.caixa1 img {
    max-width: 250px;
    border-radius: 15px;
    flex-shrink: 0;
}

.caixa1 p {
    flex: 1;
    font-size: 18px;
    color: #5a4a47;
    line-height: 1.6;
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5e3e1;
    margin: 0;
    padding: 0;
}

main {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.contato {
    background-color: white;
    padding: 40px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contato h1 {
    margin-bottom: 30px;
    color: #a88f8a;
    font-size: 28px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #5a4a47;
}

input, textarea {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #dcbdb9;
    border-radius: 10px;
    font-size: 16px;
    background-color: #fff8f7;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #a88f8a;
    background-color: #fff1f0;
}

button {
    background-color: #d4aba5;
    color: white;
    border: none;
    padding: 14px;
    font-size: 18px;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #c39893;
    transform: scale(1.03);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5e3e1;
    margin: 0;
    padding: 0;
}

main {
    padding: 40px 20px;
}

.projetos h1 {
    text-align: center;
    font-size: 32px;
    color: #a88f8a;
    margin-bottom: 40px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fceeee;
    margin: 0;
    padding: 0;
}

main {
    padding: 40px 20px;
}

.projetos h1 {
    text-align: center;
    font-size: 32px;
    color: #a8746e;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: linear-gradient(135deg, #ffffff, #fff6f6);
    border: 2px solid #f0dada;
    border-radius: 20px;
    padding: 25px;
    width: 300px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: scale(1.05);
    border-color: #e5bcbc;
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.12);
}

.card h2 {
    font-size: 20px;
    color: #b06f6a;
    margin-bottom: 15px;
    text-align: center;
}

.card p {
    font-size: 15px;
    color: #5c4a48;
    line-height: 1.6;
    text-align: justify;
}

.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}

/* SOBRE MIM */
.sobre {
  padding: 60px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Arial', sans-serif;
}

.sobre h1 {
  font-size: 2.5rem;
  color: #a88f8a;
  margin-bottom: 30px;
  border-bottom: 2px solid #f48fb1;
  padding-bottom: 10px;
  text-align: center;
}

.sobre .texto {
  background-color: #ffffff;
  max-width: 800px;
  width: 100%;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  text-align: justify;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse */
.sobre .texto:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 768px) {
  .sobre h1 {
    font-size: 2rem;
  }

  .sobre .texto {
    font-size: 1rem;
    padding: 20px;
  }
}





/* RESPONSIVO */
@media (max-width: 768px) {
    .caixa1 {
        flex-direction: column-reverse;
        text-align: center;
    }

    .caixa1 h1 {
        text-align: center;
    }

    .caixa1 img {
        width: 70%;
    }

    .menu {
        flex-direction: column;
        gap: 10px;
    }
}
