/* ===== VARIABLES ===== */
:root {
  --rose:        #E8509A;
  --rose-deep:   #CC3080;
  --rose-soft:   #F7BBDA;
  --rose-blush:  #FDE8F3;
  --lavender:    #A8C8E0;
  --mint:        #8FBAD8;
  --cream:       #F8FAFC;
  --peach:       #EDF5FB;
  --ink:         #1E2A38;
  --ink-soft:    #4A607A;
  --ink-mute:    #8EA5BB;
  --white:       #FFFFFF;
  --glass:       rgba(255,255,255,0.6);
  --line:        rgba(168,200,224,0.35);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CURSOR ===== */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 36px; height: 36px;
  pointer-events: none; z-index: 9999;
  opacity: 0; transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
}
.cursor.is-ready { opacity: 1; }
.cursor span {
  font-size: 1.3rem; color: var(--rose);
  display: block;
  transition: transform 0.2s var(--ease-out), color 0.2s ease;
}
.cursor.is-hovering span { transform: scale(1.8) rotate(20deg); color: var(--rose-deep); }
@media (hover: none) { .cursor { display: none; } }

/* ===== TYPOGRAPHY ===== */
.section-kicker {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600; line-height: 1.1;
  color: var(--ink); margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-title em { color: var(--rose-deep); font-style: italic; }
.section-sub { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; }
.hero-script, .footer-script {
  font-family: "Dancing Script", cursive;
  color: var(--rose-deep);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.85rem 2rem; border-radius: 100px;
  font-family: "DM Sans", sans-serif; font-size: 0.9rem; font-weight: 500;
  cursor: pointer; border: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(212,120,154,0.35);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(212,120,154,0.45); }

.btn-ghost {
  background: var(--white);
  color: var(--ink-soft);
  border: 1.5px solid var(--rose-soft);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-deep); }

.btn-card {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white); padding: 0.55rem 1.3rem; font-size: 0.82rem;
  box-shadow: 0 4px 14px rgba(212,120,154,0.3);
}
.btn-card:hover { box-shadow: 0 6px 20px rgba(212,120,154,0.4); }

.btn-notify {
  background: transparent; color: var(--rose-deep);
  border: 1.5px solid var(--rose); box-shadow: none;
  padding: 0.55rem 1.3rem; font-size: 0.82rem;
}
.btn-notify:hover { background: var(--rose-blush); }

.btn-overlay {
  background: var(--white); color: var(--rose-deep);
  font-size: 0.88rem; padding: 0.65rem 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn-whatsapp {
  background: #25D366; color: var(--white);
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
  font-size: 0.95rem; padding: 1rem 2rem;
}
.btn-whatsapp:hover { background: #1ebe5a; box-shadow: 0 8px 30px rgba(37,211,102,0.4); }

.btn-instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(220,39,67,0.3);
  font-size: 0.95rem; padding: 1rem 2rem;
}
.btn-instagram:hover { filter: brightness(1.08); box-shadow: 0 8px 30px rgba(220,39,67,0.4); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out), transform 0.75s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal[data-split] { opacity: 1; transform: none; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.4rem 2rem;
  transition: background 0.35s ease, backdrop-filter 0.35s ease,
              box-shadow 0.35s ease, padding 0.35s ease;
}
.nav.is-scrolled {
  background: rgba(253,248,245,0.9);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 0 var(--line), 0 4px 20px rgba(212,120,154,0.08);
  padding: 1rem 2rem;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
  letter-spacing: 0.01em; white-space: nowrap;
}
.nav-logo span { color: var(--rose-deep); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 400; color: var(--ink-soft);
  transition: color 0.2s ease; position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--rose);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white); padding: 0.55rem 1.25rem; border-radius: 100px;
  box-shadow: 0 4px 14px rgba(212,120,154,0.3);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.nav-links .nav-cta:hover { box-shadow: 0 6px 20px rgba(212,120,154,0.42); }
