/* ============================
   AUM - Manifestando Destinos
   Ethereal Lilac/Pink Aesthetic
   ============================ */

/* --- CSS Variables --- */
:root {
  --rosa: #D9A2B5;
  --rosa-hover: #c88da1;
  --rosa-soft: #f5e4ec;
  --rosa-glow: rgba(217, 162, 181, 0.25);
  --lila: #CDB8E8;
  --lila-hover: #b9a0d8;
  --lila-soft: #ede4f8;
  --lila-glow: rgba(205, 184, 232, 0.25);
  --dorado: #C6A75E;
  --dorado-soft: #e8d9aa;
  --dorado-light: rgba(198, 167, 94, 0.10);
  --crema: #F3EFE8;
  --blanco: #FDFCFA;
  --fondo: #FAF7F2;
  --texto: #3A3530;
  --texto-light: #8A8279;
  --borde: #E8E2D9;
  --borde-rosa: rgba(217, 162, 181, 0.25);
  --borde-lila: rgba(205, 184, 232, 0.25);
  --sombra: 0 2px 20px rgba(205, 184, 232, 0.08);
  --sombra-hover: 0 8px 40px rgba(205, 184, 232, 0.15);
  --sombra-glow-rosa: 0 4px 24px rgba(217, 162, 181, 0.20);
  --sombra-glow-lila: 0 4px 24px rgba(205, 184, 232, 0.20);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--fondo);
  color: var(--texto);
  line-height: 1.6;
  font-size: 16px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: var(--blanco);
}

.section--lila {
  background: linear-gradient(180deg, var(--lila-soft) 0%, var(--fondo) 100%);
}

.section--rosa {
  background: linear-gradient(180deg, var(--rosa-soft) 0%, var(--fondo) 100%);
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--rosa);
  margin-bottom: 12px;
}

.section-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--texto);
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.section-desc {
  max-width: 520px;
  margin: 16px auto 0;
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.text-center { text-align: center; }

/* --- Decorative line --- */
.deco-line {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--rosa), var(--lila));
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--rosa), var(--lila));
  color: var(--blanco);
  border: 1px solid transparent;
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--rosa-hover), var(--lila-hover));
  box-shadow: var(--sombra-glow-rosa);
  transform: translateY(-1px);
}

.btn--outline {
  border: 2px solid var(--rosa);
  color: var(--rosa);
  background: transparent;
}

.btn--outline:hover {
  background: var(--rosa);
  color: var(--blanco);
  box-shadow: var(--sombra-glow-rosa);
}

.btn--outline-lila {
  border: 2px solid var(--lila);
  color: var(--lila);
  background: transparent;
}

.btn--outline-lila:hover {
  background: var(--lila);
  color: var(--blanco);
  box-shadow: var(--sombra-glow-lila);
}

.btn--gold-accent {
  background: linear-gradient(135deg, var(--rosa), var(--lila));
  color: var(--blanco);
  border: 1px solid var(--dorado-soft);
  box-shadow: inset 0 1px 0 rgba(198, 167, 94, 0.2);
}

.btn--gold-accent:hover {
  box-shadow: var(--sombra-glow-lila), inset 0 1px 0 rgba(198, 167, 94, 0.3);
  transform: translateY(-1px);
}

.btn--small {
  padding: 10px 20px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rosa);
  transition: var(--transition);
}

.link-arrow:hover {
  gap: 10px;
  color: var(--rosa-hover);
}

.link-arrow svg {
  width: 14px;
  height: 14px;
  transition: var(--transition);
}

/* --- Cards --- */
.card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--borde);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
  border-color: var(--borde-lila);
}

.card__img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__img img {
  transform: scale(1.05);
}

.card--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.card--link .card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__body {
  padding: 20px 24px 24px;
}

.card__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--texto-light);
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
}

.badge--gold {
  background: var(--dorado-light);
  color: var(--dorado);
}

.badge--rosa {
  background: var(--rosa-soft);
  color: var(--rosa-hover);
}

.badge--lila {
  background: var(--lila-soft);
  color: var(--lila-hover);
}

