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

:root {
  --bg: #fcf8f5;
  --white: #ffffff;
  --text: #4b4747;
  --muted: #7d7572;
  --gold: #c9a35f;
  --gold-dark: #b68e49;
  --rose: #e7b3b3;
  --rose-soft: #f3d8d8;
  --ivory: #f3ede2;
  --green: #89af8c;
  --dark: #4b4747;
  --border: rgba(75, 71, 71, 0.10);
  --shadow: 0 18px 45px rgba(75, 71, 71, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

ul {
  list-style: none;
}

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

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

/* Barra superior */
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
}

.topbar .container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar-left {
  opacity: 0.95;
}

.topbar-right {
  display: flex;
  gap: 18px;
  align-items: center;
}

.topbar-right a {
  color: #fff;
  opacity: 0.9;
  transition: 0.3s ease;
}

.topbar-right a:hover {
  opacity: 1;
  color: var(--gold);
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(252, 248, 245, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.navbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.brand h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: 0.4px;
}

.brand-signature {
  font-size: 0.8rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-slogan {
  font-size: 0.74rem;
  color: var(--muted);
  letter-spacing: 1.2px;
  margin-top: 2px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

.menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: 0.3s ease;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 10px;
}

.menu a:hover,
.menu a.active {
  color: var(--gold-dark);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 10px 24px rgba(231, 179, 179, 0.35);
}

.btn-primary:hover {
  background: #d99d9d;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(75, 71, 71, 0.14);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-full {
  width: 100%;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #d8ccc6;
  background: #fff;
  color: #5d5552;
  transition: all 0.25s ease;
}

.btn-login:hover {
  background: #f6f1ee;
  transform: translateY(-1px);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d9a5a9, #e7bfc1);
  color: #fff;
  box-shadow: 0 10px 22px rgba(217, 165, 169, 0.22);
  transition: all 0.25s ease;
}

.btn-register:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(217, 165, 169, 0.28);
}

.btn-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 12px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
  color: #fff;
  background: linear-gradient(135deg, #d8a1a8, #e7bfc1);
  box-shadow: 0 10px 22px rgba(216, 161, 168, 0.24);
  transition: all 0.28s ease;
}

.btn-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(216, 161, 168, 0.34);
  filter: brightness(1.02);
}

/* Hero */
.hero {
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(231, 179, 179, 0.28) 0%, rgba(231, 179, 179, 0) 72%);
  top: -80px;
  right: -120px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 163, 95, 0.12) 0%, rgba(201, 163, 95, 0) 72%);
  bottom: -120px;
  left: -60px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.hero-badge {
  display: inline-block;
  padding: 10px 16px;
  background: rgba(201, 163, 95, 0.12);
  color: var(--gold-dark);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  line-height: 0.98;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  max-width: 640px;
}

.hero p {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.feature-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 6px 18px rgba(75, 71, 71, 0.05);
}

/* Mockup home */
.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-wrap {
  position: relative;
  width: 320px;
  max-width: 100%;
}

.phone-shadow {
  position: absolute;
  inset: auto 20px -22px 20px;
  height: 40px;
  background: rgba(75, 71, 71, 0.16);
  filter: blur(20px);
  border-radius: 50%;
  z-index: 0;
}

.phone {
  position: relative;
  background: #191919;
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow);
  z-index: 1;
}

.phone-screen {
  background: linear-gradient(180deg, #fff7f5 0%, #fcf8f5 55%, #f8efe7 100%);
  border-radius: 28px;
  overflow: hidden;
  min-height: 640px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #191919;
  margin: 10px auto 0;
  border-radius: 0 0 16px 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 3;
}

.invite-cover {
  padding: 70px 28px 28px;
  text-align: center;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.invite-top-text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.invite-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 12px;
}

.invite-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.invite-divider {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 18px;
  border-radius: 10px;
}

.invite-date {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
}

.invite-photo {
  width: 100%;
  height: 250px;
  border-radius: 22px;
  background:
    linear-gradient(rgba(201, 163, 95, 0.08), rgba(201, 163, 95, 0.08)),
    url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=900&q=80') center/cover;
  margin: 24px 0;
  border: 4px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 26px rgba(75, 71, 71, 0.08);
}

.invite-button {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 18px;
  background: var(--rose);
  color: #fff;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(231, 179, 179, 0.28);
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 14px 16px;
  border: 1px solid var(--border);
  z-index: 2;
}

.floating-card.small-1 {
  top: 80px;
  left: -60px;
}

.floating-card.small-2 {
  bottom: 65px;
  right: -50px;
}

.floating-card strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.floating-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Secciones */
.section {
  padding: 90px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(243, 237, 226, 0.55) 0%, rgba(252, 248, 245, 0.95) 100%);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-heading h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1rem;
}

