:root {
  --bg: #fffafa;
  --fg: #2a1a1f;
  --muted: #8a6e76;
  --card: #fff5f5;
  --border: #f3dfe3;
  --primary: #e89aa8;
  --primary-fg: #fff;
  --sakura-soft: #fde9ec;
  --sakura-deep: #c75d72;
  --shadow-soft: 0 10px 40px -15px rgba(231, 138, 156, 0.35);
  --radius: 1rem;
  --font-display: "Cormorant Garamond", serif;
  --font-script: "Caveat", cursive;
  --font-sans: "Quicksand", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 250, 250, 0.8);
  border-bottom: 1px solid rgba(243, 223, 227, 0.5);
  min-height: 72px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  transition: all 0.25s ease;
}

.site-header.scrolled .header-inner {
  padding: 0.5rem 1rem;
}
.site-header.scrolled {
  padding-top: .35rem;
  padding-bottom: .35rem;
}
.site-header.scrolled .logo img {
  max-height: 60px;
}
.site-header,
.site-header .header-inner,
.site-header .logo img {
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.logo img {
  max-height: 100px;
  width: auto;
}
.nav {
  display: none;
  gap: 2rem;
}
.nav a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(42, 26, 31, 0.8);
  transition: color 0.2s;
}
.nav a:hover {
  color: var(--primary);
}
@media (min-width: 955px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  font-family: inherit;
  white-space: nowrap;
  line-height: 1;
}
.btn-sm {
  padding: 0.625rem 1.25rem;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  opacity: 0.9;
}

/* Icons */

.icon-xs {
  width: 0.875rem;
  height: 0.875rem;
}
.icon-sm {
  width: 1.125rem;
  height: 1.125rem;
}
.icon-md {
  width: 1.75rem;
  height: 1.75rem;
}
.heart {
  color: var(--primary);
  fill: var(--primary);
}
.accent {
  color: var(--primary);
}
.italic {
  font-style: italic;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #fdeef0 0%, #fcd9de 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding: 6rem 1.5rem;
  }
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sakura-deep);
  margin-bottom: 1.5rem;
}
.display {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
}
.display-md {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.lead {
  margin-top: 1.5rem;
  color: var(--muted);
  max-width: 28rem;
}
.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}
.icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.icon-btn:hover {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
}
.hero .btn {
  margin-top: 2rem;
}
.hero-photo {
  position: relative;
}
.hero-photo img {
  border-radius: 14px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  mask-image: radial-gradient(circle, black 70%, transparent 100%);
  max-height: 70vh;
  width: 100%;
  object-fit: cover;
}
.script-tag {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--sakura-deep);
  transform: rotate(6deg);
  z-index: 10;
  line-height: 1;
}
.script-heart {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: var(--primary);
  color: var(--primary);
}

/* Sections */
.section {
  padding: 5rem 1.5rem;
}
.section-sm {
  padding: 2rem 1.5rem;
}
.section-kicker {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  
}
.two-col > img{
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  mask-image: radial-gradient(circle, black 70%, transparent 100%);
}
@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}
.muted {
  color: var(--muted);
  margin-bottom: 1rem;
}
.muted.small {
  font-size: 0.875rem;
}

/* Cards & grids */
.card-soft {
  background: var(--sakura-soft);
  border-radius: 1.5rem;
  padding: 1.25rem;
}
.pad-lg {
  padding: 2.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}
.tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sakura-deep);
  margin-bottom: 1rem;
}

.meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.strong {
  margin-top: 0.75rem;
  font-weight: 500;
}
.center {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.mt-lg {
  margin-top: 2rem;
}


/* TikTok */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 1rem;
}
.video-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-card {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  position: relative;
}

/* Contenedor del vídeo */
.video-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.video-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}


/* HOVER ZOOM + SOMBRA */
.video-card:hover .video-frame {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(199, 93, 114, 0.25);
}

.video-card:hover .video-frame img {
  transform: scale(1.06);
}

/* PLAY GLASS BUTTON */
.play-glass {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* círculo glass */
.play-glass::before {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  transition: all 0.3s ease;
}

/* icono play */
.play-glass svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* hover efecto play */
.video-card:hover .play-glass::before {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.5);
}

.video-card:hover .play-glass svg {
  transform: scale(1.1);
}

.video-card:hover::after {
  content: "Ver en TikTok";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 0.7rem;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 999px;
}

/* Stats */
.stats {
  background: var(--sakura-soft);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  text-align: center;
}
.stat svg {
  margin: 0 auto 0.75rem;
  stroke: var(--primary);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}
.stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.stat-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Brands */
.brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}
.brands span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(42, 26, 31, 0.7);
  transition: color 0.2s;
}
.brands span:hover {
  color: var(--fg);
}

/* Favorites */
.grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .grid-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.fav-card {
  background: var(--card);
  border-radius: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fav-card h3 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
}
.fav-name {
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.5rem;
}
.stars svg {
  width: 0.75rem;
  height: 0.75rem;
  color: var(--border);
  fill: var(--border);
}
.stars svg.on {
  color: var(--primary);
  fill: var(--primary);
}
.opinion {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.5;
}

.fav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
/* Contact */
.contact {
  background: var(--sakura-soft);
  margin-top: 4rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.contact-links a:hover {
  color: var(--primary);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s;
}
.contact-form textarea {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(232, 154, 168, 0.3);
}
.right {
  display: flex;
  justify-content: flex-end;
}
.footer {
  border-top: 1px solid rgba(243, 223, 227, 0.7);
}
.footer p {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}