.card__title {
  margin-top: 12px;
  font-size: 17px;
  font-weight: 600;
  color: var(--texto);
}

.card__text {
  margin-top: 8px;
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --- Grid Layouts --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* =============================
   HEADER
   ============================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: var(--transition);
  padding: 0;
}

.site-header--scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--borde);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header__logo-img {
  height: 44px;
  width: auto;
}

.site-header__logo-text {
  display: flex;
  flex-direction: column;
}

.site-header__logo-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--dorado-soft);
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.site-header--scrolled .site-header__logo-name {
  color: var(--dorado);
  text-shadow: none;
}

.site-header__logo-sub {
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: -2px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: var(--transition);
}

.site-header--scrolled .site-header__logo-sub {
  color: var(--texto-light);
  text-shadow: none;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-header__nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
  position: relative;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.site-header__nav a:hover,
.site-header__nav a.active {
  color: #fff;
}

.site-header--scrolled .site-header__nav a {
  color: var(--texto-light);
  text-shadow: none;
}

.site-header--scrolled .site-header__nav a:hover,
.site-header--scrolled .site-header__nav a.active {
  color: var(--rosa);
}

.site-header__nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa), var(--lila));
  border-radius: 1px;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 101;
}

.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: var(--transition);
}

.site-header--scrolled .site-header__hamburger span {
  background: var(--texto);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(16px);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--texto-light);
  padding: 12px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--rosa);
  background: var(--rosa-soft);
}

.mobile-nav__close {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 32px;
  color: var(--texto);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
  z-index: 10001;
}

/* =============================
   HERO CAROUSEL
   ============================= */
.hero {
  position: relative;
  height: 70vh;
  min-height: 520px;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(217, 162, 181, 0.55) 0%, rgba(205, 184, 232, 0.45) 50%, rgba(58, 53, 48, 0.35) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.hero__text {
  max-width: 560px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dorado-soft);
  margin-bottom: 16px;
}

.hero__title {
  font-size: 42px;
  font-weight: 600;
  color: var(--blanco);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-wrap: balance;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero__desc {
  margin-top: 16px;
  font-size: 16px;
  color: rgba(253, 252, 250, 0.85);
  line-height: 1.7;
  text-shadow: 0 1px 8px rgba(0,0,0,0.1);
}

.hero__cta {
  margin-top: 28px;
}

.hero__dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(253, 252, 250, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.hero__dot.active {
  width: 36px;
  background: linear-gradient(90deg, var(--rosa), var(--lila));
}

.hero__arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}

.hero__arrow {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253, 252, 250, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(253, 252, 250, 0.2);
  color: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 18px;
}

.hero__arrow:hover {
  background: rgba(217, 162, 181, 0.35);
  border-color: rgba(217, 162, 181, 0.4);
}

/* =============================
   PAGE HERO (inner pages)
   ============================= */
.page-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--rosa-soft) 0%, var(--lila-soft) 50%, var(--fondo) 100%);
  border-bottom: 1px solid var(--borde);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lila-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--rosa-glow) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 600;
  color: var(--texto);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.page-hero__line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rosa), var(--lila));
  border-radius: 2px;
  margin: 16px auto 0;
  position: relative;
  z-index: 1;
}

.page-hero p {
  margin-top: 16px;
  font-size: 15px;
  color: var(--texto-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* =============================
   ICON CIRCLES
   ============================= */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-circle--gold {
  background: var(--dorado-light);
  color: var(--dorado);
}

.icon-circle--rosa {
  background: var(--rosa-soft);
  color: var(--rosa-hover);
}

.icon-circle--lila {
  background: var(--lila-soft);
  color: var(--lila-hover);
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

/* =============================
   SERVICIOS ALTERNATING
   ============================= */
.servicio-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.servicio-row--reverse {
  direction: rtl;
}

.servicio-row--reverse > * {
  direction: ltr;
}

.servicio-row__img {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sombra);
}

.servicio-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicio-row__content .section-label { margin-bottom: 8px; }

.servicio-row__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 16px;
}

.servicio-row__text {
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--texto);
}