/* Paquetes */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.price-card {
  position: relative;
  background: var(--white);
  border-radius: 26px;
  border: 1px solid var(--border);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.price-card.featured {
  border: 1px solid rgba(201, 163, 95, 0.35);
  transform: translateY(-10px);
}

.price-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
}

.price-label {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}

.price-subtitle {
  color: var(--muted);
  margin-bottom: 22px;
}

.price-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.price-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.price-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 1.1rem;
  line-height: 1;
}

.price-actions {
  display: grid;
  gap: 12px;
}

/* Galería */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 20px;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-1 {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1000&q=80');
}

.gallery-2 {
  background-image: url('https://images.unsplash.com/photo-1522673607200-164d1b6ce486?auto=format&fit=crop&w=1000&q=80');
}

.gallery-3 {
  background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1000&q=80');
}

.gallery-4 {
  background-image: url('https://images.unsplash.com/photo-1525258946800-98cfd641d0de?auto=format&fit=crop&w=1000&q=80');
}

.gallery-5 {
  background-image: url('https://images.unsplash.com/photo-1460978812857-470ed1c77af0?auto=format&fit=crop&w=1000&q=80');
}

.gallery-6 {
  background-image: url('https://images.unsplash.com/photo-1513278974582-3e1b4a4fa21d?auto=format&fit=crop&w=1000&q=80');
}

/* Contacto */
.contact-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(243, 237, 226, 0.55) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 16px;
}

.contact-copy p {
  color: var(--muted);
  margin-bottom: 22px;
  max-width: 480px;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-pill {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(75, 71, 71, 0.05);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(75, 71, 71, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fffdfc;
  color: var(--text);
  outline: none;
}

/* Footer */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.footer h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.footer h4 {
  margin-bottom: 12px;
  color: var(--rose-soft);
}

.footer p,
.footer li,
.footer a {
  color: rgba(255,255,255,0.85);
}

.footer ul {
  display: grid;
  gap: 8px;
}

/* Página diseños */
.disenos-page {
  background:
    radial-gradient(circle at top right, rgba(231, 179, 179, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 163, 95, 0.10), transparent 30%),
    linear-gradient(180deg, #fcf8f5 0%, #f8f1eb 100%);
}

.disenos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.diseno-option-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ece3df;
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(91, 74, 74, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.diseno-option-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(231, 191, 193, 0.22) 0%, rgba(231, 191, 193, 0) 70%);
  pointer-events: none;
  transition: transform 0.35s ease;
}

.diseno-option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(91, 74, 74, 0.12);
  border-color: #e3d0ca;
}

.diseno-option-card:hover::before {
  transform: scale(1.08);
}

.diseno-option-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f8eff0, #f3e7e7);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  font-size: 34px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
  z-index: 1;
}

.diseno-option-card:hover .diseno-option-icon {
  transform: scale(1.06);
  box-shadow: 0 10px 22px rgba(216, 161, 168, 0.14);
}

.diseno-option-card h3 {
  position: relative;
  z-index: 1;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.95;
  margin-bottom: 18px;
  color: var(--text);
}

.diseno-option-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 0 auto 6px;
}

.diseno-option-card .btn-card {
  position: relative;
  z-index: 1;
}

.back-home-wrap {
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

/* Página bodas */
.bodas-hero {
  background:
    radial-gradient(circle at top right, rgba(231, 179, 179, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 163, 95, 0.10), transparent 30%),
    linear-gradient(180deg, #fcf8f5 0%, #f8f1eb 100%);
}

.demo-list-grid {
  display: grid;
  gap: 32px;
}

.demo-showcase-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(75, 71, 71, 0.09);
}

.demo-showcase-top {
  margin-bottom: 26px;
  text-align: center;
}

.demo-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 163, 95, 0.12);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.demo-showcase-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 10px;
}

.demo-showcase-top p {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.demo-price {
  margin-top: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-dark);
}

.demo-preview-stage {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 20px;
}

.desktop-preview {
  width: min(920px, 100%);
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 40px rgba(75, 71, 71, 0.12);
  border: 1px solid rgba(255,255,255,0.55);
  position: relative;
}

.desktop-bar {
  height: 44px;
  background: #f3efea;
  border-bottom: 1px solid rgba(75, 71, 71, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.desktop-bar-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-bar-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d8cbc2;
}

.desktop-bar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #6d5f5f;
  margin: 0 auto;
  transform: translateX(-22px);
}

