:root {
  --primary: #a8004f;
  --primary-dark: #7f003c;
  --accent-dark: #2a0014;
  --white: #ffffff;
  --light-bg: #f6f6f8;
  --text: #2d2d2d;
  --shadow-soft: 0 15px 35px rgba(42, 0, 20, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--white);
  padding-top: 82px;
}

.bg-light-gray {
  background: var(--light-bg);
}

.section-space {
  padding: 90px 0;
}

.section-title h2 {
  color: var(--accent-dark);
  font-weight: 700;
}

.section-title p {
  color: #666;
  margin-bottom: 0;
}

.main-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.nav-link {
  color: #4e4e4e;
  font-weight: 600;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #23c562, #16924a);
  color: var(--white);
  border: none;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(35, 197, 98, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #1eb45a, #117a3d);
  color: var(--white);
}

.hero-section {
  padding: 100px 0 90px;
  color: var(--white);
  background: linear-gradient(135deg, #a8004f 0%, #7b0038 50%, #2a0014 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
}

.hero-section h1 {
  line-height: 1.25;
}

.hero-visual {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.mini-product-card {
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  border-radius: 18px;
  padding: 12px;
  height: 100%;
}

.mini-product-card h6,
.mini-product-card h5 {
  color: var(--accent-dark);
  margin-bottom: 6px;
  font-weight: 700;
}

.mini-product-card p {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.mini-highlight {
  background: #fff4fa;
  border: 1px solid #ffd4e8;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card i {
  font-size: 1.8rem;
  color: var(--primary);
}

.category-card h5 {
  margin-top: 14px;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-weight: 700;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(42, 0, 20, 0.16);
}

.product-filters .btn-filter {
  border: 1px solid #e7cedb;
  color: var(--primary);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  background: #fff7fb;
}

.product-filters .btn-filter.active,
.product-filters .btn-filter:hover {
  background: var(--primary);
  color: var(--white);
}

.product-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.product-card h5 {
  color: var(--accent-dark);
  font-weight: 700;
}

.product-card p {
  color: #666;
  min-height: 48px;
}

.product-price {
  color: var(--primary);
  font-weight: 700;
}

.btn-main {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none;
  font-weight: 600;
}

.btn-main:hover {
  color: var(--white);
  filter: brightness(1.05);
}

.offers-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-dark) 100%);
}

.offer-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
}

.offer-card h5 {
  color: var(--accent-dark);
  font-weight: 700;
}

.offer-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.shadow-soft {
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.benefit-card i {
  font-size: 1.7rem;
  color: var(--primary);
}

.benefit-card h5 {
  margin-top: 12px;
  color: var(--accent-dark);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(4) {
  grid-column: span 4;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  grid-column: span 4;
}

.gallery-grid img:nth-child(3),
.gallery-grid img:nth-child(6) {
  grid-column: span 4;
}

.final-cta {
  background: linear-gradient(180deg, #fff 0%, #ffeef7 100%);
}

.cta-card {
  background: var(--white);
  border-radius: 24px;
  padding: 44px 24px;
  box-shadow: var(--shadow-soft);
}

.cta-card h2 {
  color: var(--accent-dark);
  font-weight: 700;
}

.footer {
  background: var(--accent-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 0 30px;
}

.footer h6,
.footer a {
  color: var(--white);
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #ffc7e2;
}

.footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0 20px;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-soft);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.back-to-top:hover {
  background: var(--primary-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  body {
    padding-top: 76px;
  }

  .hero-section {
    padding: 85px 0 80px;
  }

  .brand-text {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 70px 0;
  }

  .product-image {
    height: 200px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(3),
  .gallery-grid img:nth-child(4),
  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(6) {
    grid-column: span 1;
    height: 170px;
  }

  .cta-card {
    padding: 34px 18px;
  }
}