.benefit-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--rosa-soft);
  color: var(--rosa);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-check svg {
  width: 12px;
  height: 12px;
}

/* =============================
   EQUIPO / TEAM
   ============================= */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: var(--blanco);
  border: 1px solid var(--borde);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
  border-color: var(--borde-rosa);
}

.team-card__avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background-image: linear-gradient(var(--blanco), var(--blanco)), linear-gradient(135deg, var(--rosa), var(--lila));
  background-origin: border-box;
  background-clip: content-box, border-box;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--texto);
}

.team-card__role {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rosa);
}

.team-card__bio {
  margin-top: 16px;
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.7;
}

/* =============================
   NOTICIAS
   ============================= */
.noticia-date {
  font-size: 12px;
  color: var(--texto-light);
}

/* =============================
   FILTERS
   ============================= */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--texto-light);
  background: var(--blanco);
  border: 1px solid var(--borde);
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--rosa);
  color: var(--rosa);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--rosa), var(--lila));
  color: var(--blanco);
  border-color: transparent;
}

/* =============================
   FORMS
   ============================= */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--texto-light);
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--borde);
  background: var(--blanco);
  font-size: 14px;
  color: var(--texto);
  font-family: inherit;
  transition: var(--transition);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(138, 130, 121, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px var(--rosa-glow);
}

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-error {
  font-size: 12px;
  color: #c0392b;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--rosa-soft), var(--lila-soft));
  border: 1px solid var(--borde-rosa);
  border-radius: var(--radius-lg);
}

/* =============================
   CONTACTO
   ============================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 4px;
}

.contact-info__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--rosa), var(--lila));
  border-radius: 1px;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.6;
}

.contact-map {
  margin-top: 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--borde);
}

.contact-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* =============================
   NOSOTROS PILLARS
   ============================= */
.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  background: var(--blanco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--borde);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sombra-hover);
  border-color: var(--borde-lila);
}

.pillar-card h3 {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--texto);
}

.pillar-card p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--texto-light);
  line-height: 1.7;
}

/* =============================
   CTA SECTION
   ============================= */
.cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 64px 32px;
  background: linear-gradient(135deg, var(--rosa-soft), var(--lila-soft));
  border: 1px solid var(--borde-rosa);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lila-glow) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box .section-title {
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.cta-box .section-desc {
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

.cta-box .section-label {
  position: relative;
  z-index: 1;
}

/* =============================
   NEWSLETTER
   ============================= */
.newsletter {
  background: linear-gradient(135deg, var(--rosa-soft) 0%, var(--lila-soft) 100%);
  padding: 48px 0;
  text-align: center;
}

.newsletter h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--texto);
}

.newsletter p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--texto-light);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 20px auto 0;
}

.newsletter__form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--borde);
  background: var(--blanco);
  font-size: 14px;
  font-family: inherit;
  color: var(--texto);
}

.newsletter__form input:focus {
  outline: none;
  border-color: var(--rosa);
  box-shadow: 0 0 0 3px var(--rosa-glow);
}

.newsletter__success {
  font-size: 14px;
  font-weight: 600;
  color: var(--rosa);
  margin-top: 16px;
}

/* =============================
   FOOTER
   ============================= */
.site-footer {
  background: var(--texto);
  color: var(--blanco);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 56px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__brand-name {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, var(--rosa), var(--lila));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-footer__brand-sub {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-top: 2px;
}

.site-footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.65;
  line-height: 1.7;
}

.site-footer__socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.site-footer__socials a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  transition: var(--transition);
}

.site-footer__socials a:hover {
  opacity: 1;
  color: var(--rosa);
}

.site-footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
  margin-bottom: 16px;
}

.site-footer__links a {
  display: block;
  font-size: 14px;
  opacity: 0.55;
  padding: 4px 0;
  transition: var(--transition);
}

.site-footer__links a:hover {
  opacity: 1;
  color: var(--rosa);
}

.site-footer__contact p {
  font-size: 14px;
  opacity: 0.55;
  line-height: 1.8;
}