.nav-links .nav-cta::after { display: none; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(253,248,245,0.97); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin-bottom: 2rem; }
.mobile-menu a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 600; color: var(--ink);
  transition: color 0.2s ease;
}
.mobile-menu a:hover { color: var(--rose-deep); }

/* ===== PETALS / DECORATIONS ===== */
.petal {
  position: absolute; color: var(--rose);
  animation: petalFloat 5s ease-in-out infinite;
  pointer-events: none; font-size: 1rem; opacity: 0.5;
}
.p1 { top: 12%; left: 6%;  animation-delay: 0s;   font-size: 1.2rem; }
.p2 { top: 20%; right: 10%; animation-delay: 1s;  font-size: 0.9rem; }
.p3 { top: 55%; left: 4%;  animation-delay: 2s;   font-size: 0.8rem; }
.p4 { bottom: 25%; right: 7%; animation-delay: 1.5s; font-size: 1.1rem; }
.p5 { bottom: 12%; left: 15%; animation-delay: 3s;  font-size: 0.85rem; }
.p6 { top: 75%; right: 18%; animation-delay: 0.5s; font-size: 1rem; }
@keyframes petalFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50%       { transform: translateY(-14px) rotate(15deg); opacity: 0.9; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; overflow: hidden; padding-top: 80px;
}
.hero-bg-wrap { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(253,240,245,0.82) 0%,
    rgba(253,248,245,0.72) 35%,
    rgba(232,213,240,0.55) 70%,
    rgba(213,237,232,0.4) 100%
  );
}
.hero-petals { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 0 2rem; width: 100%;
}
.hero-kicker {
  display: block; font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rose-deep); margin-bottom: 1rem;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600; line-height: 1.05;
  color: var(--ink); margin-bottom: 0.6rem;
  text-wrap: balance; max-width: 13ch;
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}
.hero-title em { color: var(--rose-deep); font-style: italic; font-weight: 300; }
.hero-script {
  font-size: 1.6rem; margin-bottom: 1.25rem;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
  display: block;
}
.hero-sub {
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.7;
  max-width: 480px; margin-bottom: 2rem;
  animation: fadeUp 0.9s var(--ease-out) 0.62s both;
}
.hero-actions {
  display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.25rem;
  animation: fadeUp 0.9s var(--ease-out) 0.74s both;
}
.hero-proof {
  display: flex; align-items: center; gap: 0.75rem;
  animation: fadeUp 0.9s var(--ease-out) 0.88s both;
}
.proof-dots { display: flex; gap: 2px; }
.pdot { color: var(--rose); font-size: 0.75rem; }
.hero-proof p { font-size: 0.82rem; color: var(--ink-soft); font-weight: 400; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: linear-gradient(135deg, var(--rose-soft), var(--lavender));
  overflow: hidden; padding: 0.9rem 0;
}
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rose-deep);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== ABOUT ===== */
.about {
  padding: 8rem 2rem;
  background: var(--white);
  position: relative; overflow: hidden;
}
.about-deco {
  position: absolute; top: 3rem; right: 3rem;
  font-size: 8rem; color: var(--rose-blush);
  pointer-events: none; line-height: 1;
  font-family: serif;
}
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-frame {
  position: relative; border-radius: 32px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(212,120,154,0.18), 0 0 0 8px var(--rose-blush);
}
.about-img-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about-img-frame:hover img { transform: scale(1.04); }
.about-ribbon {
  position: absolute; bottom: 1.5rem; right: -1px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white); font-family: "Dancing Script", cursive;
  font-size: 1rem; padding: 0.5rem 1.2rem;
  border-radius: 100px 0 0 100px;
  box-shadow: 0 4px 16px rgba(212,120,154,0.35);
}
.about-inner--centered { grid-template-columns: 1fr; max-width: 700px; }
.about-text-col { display: flex; flex-direction: column; gap: 0; }
.about-body { font-size: 1rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.1rem; }
.about-body strong { color: var(--ink); font-weight: 500; }
.about-body em { color: var(--rose-deep); font-style: italic; }
.about-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.25rem 0 2rem; }
.pill {
  background: var(--rose-blush); border: 1px solid var(--rose-soft);
  border-radius: 100px; padding: 0.4rem 0.9rem;
  font-size: 0.78rem; font-weight: 500; color: var(--rose-deep);
}

