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

body {
  font-family: 'Jost', sans-serif;
  background-color: #FFF9FB;
  color: #2D2327;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .hero-title, .section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

/* Navegación */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 5%;
  background: rgba(255, 249, 251, 0.96);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.02);
  border-bottom: 1px solid #FFE4EC;
}
.nav-logo {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #D96C8C, #B84C6C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #4A2C36;
  transition: 0.2s;
}
.nav-links a:hover { color: #D96C8C; }
.nav-cta {
  background: linear-gradient(135deg, #D96C8C, #C25375);
  padding: 0.7rem 1.6rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s;
  box-shadow: 0 4px 12px rgba(217,108,140,0.3);
}
.nav-cta:hover { transform: translateY(-2px); background: #C25375; }

/* Hero */
#hero {
  padding: 10rem 5% 10rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.hero-content { flex: 1.2; min-width: 280px;}
.hero-badge {
  display: inline-block;
  background: #FFE9F0;
  padding: 0.8rem 1rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #B84C6C;
  margin-bottom: 0.5rem;
}
.hero-title {
  font-size: 3.3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #2D1C22;
}
.hero-title em { color: #D96C8C; font-style: italic; }
.hero-desc {
  font-size: 1.1rem;
  color: #5C3E48;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.btn-primary {
  background: #D96C8C;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  box-shadow: 0 6px 14px rgba(217,108,140,0.3);
}
.btn-primary:hover { background: #C25375; transform: scale(1.02); }
.btn-ghost {
  padding: 0.9rem 1.8rem;
  border-radius: 40px;
  color: #D96C8C;
  border: 1.5px solid #FFCFDF;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.btn-ghost:hover { background: #FFF0F5; border-color: #D96C8C; }
.hero-visual { flex: 0.9; position: relative; min-width: 260px; }
.hero-card-main {
  background: white;
  border-radius: 48px;
  padding: 1.8rem;
  box-shadow: 0 30px 35px -15px rgba(0,0,0,0.1);
  text-align: center;
  border: 1px solid #FFE2ED;
}
.hero-img-placeholder { font-size: 4.5rem; margin-bottom: 1rem; }
.card-label { color: #D96C8C; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.card-name { font-weight: 700; font-size: 1.2rem; margin: 0.5rem 0; }
.card-price { color: #B58496; font-size: 0.9rem; }
.hero-float-tag {
  position: absolute;
  background: white;
  border-radius: 60px;
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.t1 { top: -10px; left: -20px; }
.t2 { bottom: 20px; right: -10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: #25D366; }
.dot.gold { background: #D96C8C; }

/* Stats */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  background: #FFF3F7;
  padding: 2.2rem 5%;
  gap: 1.5rem;
  border-top: 1px solid #FFE2ED;
  border-bottom: 1px solid #FFE2ED;
}
.stat { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 700; color: #D96C8C; display: block; }
.stat-label { font-size: 0.9rem; color: #6C4A56; }

/* Secciones generales */
section { padding: 5rem 5%; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D96C8C;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: #2D1C22;
}
.section-subtitle {
  color: #6C4A56;
  max-width: 600px;
  margin-bottom: 2rem;
}
.cat-grid, .prod-grid, .test-grid, .ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-top: 1.5rem;
}
.cat-card {
  background: white;
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 12px rgba(0,0,0,0.02);
  border: 1px solid #FFE2ED;
}
.cat-card:hover { transform: translateY(-6px); border-color: #D96C8C; box-shadow: 0 20px 25px -12px rgba(217,108,140,0.2); }
.cat-icon { font-size: 2.8rem; display: block; margin-bottom: 0.8rem; }
.cat-name { font-weight: 700; color: #2D2327; margin-bottom: 0.3rem; }
.cat-count { font-size: 0.75rem; color: #B58496; }

/* Productos cards */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.prod-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  transition: 0.2s;
  box-shadow: 0 12px 20px -8px rgba(0,0,0,0.05);
  border: 1px solid #FFECF2;
}
.prod-img {
  background: #FAF0F5;
  padding: 2rem;
  text-align: center;
  font-size: 3rem;
  position: relative;
  cursor: pointer;
}
.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #D96C8C;
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-weight: 500;
}
.prod-wish {
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-size: 1.5rem;
  cursor: pointer;
  background: white;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: 0.1s;
}
.prod-info { padding: 1.2rem; }
.prod-cat { font-size: 0.7rem; color: #D96C8C; text-transform: uppercase; letter-spacing: 1px; }
.prod-name { font-weight: 600; font-size: 1.1rem; margin: 0.3rem 0 0.8rem; }
.prod-bottom { display: flex; justify-content: space-between; align-items: center; }
.prod-price { color: #B84C6C; font-weight: 500; }
.prod-btn {
  background: #FFF0F5;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 40px;
  color: #D96C8C;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.prod-btn:hover { background: #FFE2ED; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-img-block { position: relative; }
.about-main-img {
  background: linear-gradient(145deg, #FFEAF2, #FFDCE8);
  border-radius: 60px;
  padding: 3rem;
  text-align: center;
  font-size: 6rem;
}
.about-float-card {
  position: absolute;
  bottom: 20px;
  right: -15px;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 15px 20px rgba(0,0,0,0.05);
  text-align: center;
}
.afc-num { font-size: 1.8rem; font-weight: 800; color: #D96C8C; display: block; }
.values-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-icon { font-size: 1.8rem; }
.value-text strong { display: block; color: #2D2327; }

/* Testimonios */
.testimonials { background: #FFF9FC; }
.test-card {
  background: white;
  padding: 1.8rem;
  border-radius: 36px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  border: 1px solid #FFE4EE;
}
.test-stars { color: #F4B642; margin-bottom: 0.8rem; }
.test-text { font-style: italic; margin-bottom: 1.2rem; line-height: 1.4; }
.test-author { display: flex; gap: 0.8rem; align-items: center; }
.test-avatar {
  width: 40px;
  height: 40px;
  background: #FFEAF2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #D96C8C;
}
.test-name { font-weight: 600; font-size: 0.9rem; }
.test-loc { font-size: 0.7rem; color: #9B6F7F; }

/* Instagram */
.ig-header { text-align: center; }
.ig-handle {
  display: inline-block;
  background: linear-gradient(135deg, #D96C8C, #B84C6C);
  padding: 0.7rem 1.8rem;
  border-radius: 60px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
}
.ig-grid { margin-top: 2rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.ig-post {
  background: linear-gradient(135deg, #FADADD, #F9C5D1);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
}
.ig-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(217,108,140,0.85);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: white;
  opacity: 0;
  transition: 0.2s;
  font-size: 0.8rem;
  font-weight: 500;
}
.ig-post:hover .ig-post-overlay { opacity: 1; }

/* Newsletter */
.newsletter {
  background: #FFEAF2;
  margin: 2rem 5% 3rem;
  border-radius: 60px;
  padding: 3rem 2rem;
  text-align: center;
}
.newsletter h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.nl-form {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}
.nl-input {
  padding: 0.9rem 1.5rem;
  border-radius: 80px;
  border: none;
  width: 280px;
  font-family: inherit;
  background: white;
  border: 1px solid #FFD0DF;
}
.nl-btn {
  background: #D96C8C;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 80px;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
footer {
  background: #2D1C22;
  color: #F5E2EA;
  padding: 3rem 5% 1rem;
}
.footer-inner { max-width: 1300px; margin: auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand p { margin-top: 0.5rem; color: #CCB3BD; }
.footer-col h4 { margin-bottom: 1rem; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #E2C9D2; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid #543C46;
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.social-links { display: flex; gap: 1rem; }
.soc-btn {
  background: #543C46;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  color: white;
}
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
  transition: 0.2s;
  z-index: 200;
}
.wa-btn:hover { transform: scale(1.07); }

/* MODAL (DIÁLOGO) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 28, 34, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}
.modal-overlay.active {
  visibility: visible;
  opacity: 1;
}
.modal-container {
  background: #FFFFFF;
  max-width: 480px;
  width: 90%;
  border-radius: 48px;
  padding: 2rem 1.8rem;
  text-align: center;
  box-shadow: 0 35px 50px rgba(0,0,0,0.3);
  transform: scale(0.95);
  transition: transform 0.2s;
  border: 1px solid #FFD9E6;
}
.modal-overlay.active .modal-container {
  transform: scale(1);
}
.modal-close {
  float: right;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #B58496;
  margin-top: -10px;
}
.modal-icon {
  font-size: 3rem;
  margin: 0.5rem 0 0.2rem;
}
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #D96C8C;
  margin-bottom: 0.3rem;
}
.modal-product-name {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
.modal-price {
  color: #B84C6C;
  margin-bottom: 1.2rem;
}
.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 1.5rem 0;
}
.modal-btn {
  background: #FFF0F5;
  border: 1px solid #FFD0DF;
  padding: 0.9rem;
  border-radius: 60px;
  font-weight: 600;
  color: #4A2C36;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-btn.primary {
  background: #D96C8C;
  color: white;
  border: none;
  box-shadow: 0 6px 12px rgba(217,108,140,0.3);
}
.modal-btn.primary:hover { background: #C25375; transform: translateY(-2px);}
.modal-btn.whatsapp {
  background: #25D366;
  color: white;
  border: none;
}
.modal-btn.whatsapp:hover { background: #1DA955; }
.modal-note {
  font-size: 0.7rem;
  color: #9E7A89;
  margin-top: 1rem;
}
@media (max-width: 800px) {
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
}