* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f2eb;
  color: #241c18;
  overflow-x: hidden;
}

.header {
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f7f2eb;
}

.logo {
  width: 110px;
  border-radius: 50%;
}

.header-btn,
.cta,
button {
  background: #241c18;
  color: #fff;
  padding: 14px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.cta.light {
  background: #d7c8b6;
  color: #241c18;
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  background-color: currentColor;
  -webkit-mask: url("assets/icon-whatsapp.png") center/contain no-repeat;
  mask: url("assets/icon-whatsapp.png") center/contain no-repeat;
  flex-shrink: 0;
}

.cta-pulse {
  animation: ctaPulse 1.8s infinite;
}

@keyframes ctaPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 28, 24, 0.45);
  }

  70% {
    transform: scale(1.035);
    box-shadow: 0 0 0 14px rgba(36, 28, 24, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(36, 28, 24, 0);
  }
}

.premium-carousel-section {
  width: 100%;
  overflow: hidden;
  background: #f4eee6;
  padding: 30px 0;
  margin: 0;
}

.premium-carousel-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 24px;
  width: max-content;
  padding: 0 24px;
  cursor: grab;
  transform: translateX(0);
  will-change: transform;
}

.premium-carousel-track.dragging {
  cursor: grabbing;
}

.premium-carousel-track img {
  flex: 0 0 auto;
  width: 310px;
  height: 410px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(36, 28, 24, 0.18);
  user-select: none;
  -webkit-user-drag: none;
}

.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 10, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 92%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 34px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

.hero {
  min-height: 80vh;
  padding: 80px 8%;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(247, 242, 235, 0.86), rgba(247, 242, 235, 0.86)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6") center/cover;
}

.hero-content {
  max-width: 650px;
}

.tag {
  color: #8c735d;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 20px 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.section,
.categories,
.benefits,
.quiz {
  padding: 80px 8%;
  text-align: center;
}

.section p {
  max-width: 760px;
  margin: 0 auto 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.card {
  background: #fff;
  padding: 40px 20px;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.dark {
  background: #241c18;
  color: #fff;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 30px auto 0;
}

.benefit-list div {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  font-weight: bold;
}

form {
  max-width: 520px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select {
  padding: 17px;
  border-radius: 12px;
  border: 1px solid #d8c8b8;
  font-size: 16px;
}

footer {
  padding: 40px 8%;
  text-align: center;
  background: #e8ded2;
}

footer img {
  width: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .header {
    display: none;
  }

  .premium-carousel-section {
    padding: 12px 0;
    overflow: hidden;
  }

  .premium-carousel-track {
    gap: 12px;
    padding: 0 12px;
  }

  .premium-carousel-track img {
    width: 220px;
    height: 300px;
    border-radius: 20px;
  }

  .hero {
    min-height: auto;
    padding: 18px 6% 45px;
  }

  .hero-content {
    max-width: 100%;
  }

  .tag {
    font-size: 13px;
    line-height: 1.25;
    margin: 0 0 12px;
  }

  h1 {
    font-size: 31px;
    line-height: 1.08;
    margin: 0 0 18px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.2;
  }

  p {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .cta,
  button {
    width: 100%;
    padding: 15px 18px;
  }

  .section,
  .categories,
  .benefits,
  .quiz {
    padding: 50px 6%;
  }

  .grid,
  .benefit-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 28px 18px;
    font-size: 18px;
  }

  .benefit-list div {
    padding: 18px;
  }

  form {
    width: 100%;
  }

  input,
  select {
    width: 100%;
    padding: 16px;
  }

  .image-modal {
    padding: 16px;
  }

  .image-modal img {
    max-width: 95%;
    max-height: 80vh;
    border-radius: 18px;
  }

  .close-modal {
    top: 14px;
    right: 20px;
    font-size: 38px;
  }

  footer {
    padding: 30px 6%;
  }

  footer img {
    width: 80px;
  }
}