﻿:root {
  --brand-rose: #b06aa8;
  --brand-pink: #d2a6c7;
  --brand-peach: #e7c5dd;
  --brand-cream: #faf4f8;
  --ink: #1f1a22;
  --muted: #6b5f69;
  --shadow: 0 18px 40px rgba(25, 7, 19, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff8fb 0%, #fff1f5 45%, #ffe4ee 100%);
}

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

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

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.logo {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--brand-rose);
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.nav a.active::after,
.nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--brand-rose);
}

.hero {
  padding: 27px 0 70px;
  background: linear-gradient(135deg, rgba(255, 111, 165, 0.18) 0%, rgba(255, 180, 201, 0.4) 50%, rgba(255, 244, 248, 0.9) 100%);
}

.hero-alt {
  padding: 70px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 10px 0 16px;
}

.hero-text .hero-title {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.highlight {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(233, 30, 99, 0.08);
  border-left: 4px solid var(--brand-rose);
  border-radius: 12px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.hero-brochure {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(25, 7, 19, 0.12);
  margin-bottom: 22px;
  max-width: 280px;
}

.hero-brochure p {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--ink);
}

.hero-brochure img {
  border-radius: 14px;
}

.hero-card {
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.hero-card-inner h2 {
  margin-top: 0;
  font-family: "Fraunces", serif;
}

.hero-image {
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 18px 30px rgba(25, 7, 19, 0.12);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.9rem;
  color: var(--brand-rose);
  font-weight: 700;
  margin-bottom: 12px;
}

.section {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 28px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  margin: 8px 0 12px;
}

.body {
  color: var(--muted);
  line-height: 1.8;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: center;
}

.split-media img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.banner-stack img {
  width: 100%;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.sidebar-section {
  background: rgba(255, 255, 255, 0.65);
}

.sidebar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.sidebar-card {
  background: white;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.sidebar-card h2 {
  font-family: "Fraunces", serif;
  margin-top: 0;
  margin-bottom: 16px;
}

.brochure-link img {
  border-radius: 16px;
  box-shadow: 0 14px 26px rgba(25, 7, 19, 0.15);
}

.video-stack {
  display: grid;
  gap: 18px;
  justify-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-item h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
}

.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(25, 7, 19, 0.18);
  background: #111;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-badge {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.play-badge::before {
  content: "";
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.play-badge::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 6px;
}

.beauty-start-grid {
  display: grid;
  gap: 18px;
}

.beauty-start-grid img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.beauty-mobile {
  display: none;
}

.beauty-start-cta {
  margin-top: 28px;
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(25, 7, 19, 0.08);
  border: 1px solid rgba(233, 30, 99, 0.08);
}

.card-quote {
  font-style: italic;
}

.card span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  display: grid;
  gap: 12px;
}

.checks li::before {
  content: "✓";
  color: var(--brand-rose);
  font-weight: 700;
  margin-right: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--brand-rose);
  color: white;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(233, 30, 99, 0.22);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--brand-rose);
  color: var(--brand-rose);
  box-shadow: none;
}

.btn-dark {
  background: var(--brand-rose);
  box-shadow: 0 12px 24px rgba(176, 106, 168, 0.35);
}

.cta-strip {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
}

.cta-banner {
  background: linear-gradient(135deg, #ffe3ee, #fff9fb);
  border-radius: 28px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(233, 30, 99, 0.1);
}

.media-panel {
  margin-bottom: 26px;
}

.banner-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.form-section {
  background: var(--brand-cream);
}

.modern-form {
  background: white;
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-v2 {
  border: 1px solid rgba(31, 26, 34, 0.08);
}

.form-v2 .field label {
  font-weight: 600;
}

.form-v2 .field.required label::after {
  content: " *";
  color: var(--brand-rose);
}

.form-v2 .field.required .radio-group label::after {
  content: "";
}

.form-grid.form-grid-single {
  grid-template-columns: 1fr;
}
.form-v2 input[type="text"],
.form-v2 input[type="email"],
.form-v2 input[type="tel"],
.form-v2 input[type="date"],
.form-v2 textarea {
  border-radius: 8px;
}

.form-divider {
  height: 1px;
  background: rgba(31, 26, 34, 0.12);
  margin: 14px 0 18px;
}

.radio-group {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--ink);
}

.form-success {
  color: #0f7a3e;
  font-weight: 600;
  margin: 0;
}

.form-error {
  color: #b42318;
  font-weight: 600;
  margin: 0;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.field-help {
  font-size: 0.85rem;
  color: var(--muted);
}

.field input,
.field textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 26, 34, 0.12);
  font-family: inherit;
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-rose);
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.12);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.consent {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-banner {
  margin-top: 16px;
  border-radius: 12px;
}

.contact-flip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.flip-card {
  perspective: 1000px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.flip-card-inner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 140px;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(25, 7, 19, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.flip-card-front {
  background: white;
  color: var(--brand-rose);
  border: 1px solid rgba(176, 106, 168, 0.2);
}

.flip-card-back {
  background: var(--brand-rose);
  color: white;
  transform: rotateY(180deg);
}

.flip-card-back a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.site-footer {
  background: white;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(233, 30, 99, 0.08);
}

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #22c55e;
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.25);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .beauty-desktop {
    display: none;
  }

  .beauty-mobile {
    display: block;
  }

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

@media (max-width: 1100px) {
  .video-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .video-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav {
    gap: 12px;
  }

  .hero {
    padding: 70px 0 50px;
  }

  .hero-actions {
    width: 100%;
  }

  .cta-strip,
  .cta-banner,
  .form-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
