/* ===== HOME PAGE — aconchegante ===== */

.hero {
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    var(--mocha) 0%,
    var(--cappuccino) 60%,
    var(--caramel) 100%
  );
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  animation: fadeUp 0.6s ease both;
  box-shadow: 0 12px 40px rgba(92, 46, 14, 0.35);
}

/* Decoração sutil no hero */
.hero::before {
  content: "";
  position: absolute;
  right: 260px;
  top: 20px;
  font-size: 64px;
  opacity: 0.07;
  transform: rotate(15deg);
  pointer-events: none;
}

.hero-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.5px;
}

.hero-sub {
  font-size: 14px;
  color: rgba(255, 245, 228, 0.78);
  margin-bottom: 22px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  line-height: 1.6;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--mocha);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.22s;
  font-family: "Nunito", sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  background: #fff1e0;
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.hero-img {
  width: 100%;
  max-width: 230px;
  object-fit: contain;
  animation: float 3.5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.25));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.section-title {
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 14px;
  animation: fadeUp 0.5s ease 0.15s both;
  color: var(--mocha);
  font-family: "Nunito", sans-serif;
  letter-spacing: -0.3px;
}

/* ===== QUICK GRID ===== */
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}

.quick-card {
  background: var(--cream-light);
  border: 2px solid var(--cream-mid);
  border-radius: var(--radius);
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--mocha);
  box-shadow: var(--shadow-card);
  text-align: center;
  animation: cardIn 0.4s ease both;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.2s;
}

.quick-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--caramel);
  background: #fff1e0;
}

.quick-icon {
  font-size: 36px;
  transition: transform 0.2s;
}

.quick-card:hover .quick-icon {
  transform: scale(1.15) rotate(-5deg);
}

.quick-label {
  font-size: 13px;
  font-weight: 800;
  font-family: "Nunito", sans-serif;
  color: var(--mocha);
}

/* ===== HIGHLIGHT GRID ===== */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.highlight-card {
  background: var(--cream-light);
  border: 2px solid var(--cream-mid);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  animation: cardIn 0.4s ease both;
  transition:
    transform 0.22s,
    box-shadow 0.22s,
    border-color 0.2s;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--cream-dark);
}

.highlight-img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--cream-mid) 0%, #ffe8c8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  transition: transform 0.3s;
}

.highlight-card:hover .highlight-img {
  transform: scale(1.05);
}

.highlight-body {
  padding: 14px 16px;
}
.highlight-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  font-family: "Nunito", sans-serif;
  color: var(--mocha);
}
.highlight-price {
  font-size: 13px;
  color: var(--caramel);
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.highlight-btn {
  display: block;
  text-align: center;
  margin: 10px 14px 14px;
  padding: 10px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--caramel), var(--cappuccino));
  color: var(--cream);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  font-family: "Nunito", sans-serif;
  box-shadow: 0 3px 10px rgba(200, 120, 58, 0.3);
}

.highlight-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(200, 120, 58, 0.45);
}

/* ===== PROMO ===== */
.promo {
  border-radius: 20px;
  padding: 24px 30px;
  background: linear-gradient(120deg, #ffe5c4, #f5c89a, #ffd4a0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  animation: fadeUp 0.5s ease 0.3s both;
  border: 2px solid var(--cream-dark);
  box-shadow: 0 6px 24px rgba(200, 120, 58, 0.15);
  position: relative;
  overflow: hidden;
}

.promo::before {
  content: "";
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 60px;
  opacity: 0.08;
  transform: rotate(-20deg);
}

.promo p {
  font-size: 15px;
  font-weight: 800;
  color: var(--mocha);
  font-family: "Nunito", sans-serif;
}
.promo span {
  font-size: 13px;
  color: var(--brown-mid);
  margin-top: 4px;
  display: block;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}

.promo-code {
  padding: 11px 24px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--caramel), var(--cappuccino));
  color: var(--cream);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  border: none;
  font-family: "Nunito", sans-serif;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
  box-shadow: 0 4px 14px rgba(200, 120, 58, 0.35);
  white-space: nowrap;
}

.promo-code:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200, 120, 58, 0.5);
}

@media (max-width: 780px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-img {
    display: none;
  }
  .promo {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
}
