: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,
video,
svg,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

p {
  color: var(--color-text-soft);
  line-height: 1.75;
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text);
  line-height: 1.2;
  margin-top: 0;
}

section {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container-width));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: -12px;
}

.row > [class*="col-"] {
  padding-inline: 12px;
}

.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-3 { width: 25%; }

@media (min-width: 576px) {
  .col-sm-12 { width: 100%; }
  .col-sm-8 { width: 66.6667%; }
  .col-sm-6 { width: 50%; }
  .col-sm-4 { width: 33.3333%; }
  .col-sm-3 { width: 25%; }
  .col-sm-9 { width: 75%; }
  .col-sm-auto { width: auto; }
}

@media (min-width: 768px) {
  .col-md-4 { width: 33.3333%; }
  .col-md-5 { width: 41.6667%; }
  .col-md-6 { width: 50%; }
  .col-md-7 { width: 58.3333%; }
}

@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.3333%; }
  .col-lg-5 { width: 41.6667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-7 { width: 58.3333%; }
  .col-lg-8 { width: 66.6667%; }
  .col-lg-10 { width: 83.3333%; }
  .col-lg-auto { width: auto; }
}

.d-block { display: block !important; }
.d-none { display: none !important; }

@media (min-width: 768px) {
  .d-md-block { display: block !important; }
}

.text-center { text-align: center !important; }
.text-end { text-align: right !important; }

@media (min-width: 576px) {
  .text-sm-start { text-align: left !important; }
}

@media (min-width: 768px) {
  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
}

.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }
.align-baseline { align-items: baseline !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

@media (min-width: 768px) {
  .justify-content-md-between { justify-content: space-between !important; }
}

.flex-row-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  list-style: none;
}

.flex-column { flex-direction: column !important; }
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ms-auto { margin-left: auto !important; }

@media (min-width: 992px) {
  .ms-lg-4 { margin-left: 1rem !important; }
}

.mx-auto { margin-inline: auto !important; }

@media (min-width: 768px) {
  .mx-md-4 { margin-inline: 1.5rem !important; }
}

.my-2 { margin-block: 0.5rem !important; }
.my-4 { margin-block: 1.5rem !important; }
.my-md-7 { margin-block: 2.5rem !important; }

.mr-5 { margin-right: 2rem !important; }
.m-2 { margin: 0.5rem !important; }

@media (min-width: 992px) {
  .m-lg-7 { margin: 3rem !important; }
}

.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }
.mb-8 { margin-bottom: 3rem !important; }

.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-6 { margin-top: 2.5rem !important; }
.mt-lg-0 { margin-top: 0 !important; }

.py-0 { padding-block: 0 !important; }
.py-1 { padding-block: 0.25rem !important; }
.py-3 { padding-block: 1rem !important; }
.py-4 { padding-block: 1.25rem !important; }
.py-5 { padding-block: 3rem !important; }
.py-6 { padding-block: 4rem !important; }
.py-8 { padding-block: 5rem !important; }

.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-lg-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

.order-0 { order: 0 !important; }
.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }
.order-3 { order: 3 !important; }

.position-relative { position: relative !important; }

/* Fixed top unificado */
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.min-vh-xl-100 { min-height: auto; }

@media (min-width: 1200px) {
  .min-vh-xl-100 { min-height: 100vh; }
}

.fs--1 { font-size: 0.86rem !important; }
.fs-xxl-1 { font-size: 1rem !important; }

.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 500 !important; }

.font-base,
.font-sans-serif {
  font-family: var(--font-base) !important;
}

.rounded-circle {
  border-radius: 50% !important;
  object-fit: cover;
}

.rounded-pill {
  border-radius: 999px !important;
}

.shadow {
  box-shadow: var(--shadow-sm) !important;
}

.fit-cover {
  object-fit: cover;
}

.text-light,
.text-200,
.text-white {
  color: #ffffff !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-600 {
  color: rgba(61, 49, 66, 0.72) !important;
}

.text-black-50 {
  color: rgba(255, 255, 255, 0.78) !important;
}

.bg-white { background: #ffffff !important; }
.bg-primary { background: var(--color-primary) !important; }
.bg-secondary { background: var(--color-secondary) !important; }

.border-top { border-top: 1px solid rgba(0, 0, 0, 0.08) !important; }

@media (min-width: 992px) {
  .border-lg-0 { border-top: none !important; }
}

/* Navbar styles */
.navbar {
  transition: var(--transition);
}

.navbar.backdrop {
  background: rgba(255, 255, 255, 0.9) !important;
  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);
}

.navbar .container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar-brand {
  flex-shrink: 0;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.02);
}

