:root {
  --pink-100: #ffe6f4;
  --pink-200: #ffbfdf;
  --pink-500: #ff2f92;
  --pink-700: #d80074;
  --violet-800: #3e1a4f;
  --sky-100: #ecfbff;
  --text-900: #2d1f37;
  --text-600: #685970;
  --white: #fff;
  --shadow: 0 14px 40px rgba(255, 47, 146, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text-900);
  background: linear-gradient(180deg, #fff 0%, #fff8fc 48%, #fff 100%);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #ffe7f5;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #ffd2e8;
  box-shadow: 0 8px 20px rgba(216, 0, 116, 0.18);
}

.brand-text {
  font-family: "Baloo 2", cursive;
  font-size: 2rem;
  color: var(--pink-700);
}

.menu {
  display: flex;
  gap: 1.3rem;
  font-family: "Baloo 2", cursive;
  font-weight: 700;
  color: var(--text-600);
}

.menu a:hover {
  color: var(--pink-700);
}

.header-video-wrap {
  padding: 0.15rem 0 0.8rem;
}

.header-video {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid #ffd7ea;
  box-shadow: 0 12px 28px rgba(216, 0, 116, 0.14);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(120deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 8px 20px rgba(216, 0, 116, 0.25);
  cursor: pointer;
}

.btn-sm {
  padding: 0.55rem 1rem;
}

.btn-outline {
  color: var(--pink-700);
  background: transparent;
  border: 2px solid var(--pink-500);
  box-shadow: none;
}

.btn-whatsapp {
  background: linear-gradient(120deg, #25d366, #149647);
  box-shadow: 0 8px 20px rgba(20, 150, 71, 0.25);
}

.hero {
  padding: 3.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #ffe4f2;
  color: var(--pink-700);
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.05;
}

.hero-copy h1 span {
  color: var(--pink-700);
}

.hero-copy p {
  margin: 1rem 0;
  font-size: 1.1rem;
  color: var(--text-600);
}

.hero-note {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.5rem 0.85rem;
  background: #fff0f8;
  border: 1px solid #ffc7e5;
  border-radius: 0.7rem;
  font-weight: 700;
  color: #96306c;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.badges span {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--sky-100);
  border: 1px solid #c6eef6;
}

.hero-art {
  background: radial-gradient(circle at top right, #ffe4f2 0%, #fff 60%);
  border-radius: 1.7rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-art img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 1rem;
}

.section {
  padding: 3.4rem 0;
}

.section-highlight {
  background: linear-gradient(180deg, #fff7fd 0%, #fef0f8 100%);
}

h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
}

.section-subtitle {
  margin: 0 0 1.6rem;
  color: var(--text-600);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid #ffd6ea;
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(255, 47, 146, 0.08);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

.catalog-title {
  margin-bottom: 1rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #ffd4e8;
  box-shadow: 0 12px 24px rgba(216, 0, 116, 0.12);
}

.product-media {
  aspect-ratio: 4 / 3;
  background: #fff7fc;
}

.product-body {
  padding: 0.9rem;
}

.product-title {
  margin: 0;
  font-size: 1.08rem;
}

.product-desc {
  margin: 0.35rem 0 0.7rem;
  font-size: 0.93rem;
  color: var(--text-600);
  min-height: 52px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pink-700);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.gallery-grid img {
  border-radius: 1rem;
  border: 1px solid #ffd6ea;
  box-shadow: 0 12px 22px rgba(215, 44, 130, 0.12);
  background: #fff;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-600);
}

.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #ffd2e8;
  background: #fff;
  font-weight: 800;
  color: var(--pink-700);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 35;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #25d366, #149647);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 150, 71, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-icon {
  width: 1.65rem;
  height: 1.65rem;
}

.contact-form {
  background: #fff;
  border: 1px solid #ffd5e9;
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #efcbe0;
  padding: 0.78rem;
  font: inherit;
}

.cart-panel {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
}

.cart-toggle {
  border: 0;
  background: #351341;
  color: #fff;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.cart-body {
  width: min(360px, 92vw);
  margin-top: 0.55rem;
  border-radius: 1rem;
  border: 1px solid #ffd8eb;
  background: #fff;
  padding: 0.9rem;
  box-shadow: var(--shadow);
  display: none;
}

.cart-body.open {
  display: block;
}

#cart-items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
  max-height: 220px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  border: 1px solid #ffd8ec;
  border-radius: 0.7rem;
  padding: 0.5rem;
}

.site-footer {
  padding: 1.1rem 0 1.5rem;
  border-top: 1px solid #ffe2f1;
  color: var(--text-600);
  font-weight: 700;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

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

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

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .header-video {
    max-height: 170px;
  }

}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .service-grid,
  .catalog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
