/* ---------------------- RESET ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, #fff5f9, #fff8f1);
  color: #4b3b3b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------------------- LINKS ---------------------- */
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* ---------------------- HEADER ---------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

header h1 {
  font-family: 'Pacifico', cursive;
  color: #d68c6c;
  font-size: 2.2rem;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li a {
  font-weight: 600;
  color: #d68c6c;
  position: relative;
  padding-bottom: 4px;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #d68c6c;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

.btn-order {
  background: linear-gradient(45deg, #d68c6c, #fcbf9e);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(214, 140, 108, 0.3);
  transition: all 0.3s ease;
}

.btn-order:hover {
  transform: translateY(-3px);
  background: linear-gradient(45deg, #fcbf9e, #d68c6c);
  box-shadow: 0 8px 25px rgba(214, 140, 108, 0.4);
}

/* ---------------------- HERO ---------------------- */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 150px 60px 80px;
  background: linear-gradient(180deg, #fff8f1 0%, #fff 100%);
}

.hero-text {
  max-width: 550px;
}

.hero-text h2 {
  font-size: 3rem;
  color: #d68c6c;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.2rem;
  color: #5e4b4b;
  margin-bottom: 25px;
}

.hero-img img {
  width: 480px;
  border-radius: 25px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero-img img:hover {
  transform: scale(1.03);
}

/* ---------------------- SECTIONS ---------------------- */
section {
  padding: 100px 50px;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  color: #d68c6c;
  margin-bottom: 50px;
  position: relative;
}

section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #d68c6c;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ---------------------- PRODUTOS ---------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card h3 {
  color: #d68c6c;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.card p {
  color: #6c5555;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #d68c6c;
  margin-bottom: 10px;
}

.add-btn {
  background: #d68c6c;
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.add-btn:hover {
  background: #fcbf9e;
  transform: translateY(-2px);
}

/* ---------------------- CARRINHO ---------------------- */
#carrinho {
  max-width: 550px;
  margin: 0 auto;
  background: #fff9f7;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

#carrinho ul {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
  text-align: left;
}

#carrinho li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px 0;
  color: #5b4a4a;
}

#carrinho h3 {
  margin: 15px 0;
  color: #d68c6c;
}

#carrinho .remover {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 4px 8px;
  cursor: pointer;
  margin-left: 10px;
  font-size: 0.9em;
}

#carrinho .remover:hover {
  background-color: #c0392b;
}


/* ---------------------- FOOTER ---------------------- */
footer {
  background: linear-gradient(135deg, #fff5f9, #fff8f1);
  padding: 50px 40px;
  text-align: center;
  border-top: 1px solid rgba(214, 140, 108, 0.3);
}

footer h3 {
  color: #d68c6c;
  margin-bottom: 25px;
  font-size: 1.4rem;
}

footer .socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

footer .socials a {
  font-size: 1.8rem;
  color: #d68c6c;
  transition: all 0.3s ease;
}

footer .socials a:hover {
  transform: scale(1.3);
  color: #fcbf9e;
}

footer p {
  color: #7a6a6a;
  font-size: 0.95rem;
}

/* ---------------------- RESPONSIVO ---------------------- */
@media (max-width: 900px) {
  header {
    flex-direction: column;
    padding: 10px 20px;
  }

  nav ul {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    flex-direction: column-reverse;
    padding: 140px 30px 60px;
    text-align: center;
  }

  .hero-img img {
    width: 90%;
    margin-bottom: 25px;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  #carrinho {
    width: 90%;
  }
}