.navbar-toggler {
  margin-left: auto;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  color: var(--color-primary-dark);
  cursor: pointer;
  display: block;
  padding: 0.5rem;
}

.navbar-toggler-icon {
  display: inline-block;
  line-height: 1;
}

.navbar-collapse {
  display: none;
  width: 100%;
}

.navbar-collapse.show {
  display: block;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.nav-item {
  list-style: none;
}

.nav-link {
  display: inline-block;
  color: var(--color-text) !important;
  font-weight: 500;
  position: relative;
  padding: 0.65rem 0;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-primary-dark) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.28rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Hero section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 70px;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(90deg, rgba(62, 37, 61, 0.84) 0%, rgba(89, 50, 84, 0.6) 38%, rgba(126, 85, 115, 0.3) 100%);
  z-index: 1;
}

.top-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-row,
.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-glass-card {
  max-width: 760px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 32px;
  padding: 44px 36px;
  box-shadow: var(--shadow-lg);
}

.hero-glass-card--wide {
  max-width: 860px;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 12px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-glass-card h1 {
  color: #ffffff !important;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-glass-card p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-support-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 28px;
}

.hero-support-line span {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  text-align: center;
}

.btn-lg {
  padding: 16px 30px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #ffffff !important;
  box-shadow: 0 14px 34px rgba(138, 80, 128, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(138, 80, 128, 0.36);
}

.btn-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-primary-dark) !important;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.18);
}

.btn-outline-primary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--color-primary-dark) !important;
  border: 1.5px solid var(--color-primary-dark);
}

.btn-outline-primary:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.56);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.soft-section {
  padding: 100px 0;
}

.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%);
}

/* Secciones con arte */
.section-with-art {
  isolation: isolate;
}

.section-bg-word {
  position: absolute;
  top: 22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(138, 80, 128, 0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.section-bg-texture {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.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-bg-detail.detail-dots {
  position: absolute;
  right: 70px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(138, 80, 128, 0.18) 1.6px, transparent 1.6px);
  background-size: 14px 14px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}

.section-heading-row {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.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.5rem, 2.4vw, 2.6rem);
  padding: 16px 28px;
}

.section-pill-light {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
  font-size: clamp(1.2rem, 2vw, 2rem);
  padding: 14px 24px;
}

.section-subtitle {
  max-width: 820px;
  margin: 26px auto 52px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text-soft);
  position: relative;
  z-index: 2;
}

.section-subtitle-left {
  text-align: left;
  margin: 0 0 32px 0;
  max-width: 100%;
}

/* Especialidades */
.specialty-block {
  align-items: center;
  position: relative;
  z-index: 2;
}

.specialty-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);
}

.specialty-image {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  min-height: 430px;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mini-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 248, 251, 1) 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  overflow: hidden;
}

.mini-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));
}

.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(198, 120, 172, 0.24);
}

.mini-card h4,
.mini-card h3 {
  margin-bottom: 14px;
}

