:root {
  --color-primary: #c678ac;
  --color-primary-dark: #8a5080;
  --color-primary-soft: #f4ebf2;
  --color-secondary: #8a5080;
  --color-text: #3d3142;
  --color-text-soft: #6c5a6d;
  --color-white: #ffffff;
  --color-border: rgba(198, 120, 172, 0.14);
  --font-base: "Roboto", sans-serif;
  --shadow-sm: 0 10px 30px rgba(90, 61, 86, 0.08);
  --shadow-md: 0 16px 44px rgba(90, 61, 86, 0.12);
  --shadow-lg: 0 24px 70px rgba(90, 61, 86, 0.18);
  --container-width: 1200px;
  --transition: all 0.35s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(198, 120, 172, 0.06), transparent 25%),
    radial-gradient(circle at bottom right, rgba(138, 80, 128, 0.05), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #fcf9fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
svg,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  color: var(--color-text-soft);
  line-height: 1.8;
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  color: var(--color-text);
  line-height: 1.18;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.text-center {
  text-align: center;
}

.text-md-start {
  text-align: center;
}

.text-md-end {
  text-align: center;
}

.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.bg-white {
  background: #fff;
}

.bg-secondary {
  background: var(--color-secondary);
}

.bg-primary {
  background: var(--color-primary);
}

.backdrop {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(198, 120, 172, 0.1);
  box-shadow: 0 10px 30px rgba(58, 36, 57, 0.06);
}

.topbar {
  padding: 0.35rem 0;
}

.topbar-inner {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar-link {
  color: #fff;
  font-size: 0.85rem;
}

.d-md-inline {
  display: none;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem 0;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-toggler {
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: block;
}

.navbar-collapse {
  display: none;
  width: 100%;
}

.navbar-collapse.show {
  display: block;
}

.navbar-nav {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.navbar-nav a {
  color: var(--color-text);
  font-weight: 500;
  transition: var(--transition);
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
  line-height: 1;
}

.rounded-pill {
  border-radius: 999px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(138, 80, 128, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  min-height: 92vh;
  padding: 180px 0 90px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #7b496f;
}

.top-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(62, 37, 61, 0.86) 0%, rgba(89, 50, 84, 0.64) 38%, rgba(126, 85, 115, 0.3) 100%);
  z-index: 1;
}

.hero-bg-word {
  position: absolute;
  inset: 110px 0 auto 0;
  text-align: center;
  font-size: clamp(3.6rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.09);
  pointer-events: none;
  user-select: none;
  z-index: 2;
}

.hero-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-orb-left {
  left: -90px;
  top: 100px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.02) 60%, transparent 72%);
}

.hero-orb-right {
  right: -120px;
  bottom: 20px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 60%, transparent 72%);
}

.hero-card {
  max-width: 920px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 34px;
  padding: 42px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 3;
}

.hero-card h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  margin: 20px 0;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-badges span {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.98rem;
  font-weight: 700;
}

.soft-section {
  padding: 100px 0;
  position: relative;
}

