/* ---------- ESTILO GERAL ---------- */
body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  background: #fdf9f3
    url("https://www.transparenttextures.com/patterns/linen.png");
  color: #4b3b2b;
  line-height: 1.6;
}

/* ---------- CABEÇALHO ---------- */
header {
  background: linear-gradient(135deg, #cca473, #c49a6c);
  color: white;
  text-align: center;
  padding: 25px 10px;
  border-bottom: 4px solid #b3834c;
}

header h1 {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: 2.5em;
  letter-spacing: 8px;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 50%;
  background-color: #fff8ef;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff8ef;
  text-decoration: none;
  margin: 0 12px;
  font-weight: bold;
  font-size: 20px;
  transition: color 0.3s;
}

nav a:hover,
nav a.active {
  color: #e6e945;
  text-decoration: underline;
}

.hero {
  text-align: center;
  background: #fffaf2;
  padding: 30px 20px;
  background-image: url("https://www.transparenttextures.com/patterns/white-paper.png");
}

.hero h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  color: #a06a2a;
  margin-bottom: 10px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto 20px;
}

.btn {
  background: #b3834c;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  transform: scale(1.75);
  background: #e49738;
}

/* ---------- GALERIA INICIAL NA PÁGINA INICIAL ---------- */
.galeria-inicial img {
  width: 300px;
  height: 300px;
  margin: 10px;
  cursor: pointer;
  padding: 5px 10px 5px 5px;
  border-radius: 20px;
  transition: transform 0.3s;
}

.galeria-inicial img:hover {
  transform: scale(1.4);
}

.inicio {
  text-align: justify;
  font-size: 1.2em;
  margin: 3% 10%;
}

/* ---------- GALERIA ---------- */
.images-gallery h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2em;
  color: #a06a2a;
  margin-bottom: 10px;
  text-align: center;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
  margin-left: 10%;
  margin-right: 10%;
}

.gallery img {
  width: 200px;
  height: 200px;
  margin: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.5);
}

/* ---------- MODAL DE IMAGEM AMPLIADA ---------- */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 30px;
  cursor: pointer;
  background: none;
  border: none;
}

.prev {
  left: 10px;
}
.next {
  right: 10px;
}

/* ---------- SEÇÃO SOBRE MIM ---------- */
.sobre {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
  background: #fffaf2;
}

#minhafoto {
  display: block;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  border-radius: 35%;
}

.quemsou {
  text-align: justify;
  margin: 20px 15%;
  font-size: 1.1em;
  padding: 10px;
}

/* ---------- CONTATO ---------- */
.contato {
  background: #fffaf2;
  padding: 60px 20px;
  text-align: center;
}

.contato h2 {
  color: #a06a2a;
  font-family: "Playfair Display", serif;
}

form {
  max-width: 500px;
  margin: 25px auto 0;
  background: #ffffffb8;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  text-align: left;
  font-weight: bold;
  color: #5c4630;
}

input,
textarea,
select {
  padding: 12px;
  border: 1px solid #d9b68b;
  border-radius: 8px;
  font-size: 1em;
  font-family: inherit;
  background: #fffefc;
}

textarea {
  height: 100px;
  resize: vertical;
}

button {
  background: #b3834c;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #a06a2a;
}

/* ---------- RODAPÉ ---------- */

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr; /* esquerda menor, direita maior */
  gap: 20px;
  background-color: #c49a6c;
  color: antiquewhite;
  padding: 20px 15px;
  text-align: left;
  border-top: 3px solid #b3834c;
  align-items: start; /* alinha o conteúdo ao topo */
}

.footer-contato h3 {
  margin-bottom: 10px;
  color: antiquewhite;
  font-size: 15px;
}

.footer-social ul li a {
  color: antiquewhite;
  transition: transform 0.3s;
  text-decoration: none;
}

.footer-social ul li a:hover {
  text-decoration: underline;
}

.footer-social img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s;
  filter: brightness(95%);
}

.footer-social img:hover {
  transform: scale(1.15);
  filter: brightness(120%);
}

.footer-social a:hover {
  transform: scale(1.15);
  filter: brightness(120%);
  text-decoration-color: #c49a6c;
  text-decoration: overline;
}

.footer-credit {
  grid-column: span 1; /* ocupa as três colunas */
  text-align: center;
  align-items: center;
  margin: auto;
  font-size: 1em;
  color: #f0e6d2;
}

/* Responsivo para telas pequenas */
@media (max-width: 700px) {
  footer {
    grid-template-columns: 1fr; /* empilha as colunas */
    text-align: center;
  }
}
