:root {
  --primary: #F56770; /* Official brand pink */
  --primary-hover: #e05c65;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #fbfbfb;
  --bg-white: #ffffff;
  --gold: #D4AF37;
  --font-serif: 'Fraunces', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --transition: all 0.3s ease;
  --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* NAVBAR */
.navbar {
  background-color: var(--bg-white);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  padding: 0;
}

.navbar-brand img,
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.nav-link:hover {
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255,123,156,0.3);
}

/* HERO SECTION */
/* HERO SECTION (CONNECTED TO DATABASE SLIDER) */
.hero {
  padding: 100px 0 90px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.92)), url('../images/hero_wedding_new.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-text {
  text-align: left;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 103, 112, 0.1);
  border: 1px solid rgba(245, 103, 112, 0.22);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero-badge-pill svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: 3.2rem;
  line-height: 1.18;
  margin-bottom: 18px;
  color: var(--text-dark);
  letter-spacing: -0.01em;
}

.hero p.lead-txt {
  font-size: 1.18rem;
  color: #556270;
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  text-align: center;
  position: relative;
}

.hero-mockup-img {
  max-width: 100%;
  max-height: 480px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.14));
  animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* HERO SLIDER TABS/DOTS */
.hero-slider-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.hero-dot.active {
  width: 28px;
  border-radius: 10px;
  background: var(--primary);
}

/* COMPARISON TABLE */
.table-responsive {
  overflow-x: auto;
  margin-top: 40px;
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.comp-table th, .comp-table td {
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #eaeaea;
}
.comp-table th {
  background: var(--bg-light);
  font-family: var(--font-serif);
  font-size: 1.2rem;
}
.comp-table td.text-start {
  text-align: left;
  font-weight: 500;
}
.comp-table .iconHelp {
  width: 16px;
  vertical-align: middle;
  margin-left: 5px;
  opacity: 0.6;
}
.comp-table img {
  width: 20px;
}


/* BADGES & EYEBROWS */
.section-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(245, 103, 112, 0.09);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(245, 103, 112, 0.16);
}

/* FEATURES & STEPS */
.features {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.4rem;
  letter-spacing: -0.01em;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 6px;
}

/* FLUID & ORGANIC STEPS FLOW ("¿Cómo funciona?") */
.steps-flow-section {
  padding: 70px 0 80px;
  position: relative;
  background-color: var(--bg-white);
}