.desktop-content {
  height: calc(100% - 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 32px;
  text-align: center;
  position: relative;
}

.desktop-overlay-light {
  position: relative;
}

.desktop-overlay-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 243, 0.38);
  z-index: 0;
}

.desktop-overlay-light > * {
  position: relative;
  z-index: 1;
}

.desktop-kicker {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b68e49;
  margin-bottom: 12px;
}

.desktop-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 12px;
}

.desktop-title-event {
  color: #4a3f3f;
  text-shadow: 0 1px 1px rgba(255,255,255,0.35);
}

.desktop-subtitle {
  margin-bottom: 26px;
}

.desktop-date-event {
  color: #5f5353;
  font-size: 1.15rem;
  font-weight: 500;
}

.preview-btn {
  border: none;
  border-radius: 999px;
  padding: 14px 24px;
  background: #e7b3b3;
  color: #fff;
  font-weight: 600;
  font-family: inherit;
  box-shadow: 0 10px 22px rgba(231, 179, 179, 0.3);
}

.desktop-footer-links {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 34px;
  color: #6a5858;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  text-shadow: 0 1px 1px rgba(255,255,255,0.25);
}

.desktop-1 .desktop-content {
  background:
    linear-gradient(rgba(255,255,255,0.42), rgba(255,255,255,0.42)),
    url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.desktop-2 .desktop-content {
  background:
    linear-gradient(rgba(255,255,255,0.42), rgba(255,255,255,0.42)),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.desktop-3 .desktop-content {
  background:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1400&q=80') center/cover;
}

.mobile-preview {
  position: absolute;
  right: 26px;
  bottom: -10px;
  width: 210px;
  height: 380px;
  border-radius: 34px;
  background: #161616;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.mobile-notch {
  width: 94px;
  height: 20px;
  background: #161616;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
}

.mobile-content {
  margin-top: 8px;
  height: calc(100% - 28px);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 18px;
  text-align: center;
}

.mobile-mini-kicker {
  color: #b68e49;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.mobile-mini-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  line-height: 1;
  color: #4b4747;
  margin-bottom: 8px;
}

.mobile-mini-date {
  font-size: 0.88rem;
  color: #786f6f;
}

.mobile-1 .mobile-content {
  background:
    linear-gradient(rgba(255,255,255,0.34), rgba(255,255,255,0.34)),
    url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?auto=format&fit=crop&w=900&q=80') center/cover;
}

.mobile-2 .mobile-content {
  background:
    linear-gradient(rgba(255,255,255,0.36), rgba(255,255,255,0.36)),
    url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?auto=format&fit=crop&w=900&q=80') center/cover;
}

.mobile-3 .mobile-content {
  background:
    linear-gradient(rgba(255,255,255,0.32), rgba(255,255,255,0.32)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=900&q=80') center/cover;
}

.demo-showcase-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.auth-cta-box {
  margin-top: 42px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px 28px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(75, 71, 71, 0.08);
}

.auth-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 12px;
  color: var(--text);
}

.auth-cta-box p {
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 22px;
  font-size: 1rem;
}

.auth-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Menú móvil */
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1100px) {
  .pricing-grid,
  .disenos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .package-demo-card {
    grid-template-columns: 1fr;
  }

  .demo-actions-left {
    justify-content: center;
  }

  .package-demo-left {
    text-align: center;
  }

  .package-feature-list {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content,
  .contact-copy {
    text-align: center;
  }

  .hero p,
  .contact-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .hero-features,
  .contact-points {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .demo-preview-stage {
    min-height: auto;
  }

  .desktop-preview {
    height: 340px;
  }

  .desktop-footer-links {
    gap: 18px;
    font-size: 1.4rem;
  }

  .package-stage {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .navbar {
    flex-wrap: wrap;
    padding: 18px 0;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0 10px;
  }

  .menu.show {
    display: flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .floating-card.small-1,
  .floating-card.small-2 {
    display: none;
  }

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

@media (max-width: 640px) {
  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .brand {
    min-width: auto;
  }

  .brand h1 {
    font-size: 1.8rem;
  }

  .hero h2 {
    font-size: 2.55rem;
  }

  .phone-wrap {
    width: 290px;
  }

  .phone-screen {
    min-height: 590px;
  }

  .invite-title {
    font-size: 2.5rem;
  }

  .header-actions .btn,
  .btn-login,
  .btn-register {
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .pricing-grid,
  .gallery-grid,
  .form-row,
  .disenos-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.tall {
    grid-row: span 1;
  }

  .section {
    padding: 72px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .diseno-option-card,
  .demo-showcase-card {
    padding: 22px;
    border-radius: 24px;
  }

  .desktop-preview {
    height: 280px;
    border-radius: 18px;
  }

  .desktop-title {
    font-size: 2rem;
  }

  .desktop-subtitle {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .preview-btn {
    padding: 11px 18px;
    font-size: 0.88rem;
  }

  .desktop-footer-links {
    font-size: 1.1rem;
    gap: 12px;
    bottom: 16px;
  }

  .mobile-preview {
    width: 160px;
    height: 290px;
    border-radius: 28px;
  }

  .mobile-content {
    border-radius: 20px;
  }

  .mobile-mini-title {
    font-size: 1.5rem;
  }

  .btn-card {
    width: 100%;
  }
}

/* =========================
   BODAS POR PAQUETE
========================= */

.package-demo-grid {
  display: grid;
  gap: 32px;
}

.package-demo-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 50px rgba(75, 71, 71, 0.09);
}

.package-demo-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.package-demo-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 10px;
  color: var(--text);
}

.package-desc {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1rem;
}

.package-feature-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 26px;
}

.package-feature-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.98rem;
}

.package-feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-dark);
  font-size: 1.05rem;
  line-height: 1;
}

.demo-actions-left {
  justify-content: flex-start;
}

.package-demo-right {
  min-width: 0;
}

.package-stage {
  min-height: 360px;
  padding: 0;
}

.auth-note-box{
  max-width: 780px;
  margin: 0 auto 34px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(201, 163, 95, 0.10);
  border: 1px solid rgba(201, 163, 95, 0.22);
  color: var(--text);
  text-align: center;
  box-shadow: 0 10px 24px rgba(75, 71, 71, 0.05);
}

.auth-note-box strong{
  color: var(--gold-dark);
}
.plan-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:1px;
}

.plan-price{
  font-family:'Cormorant Garamond', serif;
  font-size:2.9rem;
  color:var(--gold-dark);
  white-space:nowrap;
}
.plan-title-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}

.plan-title-row h3{
  margin-bottom:0;
  font-size:40px;
}

.plan-price{
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  line-height:1;
  color:var(--gold-dark);
  white-space:nowrap;
  background:rgba(201, 163, 95, 0.10);
  border:1px solid rgba(201, 163, 95, 0.18);
  padding:8px 16px;
  border-radius:999px;
}

@media (max-width: 640px){
  .plan-title-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .plan-price{
    font-size:1.7rem;
  }
}
/* =========================
   FIX REAL MOVIL BODAS
========================= */

html,
body {
  overflow-x: hidden !important;
}

@media (max-width: 900px) {
  .package-demo-card {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 18px !important;
    overflow: visible !important;
  }

  .package-demo-left,
  .package-demo-right {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .package-demo-left {
    text-align: center !important;
    align-items: center !important;
  }

  .package-desc {
    max-width: 560px;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .package-feature-list {
    width: 100% !important;
    max-width: 420px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left !important;
  }

  .demo-actions-left {
    justify-content: center !important;
    width: 100% !important;
  }

  .package-stage,
  .demo-preview-stage {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: auto !important;
    width: 100% !important;
    padding: 18px 0 0 !important;
    overflow: visible !important;
    position: static !important;
  }

  .desktop-preview {
    display: none !important;
  }

  .mobile-preview {
    position: static !important;
    display: block !important;
    margin: 18px auto 0 !important;
    inset: auto !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 180px !important;
    height: 330px !important;
    max-width: 100% !important;
  }

  .desktop-footer-links {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .package-demo-grid {
    gap: 22px !important;
  }

  .package-demo-card {
    padding: 20px 14px !important;
    border-radius: 24px !important;
  }

  .package-demo-left {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .plan-title-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .plan-title-row h3 {
    font-size: 2.2rem !important;
  }

  .plan-price {
    font-size: 1.5rem !important;
    padding: 8px 14px !important;
  }

  .package-desc {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .package-feature-list {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .demo-actions-left {
    justify-content: flex-start !important;
  }

  .demo-actions-left .btn {
    width: 100% !important;
  }

  .mobile-preview {
    width: 145px !important;
    height: 265px !important;
    border-radius: 26px !important;
    padding: 8px !important;
  }

  .mobile-notch {
    width: 74px !important;
    height: 16px !important;
  }

  .mobile-content {
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  .mobile-mini-kicker {
    font-size: 0.62rem !important;
    margin-bottom: 6px !important;
  }

  .mobile-mini-title {
    font-size: 1.25rem !important;
    margin-bottom: 6px !important;
  }

  .mobile-mini-date {
    font-size: 0.74rem !important;
  }
}