.service-card {
  padding: 34px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-img-wrap {
  width: 100%;
  min-height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.service-img {
  margin-inline: auto;
  box-shadow: 0 12px 28px rgba(138, 80, 128, 0.12);
}

.service-title {
  color: var(--color-primary-dark);
  text-align: center;
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-desc {
  font-size: 0.96rem;
  line-height: 1.82;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.services-row .col-lg-4,
.services-row .col-sm-6 {
  display: flex;
}

.services-row .service-card {
  width: 100%;
}

/* Accordion */
.accordion-list {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.accordion-item {
  background: linear-gradient(180deg, #ffffff 0%, #fcf8fb 100%);
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  border: none;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-trigger:hover {
  background: rgba(198, 120, 172, 0.05);
}

.accordion-icon {
  flex-shrink: 0;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--color-primary-dark);
  transition: transform 0.25s ease;
  margin-left: 16px;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.accordion-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 20px;
  padding: 0 24px 24px;
}

.accordion-text {
  display: flex;
  align-items: center;
}

.accordion-text p {
  margin: 0;
}

.accordion-image-box {
  min-height: 170px;
  border-radius: 20px;
  border: 1px dashed rgba(138, 80, 128, 0.35);
  background: rgba(244, 235, 242, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-weight: 600;
  text-align: center;
  padding: 18px;
}

/* Trust section */
.tp-trust-section {
  background:
    linear-gradient(135deg, #7b496f 0%, #8a5080 38%, #a86f99 100%) !important;
}

.trust-copy-top {
  margin-top: 26px;
}

.location-box {
  background: linear-gradient(180deg, #ffffff 0%, #fbf8fa 100%);
  border-radius: 28px;
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  height: 100%;
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.location-box-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 22px;
}

.contact-feature-item {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.map-embed {
  margin-top: 20px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.map-embed iframe {
  width: 100%;
  display: block;
}

/* Cards */
.card.card-span {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-sm) !important;
  transition: var(--transition);
  background: linear-gradient(180deg, #fff 0%, #fcf8fb 100%);
}

.card.card-span:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md) !important;
}

.card-body {
  padding: 2rem;
}

/* Testimonios */
.testimony-section-shell {
  background:
    radial-gradient(circle at top center, rgba(198, 120, 172, 0.09), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fdf9fc 100%);
}

.testimony-carousel {
  width: 100%;
  position: relative;
  z-index: 2;
}

.testimony-slide {
  display: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}

.testimony-slide.active {
  display: block;
}

.testimony-inner {
  align-items: center;
}

.testimony-person {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimony-avatar {
  width: 108px;
  height: 108px;
  box-shadow: 0 10px 24px rgba(138, 80, 128, 0.12);
}

.testimony-copy h3 {
  margin-bottom: 14px;
}

.testimony-copy p {
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 0;
}

.testimony-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.testimony-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(138, 80, 128, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.testimony-dots .dot.active,
.testimony-dots .dot:hover {
  background: var(--color-primary-dark);
  transform: scale(1.15);
}

/* Footer */
.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);
}

/* Icono flotante */
.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;
}

.text-decoration-none {
  text-decoration: none !important;
}

.lh-lg {
  line-height: 1.8 !important;
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* Topbar */
.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;
  line-height: 1.4;
}

.d-md-inline {
  display: none;
}

.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 1rem 0;
  min-height: 86px;
}

.navbar-brand {
  flex: 0 0 auto;
  min-width: 180px;
}

.navbar-brand img {
  max-width: 220px;
  height: auto;
}

.nav-cta {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .d-md-inline {
    display: inline;
  }
}

@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;
    min-width: 0;
    flex: 1 1 auto;
  }

  .navbar-nav {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 14px;
    margin: 0;
    min-width: 0;
  }

  .navbar-nav a {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav-cta {
    flex: 0 0 auto;
    padding: 13px 20px;
    font-size: 0.95rem;
  }
  
  .specialty-block {
    flex-wrap: nowrap;
  }
}

@media (min-width: 1200px) {
  .navbar-nav {
    gap: 18px;
  }

  .nav-cta {
    padding: 14px 24px;
  }
}

/* Media queries responsive */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 130px;
    min-height: auto;
  }

  .hero-glass-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .soft-section {
    padding: 80px 0;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    margin-top: 12px;
  }

  .text-md-start {
    text-align: center !important;
  }

  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .accordion-body {
    grid-template-columns: 1fr;
  }

  .section-bg-word {
    font-size: clamp(2.8rem, 12vw, 5.5rem);
    top: 38px;
  }
  
  .nav-main {
    flex-wrap: wrap;
  }

  .navbar-collapse {
    margin-top: 12px;
  }
}

@media (max-width: 767.98px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .row > [class*="col-"] {
    width: 100%;
  }

  .hero-glass-card h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-support-line span {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  .mini-card,
  .location-box,
  .testimony-slide,
  .accordion-item {
    border-radius: 22px;
  }

  .text-what {
    display: none;
  }

  .breadcrumb {
    flex-direction: column;
    gap: 4px;
  }

  .icon-float {
    right: 14px;
    bottom: 14px;
  }

  .specialty-image {
    min-height: 260px;
  }

  .service-title {
    min-height: auto;
  }

  .section-subtitle-left {
    text-align: center;
  }

  .testimony-slide {
    padding: 28px 22px;
  }

  .testimony-avatar {
    margin-inline: auto;
  }

  .contact-feature-list {
    justify-content: center;
  }

  .section-pill-lg {
    width: 100%;
    max-width: 100%;
    font-size: 1.35rem;
    padding: 14px 18px;
  }

  .section-bg-texture {
    opacity: 0.65;
    width: 220px;
    height: 220px;
  }

  .section-bg-word {
    font-size: clamp(2.2rem, 13vw, 4rem);
    letter-spacing: 0.08em;
    top: 46px;
  }
}

@media (max-width: 575.98px) {
  .btn,
  .btn-lg {
    width: 100%;
  }

  .hero-support-line {
    justify-content: center;
  }

  .py-8 {
    padding-block: 4rem !important;
  }

  .accordion-trigger {
    padding: 18px 18px;
  }

  .accordion-body {
    padding: 0 18px 18px;
  }

  .location-box {
    padding: 26px 22px;
  }
}

/* Backdrop unificado */
.backdrop {
  background: rgba(255, 255, 255, 0.92);
  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);
}