.steps-organic-island {
  background: linear-gradient(135deg, rgba(255, 246, 247, 0.9) 0%, rgba(254, 239, 242, 0.5) 50%, rgba(255, 250, 248, 0.9) 100%);
  border-radius: 40px;
  padding: 60px 40px 70px;
  border: 1px solid rgba(245, 103, 112, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(245, 103, 112, 0.04);
}

.steps-organic-island::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 103, 112, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-organic-island::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.steps-flow-container {
  position: relative;
  margin-top: 45px;
}

/* SVG curved connector line flowing across steps */
.steps-flow-curve {
  position: absolute;
  top: 36px;
  left: 10%;
  width: 80%;
  height: 70px;
  z-index: 1;
  pointer-events: none;
}

.steps-flow-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.step-flow-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  margin: 0 auto;
  transition: transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.step-flow-col:hover {
  transform: translateY(-6px);
}

/* Floating organic badge with halo */
.step-organic-bubble {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 12px 28px rgba(245, 103, 112, 0.18);
  border: 3px solid #ffffff;
  margin-bottom: 24px;
  transition: all 0.35s ease;
}

.step-flow-col:hover .step-organic-bubble {
  box-shadow: 0 16px 36px rgba(245, 103, 112, 0.28);
  border-color: #fff0f2;
}

.step-digit {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.step-icon-subtle {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(245, 103, 112, 0.35);
  border: 2px solid #ffffff;
}

.step-icon-subtle svg {
  width: 13px;
  height: 13px;
}

.step-flow-text h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-flow-text p {
  color: #657382;
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

/* MODERN CLEAN BENEFITS ("¿Por qué digital?") */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.benefit-card-clean {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 24px;
  background: #ffffff;
  border: 1px solid #f1ecee;
  border-radius: 16px;
  transition: var(--transition);
}

.benefit-card-clean:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 103, 112, 0.35);
  box-shadow: 0 10px 25px rgba(245, 103, 112, 0.07);
}

.benefit-icon-wrapper {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 103, 112, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.benefit-card-clean:hover .benefit-icon-wrapper {
  background: var(--primary);
  color: #ffffff;
}

.benefit-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.benefit-content {
  flex: 1;
}

.benefit-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.benefit-content h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.benefit-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(245, 103, 112, 0.08);
  padding: 2px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.benefit-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* WEDDING PLANNERS SECTION */
.wedding-section {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #fdf4f6 0%, #fae8ec 100%);
}

.wedding-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.wedding-img-col {
  flex: 0 0 460px;
  text-align: center;
}

.wedding-img-col img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(160, 26, 74, 0.12);
  transition: transform 0.4s ease;
}

.wedding-img-col img:hover {
  transform: scale(1.02);
}

.wedding-txt-col {
  flex: 1;
}

.wedding-badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a01a4a;
  background: rgba(160, 26, 74, 0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
  border: 1px solid rgba(160, 26, 74, 0.15);
}

.wedding-txt-col h2 {
  font-size: 2.5rem;
  line-height: 1.22;
  color: #3b111e;
  margin-bottom: 16px;
}

.wedding-txt-col p.lead {
  font-size: 1.12rem;
  color: #6a4b54;
  margin-bottom: 24px;
  line-height: 1.6;
}

.wedding-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wedding-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.98rem;
  color: #4a2832;
  font-weight: 500;
}

.wedding-perks li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #a01a4a;
}

.wedding-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-wedding-cta {
  background-color: #a01a4a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-wedding-cta:hover {
  background-color: #7d1339;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(160, 26, 74, 0.3);
}

.btn-wedding-secondary {
  font-size: 0.95rem;
  font-weight: 600;
  color: #a01a4a;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-wedding-secondary:hover {
  color: #7d1339;
  text-decoration: underline;
  transform: translateX(3px);
}

/* DEMO CATEGORY FILTERS (PROMINENT TABS) */
.demo-filters-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.demo-filters {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 6px;
  border-radius: 60px;
  box-shadow: 0 8px 26px rgba(245, 103, 112, 0.1);
  border: 1.5px solid #f0e2e5;
  gap: 8px;
}

.filter-btn {
  background: transparent;
  border: none;
  color: #556270;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--primary);
  background: rgba(245, 103, 112, 0.06);
}

.filter-btn.active {
  background: linear-gradient(135deg, #F56770 0%, #e8555e 100%);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(245, 103, 112, 0.38);
}

.filter-btn .filter-icon {
  font-size: 1.25rem;
  line-height: 1;
}

/* SHOWCASE / DEMOS (COMPACT & EXPANDABLE) */
.showcase {
  padding: 70px 0 80px;
  background-color: var(--bg-light);
}

.showcase-grid,
.demos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 20px;
  transition: all 0.4s ease;
}

.demo-card {
  background: var(--bg-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border: 1px solid #ede5e7;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.demo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(245, 103, 112, 0.12);
  border-color: rgba(245, 103, 112, 0.3);
}

.demo-thumb-box {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #faf5f6;
}

.demo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}

.demo-card:hover .demo-img {
  transform: scale(1.05);
}

.demo-tag-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.demo-info {
  padding: 12px 10px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: 8px;
}

.demo-info h3 {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-demo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 14px;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  align-self: center;
}

.btn-demo-pill:hover {
  background: var(--primary);
  color: #ffffff;
}

/* EXPAND / LOAD MORE BUTTON */
.demos-load-more-wrapper {
  text-align: center;
  margin-top: 36px;
}