/* ===== BENEFITS ===== */
.benefits { padding: 8rem 2rem; background: var(--cream); position: relative; }
.benefits-deco {
  position: absolute; top: 3rem; left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem; letter-spacing: 1rem;
  color: var(--rose-soft); pointer-events: none;
}
.benefits-inner { max-width: 1200px; margin: 0 auto; }

.pain-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin: 3rem 0 2rem;
}
.pain-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(212,120,154,0.06);
}
.pain-icon { font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.pain-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.pain-card strong { color: var(--rose-deep); font-weight: 500; }

.solution-pill {
  background: linear-gradient(135deg, var(--rose-soft), var(--lavender));
  border-radius: 20px; padding: 1.75rem 2.5rem;
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 3.5rem;
}
.sol-icon { font-size: 2rem; color: var(--rose-deep); flex-shrink: 0; }
.solution-pill p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  color: var(--ink); font-style: italic; line-height: 1.4;
}
.solution-pill p em { color: var(--rose-deep); }

.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.benefit-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 20px; padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  cursor: default;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(212,120,154,0.14);
}
.benefit-flower { font-size: 1.5rem; color: var(--rose); margin-bottom: 0.9rem; display: block; }
.benefit-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem;
}
.benefit-card p { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.65; }

/* ===== PRODUCTS ===== */
.productos {
  padding: 8rem 2rem;
  background: linear-gradient(160deg, var(--rose-blush) 0%, var(--lavender) 50%, var(--mint) 100%);
  position: relative; overflow: hidden;
}
.productos-inner { max-width: 1200px; margin: 0 auto; }
.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.product-card {
  background: var(--white); border-radius: 24px; overflow: hidden;
  box-shadow: 0 6px 28px rgba(212,120,154,0.1);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 52px rgba(212,120,154,0.2);
}
.product-featured { box-shadow: 0 6px 28px rgba(212,120,154,0.2), 0 0 0 2px var(--rose); }
.product-featured:hover { box-shadow: 0 20px 52px rgba(212,120,154,0.28), 0 0 0 2px var(--rose); }
.product-soon { opacity: 0.85; }
.product-img-wrap { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--rose-soft), var(--lavender), var(--mint));
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
}
.placeholder-flower { font-size: 2.5rem; color: var(--rose-deep); display: block; }
.product-placeholder p { font-size: 0.82rem; font-weight: 500; color: var(--rose-deep); }
.product-badge {
  position: absolute; top: 0.85rem; left: 0.85rem;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: var(--white); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.badge-special { background: linear-gradient(135deg, var(--lavender), #c8a0e0) !important; color: var(--ink) !important; }
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(61,43,53,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-info { padding: 1.25rem; }
.product-tag {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--rose-deep); display: block; margin-bottom: 0.4rem;
}
.product-info h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 0.5rem;
}
.product-info p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.product-price { display: flex; flex-direction: column; }
.price-old { font-size: 0.72rem; color: var(--ink-mute); text-decoration: line-through; }
.price-new { font-size: 1.1rem; font-weight: 600; color: var(--rose-deep); }
.price-soon { font-size: 0.82rem; font-weight: 500; color: var(--rose); font-style: italic; }

/* ===== TESTIMONIALS ===== */
.testimonios {
  padding: 8rem 2rem;
  background: var(--white); position: relative; overflow: hidden;
}
.testimonios::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(at 15% 30%, rgba(245,208,222,0.5) 0%, transparent 55%),
    radial-gradient(at 85% 70%, rgba(232,213,240,0.4) 0%, transparent 55%);
  pointer-events: none;
}
.testimonios-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.testimonios-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonio-card {
  background: var(--cream); border: 1px solid var(--rose-soft);
  border-radius: 24px; padding: 2rem;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.testimonio-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(212,120,154,0.12); }
.t-featured { background: linear-gradient(135deg, var(--rose-blush), var(--lavender)); border-color: var(--rose); }
.t-stars { color: #E8A0B4; font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.testimonio-card blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: var(--ink-soft); line-height: 1.7; margin-bottom: 1.5rem;
}
.t-author { display: flex; align-items: center; gap: 0.75rem; }
.t-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--rose), var(--lavender));
  color: var(--white); font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.t-author strong { display: block; font-size: 0.88rem; font-weight: 500; color: var(--ink); }
