/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cormorant Garamond', serif;
}

body {
  background-color: #fdf7f8;
  font-family: 'Segoe UI', sans-serif;
  color: #5c3c54;
}

a {
  font-family: 'Cormorant Garamond', serif;
  text-decoration: none;
  color: inherit;
}

/* Header */
header {
  background-color: #ffe0f1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

header .logo img {
  height: 100px;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav ul li a {
  color: #5c3c54;
  font-weight: 400;
  font-size: 25px;
  cursor: pointer;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #a04c7c;
}

/* Hero */
.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 5%;
  background: #fdf7f8;
  align-items: center;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  font-family: 'Cinzel Decorative', cursive;
  order: 0; /* desktop: h1 antes da imagem */
}

.hero-text h1 {
  font-size: 4.8em;
  font-weight: 400;
  color: #a04c7c;
}

.hero-text p {
  font-size: 1.5em;
  margin: 20px 0;
}

.hero-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  order: 1;
}

.hero-image img {
  max-width: 50%;
  border-radius: 12px;
}

/* Botão */
.btn {
  display: inline-block;
  background: #5c3c54;
  color: #ffffff;
  font-size: 20px;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
}

/* Seções */
.sobre, .contato, .loja, .produtos {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sobre h2, .produtos h2, .contato h2, .loja h2 {
  color: #a04c7c;
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
}

.sobre p {
  font-size: 1.6em;
  line-height: 1.6;
}

/* Galeria */
.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.galeria .item {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.galeria .item:hover {
  transform: translateY(-5px);
}

.galeria .item img {
  width: 100%;
  border-radius: 10px;
}

.galeria .item p {
  margin: 10px 0;
  color: #5c3c54;
  font-weight: bold;
}

/* Contato */
.contato .icones {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.contato p {
  font-size: 1.3em;
}

.contato .icones img {
  width: 40px;
}

.catalago {
  position: fixed;
  bottom: 120px;
  right: 10px;
  width: 55px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #ffe0f1;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

/* Carrossel */
.carroussel {
  position: relative;
  width: 100%;
  height: 520px;
  background: #ffe0f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carroussel .image {
  display: flex;
  justify-content: center;
  position: relative;
}

.carroussel .image img {
  width: 400px;
  height: 400px;
  border-radius: 15px;
  margin: 0;
  position: static;
}

/* Remove texto abaixo da imagem */
.carroussel .image p {
  display: none;
}

/* Botões setas do carrossel */
.carroussel .button {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.carroussel .button a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  vertical-align: middle;
  color: #a04c7c;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

.carroussel .button .prev {
  border-radius: 0 5px 5px 0;
}

.carroussel .button .next {
  border-radius: 5px 0 0 5px;
}

/* RESPONSIVO */
@media (max-width: 768px) {

  body {
    font-family: 'Courier New', Courier, monospace, sans-serif;
  }

  /* Header só com logo e centralizado */
  header {
    justify-content: center !important;
    padding: 15px 10px;
  }

  nav {
    display: none; /* esconde a nav no mobile */
  }

  header .logo img {
    height: 80px;
  }

  /* Hero: h1 acima da imagem */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    order: 0; /* h1 no topo */
    width: 100%;
    margin-bottom: 15px;
  }

  .hero-text h1 {
    font-size: 2.8em;
    color: #a04c7c;
  }

  .hero-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
  }

  .hero-image {
    order: 1;
    width: 100%;
  }

  .hero-image img {
    width: 80%;
    max-width: 300px;
    border-radius: 10px;
    margin: 0 auto;
  }

  /* Galeria produtos 2 colunas */
  .galeria {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 90%;
    margin: 0 auto;
  }

  /* Carrossel */
  .carroussel {
    height: auto;
    padding: 20px 0;
  }

  .carroussel .image img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    position: static;
  }
}