.visual-soft {
  background:
    radial-gradient(circle at top left, rgba(198, 120, 172, 0.08), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #faf5f9 100%);
}

.visual-band {
  background:
    linear-gradient(135deg, rgba(197, 167, 193, 0.22) 0%, rgba(255, 255, 255, 0.95) 44%, rgba(232, 214, 229, 0.55) 100%);
}

.section-with-art {
  isolation: isolate;
}

.section-bg-word {
  position: absolute;
  inset: 24px 0 auto 0;
  text-align: center;
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(138, 80, 128, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section-bg-texture {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
}

.texture-left {
  left: -110px;
  top: 50px;
  background:
    radial-gradient(circle, rgba(198, 120, 172, 0.12) 0%, rgba(198, 120, 172, 0.05) 45%, transparent 70%);
}

.texture-right {
  right: -120px;
  bottom: 30px;
  background:
    radial-gradient(circle, rgba(138, 80, 128, 0.11) 0%, rgba(138, 80, 128, 0.04) 46%, transparent 72%);
}

.texture-center {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  background:
    radial-gradient(circle, rgba(198, 120, 172, 0.1) 0%, rgba(198, 120, 172, 0.03) 52%, transparent 72%);
}

.section-heading {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--color-primary-dark);
  border: 1px solid rgba(198, 120, 172, 0.2);
  box-shadow: 0 12px 26px rgba(138, 80, 128, 0.09);
  font-weight: 700;
  line-height: 1.2;
}

.section-pill-lg {
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  padding: 16px 28px;
}

.section-pill-light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  padding: 14px 22px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.align-center {
  align-items: center;
}

.image-card {
  background: linear-gradient(180deg, #ffffff 0%, #fcf8fb 100%);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.cover-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  min-height: 420px;
}

.lead-text {
  font-size: 1.08rem;
  color: var(--color-text);
}

.cards-grid {
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.cards-grid-2 {
  grid-template-columns: 1fr;
}

.cards-grid-3 {
  grid-template-columns: 1fr;
}

.profile-card,
.mini-card,
.audience-card,
.quote-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fcf8fb 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  height: 100%;
}

.profile-card::before,
.mini-card::before,
.audience-card::before,
.quote-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), rgba(198, 120, 172, 0.18));
}

.profile-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  box-shadow: 0 12px 28px rgba(138, 80, 128, 0.12);
}

.profile-card {
  text-align: center;
}

.profile-role {
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  position: relative;
  z-index: 2;
}

.quote-card {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-card p {
  font-size: 1.12rem;
  line-height: 1.9;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 0;
}

.trust-section {
  background: linear-gradient(135deg, #7b496f 0%, #8a5080 38%, #a86f99 100%);
}

.cta-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 42px 30px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-panel h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 22px 0 16px;
}

.cta-panel p {
  color: rgba(255,255,255,0.92);
  max-width: 760px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* Footer igual al inicio */
.footer-main {
  position: relative;
}

.footer-main-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.footer-col {
  width: 100%;
}

.footer-brand {
  max-width: 420px;
}

.text-light,
.text-white,
.text-200 {
  color: #fff !important;
}

.text-black-50 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-link {
  color: rgba(255, 255, 255, 0.84);
  transition: var(--transition);
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.item {
  list-style: none;
}

.social-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-icon:hover {
  transform: translateY(-2px) scale(1.04);
}

.lh-lg {
  line-height: 1.8 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-8 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mr-5 {
  margin-right: 2rem !important;
}

.fs--1 {
  font-size: 0.86rem !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.font-sans-serif {
  font-family: var(--font-base) !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.footer-bottom-col {
  width: 100%;
}

.icon-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1100;
}

.icon-float a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 14px 10px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(198, 120, 172, 0.14);
  transition: var(--transition);
}

.icon-float a:hover {
  transform: translateY(-3px);
}

.icon-what img {
  width: 51px;
  height: 51px;
  object-fit: contain;
}

.text-what {
  font-weight: 700;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline;
  }

  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .two-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .footer-col.footer-brand {
    width: 42%;
  }

  .footer-col {
    width: 22%;
  }

  .footer-social {
    width: auto;
  }

  .footer-bottom-col {
    width: auto;
  }
}

@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    width: auto;
    margin-left: auto;
  }

  .navbar-nav {
    flex-direction: row;
    gap: 18px;
    margin: 0;
    align-items: center;
  }
}

@media (max-width: 991.98px) {
  .page-hero {
    padding-top: 150px;
    min-height: auto;
  }

  .hero-card {
    padding: 30px 24px;
  }

  .soft-section {
    padding: 80px 0;
  }

  .nav-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .hero-card h1 {
    font-size: 2rem;
  }

  .section-pill-lg {
    width: 100%;
    font-size: 1.3rem;
    padding: 14px 18px;
  }

  .hero-badges span,
  .btn,
  .btn-primary,
  .btn-light,
  .btn-outline-light {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .text-what {
    display: none;
  }

  .section-bg-word,
  .hero-bg-word {
    letter-spacing: 0.07em;
  }

  .cover-image {
    min-height: 260px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .hero-orb,
  .section-bg-texture {
    width: 220px;
    height: 220px;
  }
}