.site-footer__contact .font-medium {
  font-weight: 500;
  opacity: 0.7;
  margin-top: 12px;
}

.site-footer__bottom {
  border-top: 1px solid rgba(253, 252, 250, 0.08);
  padding: 20px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-footer__bottom p {
  font-size: 12px;
  opacity: 0.35;
}

/* =============================
   DETAIL PAGE
   ============================= */
.detail-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(80, 50, 70, 0.25) 0%,
    rgba(80, 50, 70, 0.65) 60%,
    rgba(50, 30, 45, 0.85) 100%
  );
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 0 48px;
}

.detail-hero__content .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
  margin-bottom: 8px;
}

.detail-back svg {
  width: 16px;
  height: 16px;
}

.detail-back:hover {
  color: #fff;
}

.detail-hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
  max-width: 700px;
}

.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.detail-badges .badge {
  font-size: 12px;
  padding: 5px 14px;
}

.badge--outline {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  display: inline-block;
}

.detail-badges .badge--rosa,
.detail-badges .badge--lila {
  color: #fff;
}

.detail-badges .badge--rosa {
  background: rgba(217, 162, 181, 0.85);
  backdrop-filter: blur(8px);
}

.detail-badges .badge--lila {
  background: rgba(205, 184, 232, 0.85);
  backdrop-filter: blur(8px);
}

/* Detail Body */
.detail-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.8;
  color: var(--texto);
}

.detail-body p {
  margin-bottom: 20px;
}

.detail-body p:last-child {
  margin-bottom: 0;
}

.detail-subheading {
  font-size: 18px;
  font-weight: 600;
  color: var(--texto);
  margin-top: 36px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--rosa-soft);
}

.detail-list {
  margin: 0 0 24px 0;
  padding-left: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa), var(--lila));
}

.detail-list--ordered {
  counter-reset: detail-counter;
}

.detail-list--ordered li {
  counter-increment: detail-counter;
  padding-left: 32px;
}

.detail-list--ordered li::before {
  content: counter(detail-counter);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rosa), var(--lila));
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 4px;
}

.benefit-list--horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.benefit-list--horizontal li {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-list--horizontal li .benefit-check {
  color: rgba(255, 255, 255, 0.8);
}

.benefit-list--horizontal li .benefit-check svg {
  width: 12px;
  height: 12px;
}

/* Detail CTA */
.detail-cta {
  max-width: 760px;
  margin: 48px auto 0;
}

.detail-cta__inner {
  background: linear-gradient(135deg, var(--rosa-soft) 0%, var(--lila-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}

.detail-cta__inner h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--texto);
  margin-bottom: 8px;
}

.detail-cta__inner p {
  font-size: 15px;
  color: var(--texto-light);
  margin-bottom: 24px;
}

.detail-cta__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================
   WHATSAPP FAB
   ============================= */
.wa-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.wa-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}

.wa-fab:active {
  transform: scale(0.95);
}

/* =============================
   SVG ICONS INLINE
   ============================= */
.svg-arrow {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1024px) {
  .site-header__nav { display: none; }
  .site-header__hamburger { display: flex; }
  .site-header__actions .btn { display: none; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .servicio-row { grid-template-columns: 1fr; gap: 32px; }
  .servicio-row--reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .detail-hero { min-height: 360px; }
  .detail-hero__title { font-size: 32px; }
  .detail-cta__inner { padding: 36px 24px; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 28px; }
  .hero__desc { font-size: 14px; }
  .hero { min-height: 420px; }
  .section { padding: 56px 0; }
  .section-title { font-size: 24px; }
  .page-hero { padding: 120px 0 48px; }
  .page-hero h1 { font-size: 28px; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .hero__arrows { display: none; }

  .detail-hero { min-height: 320px; }
  .detail-hero__title { font-size: 26px; }
  .detail-cta__inner { padding: 32px 20px; }
  .detail-cta__buttons { flex-direction: column; }
  .benefit-list--horizontal { flex-direction: column; }
  .wa-fab { bottom: 16px; right: 16px; width: 50px; height: 50px; }
  .wa-fab svg { width: 26px; height: 26px; }
}