.t-author span { font-size: 0.76rem; color: var(--ink-mute); }

/* ===== FAQ ===== */
.faq { padding: 8rem 2rem; background: var(--rose-blush); }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-list { margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--rose-soft); }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0;
  font-family: "DM Sans", sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--ink); text-align: left; transition: color 0.2s ease;
}
.faq-question:hover { color: var(--rose-deep); }
.faq-icon { color: var(--rose); font-size: 0.95rem; transition: transform 0.35s var(--ease-out); flex-shrink: 0; }
.faq-item.is-open .faq-icon { transform: rotate(90deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out); }
.faq-item.is-open .faq-answer { max-height: 260px; }
.faq-answer p { padding-bottom: 1.4rem; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; }
.faq-answer p strong { color: var(--rose-deep); font-weight: 500; }

/* ===== CONTACT ===== */
.contacto {
  padding: 9rem 2rem; position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--white) 0%, var(--rose-blush) 40%, var(--lavender) 100%);
  text-align: center;
}
.contacto-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(at 30% 40%, rgba(245,208,222,0.6) 0%, transparent 55%),
    radial-gradient(at 70% 65%, rgba(232,213,240,0.5) 0%, transparent 55%);
  pointer-events: none;
}
.contacto-petals { position: absolute; inset: 0; pointer-events: none; }
.contacto-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.contacto-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.contacto-note { font-size: 0.8rem; color: var(--ink-mute); font-weight: 400; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); padding: 5rem 2rem 1.5rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; align-items: start;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem; font-weight: 600; color: var(--white); margin-bottom: 0.25rem;
}
.footer-logo span { color: var(--rose); font-style: italic; }
.footer-script { font-size: 1.1rem; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.footer-tagline { font-size: 0.84rem; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col-title { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.25rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--rose-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.28); text-align: center; }

/* ===== EMAIL FORM ===== */
.email-form {
  background: var(--white); border-radius: 20px;
  padding: 1.75rem; margin: 0 auto 1rem;
  max-width: 540px; border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(232,80,154,0.08);
  display: flex; flex-direction: column; gap: 0.75rem;
}
.email-form-row { display: flex; gap: 0.75rem; }
.email-form input, .email-form textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: 12px;
  border: 1.5px solid var(--line); font-family: "DM Sans", sans-serif;
  font-size: 0.88rem; color: var(--ink); background: var(--cream);
  transition: border-color 0.2s;
}
.email-form input:focus, .email-form textarea:focus {
  outline: none; border-color: var(--rose);
}
.email-form textarea { min-height: 100px; resize: vertical; }
@media (max-width: 600px) { .email-form-row { flex-direction: column; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame { max-width: 400px; margin: 0 auto; aspect-ratio: 16/10; }
  .pain-cards { grid-template-columns: 1fr; }
  .testimonios-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.6rem, 9vw, 3.8rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contacto-buttons { flex-direction: column; align-items: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .solution-pill { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .about, .benefits, .productos, .testimonios, .faq, .contacto { padding: 5rem 1.25rem; }
  .nav { padding: 1rem 1.25rem; }
  .cursor { display: none; }
  .about-deco { display: none; }
  .benefits-deco { display: none; }
}