.btn-load-more {
  background: #ffffff;
  border: 1.5px solid rgba(245, 103, 112, 0.35);
  color: var(--primary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 11px 30px;
  border-radius: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(245, 103, 112, 0.08);
  transition: var(--transition);
}

.btn-load-more:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 103, 112, 0.25);
}

.btn-load-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.btn-load-more.is-expanded svg {
  transform: rotate(180deg);
}

/* PRICING */
.pricing {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}



/* CTA */
.cta {
  padding: 80px 0;
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  color: white;
  font-size: 2.5rem;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta .btn-primary {
  background: white;
  color: var(--primary);
}
.cta .btn-primary:hover {
  background: #f1f1f1;
  color: var(--primary);
}

/* FOOTER */
.footer {
  background-color: var(--bg-white);
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid #eaeaea;
}

.footer img {
  height: 30px;
  margin-bottom: 20px;
}

.footer p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* DEMO TABS & FILTERS */
.demo-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--bg-white);
  border: 1px solid #e5dada;
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(245, 103, 112, 0.3);
}

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.45);
  color: white;
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

/* DYNAMIC PROMOTIONAL ZOCALO */
body.has-zocalo {
  padding-bottom: 75px;
}

.zocalo {
  position: fixed;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: #ffffff;
  box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
}

.zocalo.show {
  transform: translateY(0);
}

