* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: #f8c5d4;
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  overflow-x: hidden;
}

.hero {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8c5d4;
  overflow: hidden;
}

.hero picture,
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: center;
  animation: fadeIn 1.2s ease-in-out;
}

.buttons {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  display: flex;
  gap: 18px;
  z-index: 2;
  animation: buttonsIn 1.4s ease-in-out;
}

.btn {
  text-decoration: none;
  color: #111;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 14px 34px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

section {
  padding: 80px 8%;
  background: #f8c5d4;
  text-align: center;
}

section h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

section p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
}

.catalogo-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: rgba(255,255,255,0.45);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  padding: 38px 24px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes buttonsIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

/* Celular */
@media (max-width: 768px) {
  .hero img {
    object-fit: cover;
    object-position: center;
  }

  .buttons {
    bottom: 7%;
    width: 88%;
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  section {
    padding: 60px 7%;
  }

  section p {
    font-size: 16px;
  }

  .catalogo-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .buttons {
    bottom: 7%;
  }

  .catalogo-grid {
    grid-template-columns: 1fr 1fr;
  }
}