.zoc-bar {
  height: 3px;
  background: linear-gradient(90deg, #F56770 0%, #ff8e95 50%, #F56770 100%);
  background-size: 200% 100%;
  animation: zoc-shimmer 2.5s linear infinite;
}

@keyframes zoc-shimmer {
  to { background-position: -200% 0; }
}

.zoc-inner {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.zoc-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.zoc-countdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #d84b55;
  background: #fff0f1;
  padding: 4px 12px;
  border-radius: 30px;
  white-space: nowrap;
}

.zoc-countdown svg {
  width: 14px;
  height: 14px;
}

.zoc-titulo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.zoc-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.zoc-pricing {
  text-align: right;
  line-height: 1.2;
}

.zoc-precio {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin: 0;
}

.zoc-descuento {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

.zoc-descuento span {
  text-decoration: line-through;
}

.zoc-btn {
  background: var(--primary);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.zoc-btn:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 103, 112, 0.35);
}

.zoc-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.zoc-close:hover {
  color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .navbar-nav.desktop-only { display: none !important; }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-text {
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-slider-dots {
    justify-content: center;
  }
  .hero-mockup-img {
    max-height: 380px;
  }
  .wedding-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .wedding-img-col {
    flex: none;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }
  .wedding-actions {
    justify-content: center;
  }
  .wedding-perks {
    align-items: center;
  }
  .steps-flow-curve {
    display: none;
  }
  .steps-flow-row {
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
  .steps-organic-island {
    padding: 50px 24px 60px;
    border-radius: 28px;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 6px 0; }
  .navbar-brand img,
  .brand-logo { height: 44px; }
  .hero h1 { font-size: 2.5rem; }
  .navbar-nav.desktop-only { display: none !important; }
  .mobile-nav-toggle { display: flex !important; }
  .price-card.popular { transform: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card-clean { padding: 20px 18px; }
  .wedding-txt-col h2 { font-size: 2rem; }
  .demo-filters { width: 100%; max-width: 360px; justify-content: center; }
  .filter-btn { flex: 1; padding: 11px 16px; font-size: 0.92rem; justify-content: center; }
  .comparison-table-wrap { overflow-x: auto; }

  /* MUESTRAS EN 2 COLUMNAS COMPACTAS EN CELULAR */
  .showcase-grid,
  .demos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .demo-card {
    border-radius: 10px;
  }

  .demo-tag-pill {
    top: 6px;
    left: 6px;
    font-size: 0.62rem;
    padding: 2px 7px;
  }

  .demo-info {
    padding: 8px 6px 10px;
    gap: 6px;
  }

  .demo-info h3 {
    font-size: 0.78rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .btn-demo-pill {
    padding: 4px 10px;
    font-size: 0.72rem;
    width: 100%;
    max-width: 110px;
    text-align: center;
  }
}

/* ==========================================================================
   COMPONENTES EXTENDIDOS V2
   ========================================================================== */

/* Navbar Brand & Dropdown */
.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.country-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fdf2f4;
  border: 1px solid #f9d2d7;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

.nav-flag-img {
  width: 18px;
  height: 14px;
  border-radius: 3px;
  object-fit: cover;
}

.nav-link.active {
  color: var(--primary);
  font-weight: 700;
}

.nav-link-special {
  color: #a01a4a !important;
  font-weight: 600;
}

.nav-dropdown {
  position: relative;
}

.nav-arrow {
  font-size: 0.75rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  border-radius: 16px;
  padding: 10px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0e6e8;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.nav-dropdown:hover .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.dropdown-item:hover {
  background: #fff5f6;
  color: var(--primary);
  padding-left: 24px;
}

/* Mobile Nav Toggle & Drawer */
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  color: var(--text-dark);
}

.mobile-nav-toggle svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke: var(--text-dark);
  transition: transform 0.2s ease;
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none !important;
  }
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -5px 0 25px rgba(0,0,0,0.15);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s ease;
}

.mobile-drawer.open {
  right: 0 !important;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.mobile-drawer-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.mobile-drawer-links a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  padding: 8px 0;
}

.mobile-drawer-links a.active {
  color: var(--primary);
}

.mobile-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(3px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Page Hero Banner (Subpages) */
.page-hero-banner {
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 50%, #fdf0f2 100%);
  padding: 60px 0 50px;
  position: relative;
  text-align: center;
}

.page-hero-banner h1 {
  font-size: 2.8rem;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.page-hero-banner p {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
}

/* ==========================================================================
   TABLA COMPARATIVA DE PLANES
   ========================================================================== */
.comparison-section {
  padding: 70px 0;
}

.comparison-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  border: 1px solid #f2e4e6;
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.comparison-table th {
  padding: 20px 16px;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--text-dark);
  border-bottom: 2px solid #f5e4e7;
}

.comparison-table th.highlight-col {
  background: #fff8f9;
  color: var(--primary);
  border-radius: 16px 16px 0 0;
}

.comparison-table td {
  padding: 16px;
  border-bottom: 1px solid #f5eff0;
  font-size: 0.95rem;
  vertical-align: middle;
}

.comparison-table td.feature-title {
  text-align: left;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-table td.highlight-col {
  background: #fff8f9;
}

.check-icon-svg {
  width: 20px;
  height: 20px;
  color: #27ae60;
  display: inline-block;
  vertical-align: middle;
}

.cross-icon-svg {
  width: 16px;
  height: 16px;
  color: #bdc3c7;
  display: inline-block;
  vertical-align: middle;
}

/* ==========================================================================
   FAQ ACCORDION V2
   ========================================================================== */
.faq-v2-wrap {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-v2-item {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #f0e6e8;
  overflow: hidden;
  transition: var(--transition);
}

.faq-v2-item:hover {
  border-color: #f7cbd1;
  box-shadow: 0 4px 15px rgba(245, 103, 112, 0.06);
}

.faq-v2-question {
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-v2-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.25s ease;
}

.faq-v2-item.open .faq-v2-question::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-v2-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-v2-item.open .faq-v2-answer {
  max-height: 400px;
  padding: 0 24px 22px;
}

/* ==========================================================================
   CONTACTO V2 (CHANNELS + FORM)
   ========================================================================== */
.contact-section-v2 {
  padding: 60px 0 80px;
}

.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 50px;
}

.channel-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid #f0e6e8;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.channel-card:hover {
  transform: translateY(-4px);
  border-color: #f5b7bd;
  box-shadow: 0 12px 30px rgba(245, 103, 112, 0.12);
}

.channel-flag {
  width: 44px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.channel-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.channel-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.channel-btn {
  background: #25D366;
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.channel-btn:hover {
  background: #1ebc59;
  color: #ffffff;
  transform: scale(1.03);
}

.contact-form-island {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  border: 1px solid #f2e4e6;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  max-width: 720px;
  margin: 0 auto;
}

.form-group-v2 {
  margin-bottom: 22px;
}

.form-group-v2 label {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-input-v2 {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid #e2d7d9;
  background: #fbfbfb;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input-v2:focus {
  outline: none;
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(245, 103, 112, 0.15);
}

.form-feedback {
  margin-top: 15px;
  padding: 12px;
  border-radius: 12px;
  display: none;
  font-size: 0.95rem;
}

.form-feedback.success {
  display: block;
  background: #e8f8f0;
  color: #1e824c;
  border: 1px solid #a3e4d7;
}

.form-feedback.error {
  display: block;
  background: #fdebd0;
  color: #b9770e;
  border: 1px solid #f8c471;
}

/* ==========================================================================
   WEDDING PLANNERS DEDICATED PAGE
   ========================================================================== */
.planners-theme-hero {
  background: linear-gradient(135deg, #fff5f6 0%, #fdf2f4 40%, #f7e1e6 100%);
  padding: 70px 0 80px;
  border-bottom: 1px solid #ebd3d7;
  text-align: center;
}

.planners-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #a01a4a;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.planners-theme-hero h1 {
  font-size: 3rem;
  color: #5c0f2b;
  max-width: 850px;
  margin: 0 auto 18px;
  line-height: 1.25;
}

.planners-theme-hero p {
  font-size: 1.2rem;
  color: #6d4b53;
  max-width: 680px;
  margin: 0 auto 30px;
}

.planner-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 50px 0;
}

.planner-perk-box {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 24px;
  border: 1px solid #f2e1e5;
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: var(--transition);
}

.planner-perk-box:hover {
  transform: translateY(-4px);
  border-color: #a01a4a;
  box-shadow: 0 12px 30px rgba(160, 26, 74, 0.08);
}

.planner-icon-pill {
  width: 48px;
  height: 48px;
  background: #fdf0f3;
  color: #a01a4a;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.planner-meeting-island {
  background: linear-gradient(135deg, #a01a4a 0%, #7d1238 100%);
  color: #ffffff;
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(160, 26, 74, 0.25);
  margin: 60px 0;
  text-align: center;
}

.planner-meeting-island h2 {
  color: #ffffff;
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.planner-meeting-island p {
  color: #f7d5de;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* ==========================================================================
   SOBRE NOSOTROS V2
   ========================================================================== */
.about-stats-strip {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 20px;
  margin: 50px 0;
  border: 1px solid #f2e4e6;
  box-shadow: 0 10px 35px rgba(0,0,0,0.03);
}

.stats-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item-v2 h3 {
  font-size: 2.6rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-item-v2 p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ==========================================================================
   POLÍTICAS Y TÉRMINOS V2
   ========================================================================== */
.policy-container-v2 {
  max-width: 920px;
  margin: 0 auto;
  padding: 50px 20px 80px;
}

.policy-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
  justify-content: center;
}

.policy-pill {
  background: #ffffff;
  border: 1px solid #e2d7d9;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
}

.policy-pill:hover,
.policy-pill.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.policy-doc-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 45px;
  border: 1px solid #f2e4e6;
  box-shadow: 0 12px 35px rgba(0,0,0,0.03);
  margin-bottom: 40px;
  line-height: 1.8;
  color: #4a5568;
}

.policy-doc-card h2 {
  font-size: 1.8rem;
  color: var(--text-dark);
  border-bottom: 2px solid #fff0f2;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.policy-doc-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 10px;
}

.policy-doc-card p {
  margin-bottom: 14px;
}

.policy-doc-card ul {
  padding-left: 24px;
  margin-bottom: 18px;
}

.policy-doc-card li {
  margin-bottom: 8px;
}

/* ==========================================================================
   REGLAS GLOBALES DE SEGURIDAD PARA IMÁGENES Y SVGS
   ========================================================================== */
img {
  max-width: 100%;
}

/* ==========================================================================
   PRICING CARDS V2 (planes_v2.php)
   ========================================================================== */
.pricing-cards-section {
  padding: 60px 0 30px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.price-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px 30px 35px;
  border: 1px solid #f0e6e8;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(245, 103, 112, 0.12);
  border-color: #f7cbd1;
}

.price-card.popular {
  background: #ffffff !important;
  color: var(--text-dark) !important;
  border: 2px solid var(--primary);
  box-shadow: 0 15px 45px rgba(245, 103, 112, 0.18);
  transform: scale(1.03);
}

.price-card.popular:hover {
  transform: scale(1.03) translateY(-5px);
}

.price-card.popular .plan-name,
.price-card.popular .price-value {
  color: var(--text-dark) !important;
}

.price-card.popular .plan-desc {
  color: var(--text-light) !important;
}

.price-card.popular .plan-perks-list li,
.price-card.popular .plan-perks-list li span {
  color: var(--text-dark) !important;
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(245, 103, 112, 0.3);
}

/* ==========================================================================
   FEATURE SHOWCASE GRID (V2)
   ========================================================================== */
.features-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-showcase-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid #f2e4e6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(245, 103, 112, 0.12);
  border-color: #f7cbd1;
}

.feature-showcase-card.highlight-card {
  border-color: #f7cbd1;
  background: linear-gradient(180deg, #ffffff 0%, #fffbfc 100%);
}

.feature-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.feature-icon-pill {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-pill svg {
  width: 24px;
  height: 24px;
}

.feature-showcase-card h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.35;
}

.feature-showcase-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.card-top-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.plan-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 20px;
  min-height: 42px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5eaec;
}

.plan-perks-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}

.plan-perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.check-svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  stroke: #27ae60;
  stroke-width: 2.5;
  fill: none;
}

/* ==========================================================================
   FOOTER V2
   ========================================================================== */
.footer-v2 {
  background: #ffffff;
  border-top: 1px solid #f2e4e6;
  padding: 60px 0 30px;
  margin-top: 60px;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

@media (max-width: 991px) {
  .footer-v2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-v2-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-logo img {
  max-height: 36px !important;
  width: auto !important;
  display: block;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fdf2f4;
  border: 1px solid #fce3e6;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer-socials img {
  width: 20px !important;
  height: 20px !important;
  max-width: 20px !important;
  max-height: 20px !important;
  object-fit: contain !important;
  display: block !important;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  color: var(--text-light);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px !important;
  height: 16px !important;
  min-width: 16px !important;
  max-width: 16px !important;
  color: var(--primary);
}

.footer-v2-bottom {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid #f5eaec;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-light);
  flex-wrap: wrap;
  gap: 15px;
}

.footer-country-tag {
  background: #fbfbfb;
  border: 1px solid #eee;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ==========================================================================
   WIDGET FLOTANTE DE WHATSAPP
   ========================================================================== */
.floating-wapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1050;
}

.wapp-bubble-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.wapp-bubble-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.wapp-bubble-btn svg {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  fill: #ffffff !important;
}

.wapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--text-dark);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}

.wapp-bubble-btn:hover .wapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   ZÓCALO PROMOCIONAL FLOTANTE
   ========================================================================== */
.zocalo-promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--primary);
  box-shadow: 0 -4px 25px rgba(0,0,0,0.08);
  z-index: 1040;
  padding: 12px 0;
}

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

.zoc-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.zoc-badge-pill {
  background: #fff0f2;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.zoc-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.zoc-timer {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #7f8c8d;
  background: #fbfbfb;
  padding: 4px 10px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.zoc-timer svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}

.zoc-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.zoc-price-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
}

.zoc-discount-tag {
  font-size: 0.85rem;
  color: #27ae60;
  font-weight: 600;
}

.zoc-discount-tag span {
  text-decoration: line-through;
  color: #999;
  font-size: 0.78rem;
  margin-left: 4px;
}

.zoc-btn {
  padding: 8px 20px;
  font-size: 0.88rem;
  border-radius: 20px;
}

.zoc-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 0 5px;
}

body.has-zocalo {
  padding-bottom: 80px;
}


