/* =============================================
   VIBRAS × MANDALA — pages.css
   Estilos compartidos para páginas internas
   ============================================= */

/* ---- Hero creativo para páginas de marca (Vibras / Mandala) ---- */
.brand-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2rem 5rem;
}

.brand-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-hero-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.brand-hero-deco svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.brand-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.brand-hero-logo {
  height: 100px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin: 0 auto 2rem;
  display: block;
  mix-blend-mode: screen;
}

.brand-hero-logo--square {
  height: 120px;
  max-width: 130px;
}

.brand-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.brand-hero-headline em {
  font-style: italic;
  display: block;
}

.brand-hero-desc {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Page hero (inner pages) ---- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-hero-bg-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(85, 35, 89, 0.28) 0%,
    rgba(13, 11, 18, 0.12) 50%,
    rgba(13, 24, 48, 0.22) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-bg-video { visibility: hidden; }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(13,11,18,0.88) 0%,
    rgba(13,11,18,0.38) 50%,
    rgba(13,11,18,0.08) 100%
  );
  z-index: 1;
}

/* Variante con video: más alta y gradiente más ligero */
.page-hero--video {
  min-height: 75vh;
}

.page-hero--video .page-hero-overlay {
  background:
    linear-gradient(to top,  rgba(13,11,18,0.92) 0%, rgba(13,11,18,0.55) 40%, rgba(13,11,18,0.18) 100%),
    linear-gradient(to bottom, rgba(13,11,18,0.35) 0%, transparent 35%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-hero-eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

/* Logo SVG en hero de páginas de marca */
.page-hero-logo {
  height: 100px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  mix-blend-mode: screen;
}

.page-hero-logo--square {
  height: 100px;
  max-width: 120px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.95;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-on-dark);
  max-width: 540px;
  line-height: 1.7;
}

/* ---- Page section ---- */
.page-section {
  padding: 6rem 0;
}

.page-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

.page-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.page-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  color: var(--text-on-dark);
}

.breadcrumb a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  transition: color 0.25s;
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 10px;
}

/* ---- Servicios page ---- */
.servicios-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.servicio-page-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.servicio-page-card:hover {
  border-color: rgba(13,11,18,0.14);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
}

.servicio-page-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.servicio-page-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg3);
}

.servicio-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.servicio-page-card:hover .servicio-page-card-img img {
  transform: scale(1.06);
}

.servicio-page-card-body {
  padding: 1.75rem;
}

.servicio-page-card-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.servicio-page-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.65rem;
  line-height: 1.2;
}

.servicio-page-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Íconos de sedes */
.sedes-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.sede-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(13,11,18,0.05);
  border: 1px solid rgba(13,11,18,0.1);
  color: var(--text-muted);
}

.sede-icon-badge svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.servicio-page-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity 0.25s, color 0.25s;
}

.servicio-page-card:hover .servicio-page-cta { opacity: 1; color: var(--text-primary); }

/* ---- Single service page ---- */
.servicio-hero {
  min-height: 75vh;
}

.servicio-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.servicio-detail-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.servicio-stat {
  background: var(--bg2);
  padding: 1.25rem 1rem;
  text-align: center;
}

.servicio-stat-value,
.servicio-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.servicio-stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.servicio-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.servicio-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.servicio-includes li::before {
  content: '✓';
  color: var(--v-violet);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.mandala-includes li::before { color: var(--m-sky); }

/* ---- Photo collage ---- */
.collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

.collage-cell {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
}

.collage-cell:first-child {
  grid-row: span 2;
}

.collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collage-cell:hover img { transform: scale(1.06); }

.collage-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ---- Cotizador ---- */
.cotizador {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}

.cotizador-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cotizador-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cotizador-field {
  margin-bottom: 1.5rem;
}

.cotizador-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.cotizador-input,
.cotizador-select {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(13,11,18,0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.2s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.cotizador-input:focus-visible,
.cotizador-select:focus-visible {
  border-color: var(--v-slate);
  box-shadow: 0 0 0 3px rgba(105,105,204,0.18);
}

.cotizador-select option { background: var(--white); }

.cotizador-input:focus,
.cotizador-select:focus {
  border-color: rgba(13,11,18,0.35);
}

.cotizador-counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cotizador-counter-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(13,11,18,0.15);
  background: transparent;
  color: var(--text-primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.cotizador-counter-btn:hover {
  background: var(--surface-tint);
  border-color: rgba(13,11,18,0.35);
}

.cotizador-counter-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 32px;
  text-align: center;
}

.cotizador-counter-label {
  font-size: 12px;
  color: var(--text-muted);
}

.btn-cotizar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  background: #25D366;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
  margin-top: 2rem;
  cursor: pointer;
}

.btn-cotizar:hover {
  background: #1aab53;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37,211,102,0.3);
}

.cotizador-note {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.6;
}

/* ---- Legal: términos y hoja de consentimiento ---- */
.cotizador-legal {
  margin-top: 1.25rem;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cotizador-check-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--text-muted);
}

.cotizador-check-row input[type="checkbox"] {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--v-dark);
  cursor: pointer;
}

.cotizador-check-row a {
  color: var(--text-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cotizador-legal-error {
  display: none;
  font-size: 11px;
  color: #c0392b;
  margin-top: 0.1rem;
}

.cotizador-legal-error.visible { display: block; }

/* ---- Métodos de pago ---- */
.cotizador-payment {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(13,11,18,0.08);
  text-align: center;
}

.cotizador-payment-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.cotizador-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.cotizador-payment-icons img {
  height: 19px;
  width: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.cotizador-payment-icons img:hover { opacity: 1; }

/* ---- Brand page (vibras/mandala) ---- */
.brand-page-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-page-about-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.brand-about-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.brand-value {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
}

.brand-value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.brand-value-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card {
  text-align: center;
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Collage slider (brand pages) */
.collage-slider {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 1rem;
}

.collage-slider::-webkit-scrollbar { display: none; }

.collage-slide {
  flex: 0 0 340px;
  height: 460px;
  border-radius: 20px;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.collage-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.collage-slide:hover img { transform: scale(1.04); }

.collage-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ---- Inner pages footer (compact) ---- */
.footer-inner {
  background: linear-gradient(160deg, #DDB8FF 0%, #E8C8FF 50%, #F5E0FF 100%);
  border-top: 1px solid rgba(255,255,255,0.5);
  padding: 1.75rem 48px;
  position: relative;
}

.footer-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--v-dark) 0%, var(--v-slate) 50%, var(--m-royal) 100%);
  opacity: 0.35;
}

.footer-inner-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-inner-copy {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-inner-copy a {
  color: inherit;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.footer-inner-copy a:hover { opacity: 1; }

.footer-inner-links {
  display: flex;
  gap: 1.5rem;
}

.footer-inner-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
}

.footer-inner-links a:hover { color: var(--dark); }

/* ---- CTA inline en servicios (¿No sabes cuál elegir?) ---- */
.servicios-cta-band {
  margin-top: 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, rgba(219,148,242,0.15) 0%, rgba(199,166,254,0.12) 100%);
  border: 1.5px solid rgba(219,148,242,0.35);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.servicios-cta-band-text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 900;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
}

.servicios-cta-band-text p {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 420px;
}

/* ---- Collage grid (service pages 5-cell masonry) ---- */
.collage-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}

.collage-grid-item {
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.collage-grid-item .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.collage-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.collage-grid-item:hover img { transform: scale(1.05); }

.collage-grid-item.collage-main {
  grid-row: span 2;
}

/* ---- Brand page about grid ---- */
.brand-page-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.brand-about-text { }

.brand-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}

.brand-value {
  padding: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.brand-value-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.brand-value-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}

.brand-value-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---- Team card bio ---- */
.team-card-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.4rem;
}

/* ---- Slider wrap with arrows ---- */
.collage-slider-wrap {
  position: relative;
  padding: 0 48px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-tint);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}

.slider-btn:hover { background: rgba(13,11,18,0.12); }
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* ---- Brand hero tagline ---- */
.brand-tagline-hero {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ---- Contacto page ---- */
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.canal-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.canal-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text-primary);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.canal-item:hover {
  background: var(--bg2);
  border-color: rgba(85,35,89,0.2);
  transform: translateX(4px);
}

.canal-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v-slate);
}

.canal-text { flex: 1; }

.canal-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.canal-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.canal-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.canal-arrow {
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: color 0.2s, transform 0.2s;
}

.canal-item:hover .canal-arrow {
  color: var(--v-dark);
  transform: translateX(3px);
}

.contacto-field {
  margin-bottom: 1.25rem;
}

.contacto-field label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

/* ---- Team group (foto grupal + frase) ---- */
.team-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.team-group-photo {
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg2);
  border: 1px solid var(--border);
}

.team-group-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.team-group-photo:hover img { transform: scale(1.03); }

.team-group-photo .img-placeholder {
  flex-direction: column;
  gap: 0.5rem;
}

.team-group-phrase {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  line-height: 1.4;
  opacity: 0.9;
}

/* ---- Sedes grid en contacto ---- */
.contacto-sedes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.contacto-sede-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.contacto-sede-pin {
  font-size: 1rem;
  line-height: 1.4;
}

.contacto-sede-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contacto-sede-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.contacto-sede-item span {
  font-size: 11px;
  color: var(--text-muted);
}

/* ---- Badge en servicios: más pequeño y mejor espaciado ---- */
.servicio-page-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 0.75rem;
}

.servicio-page-card-badges .badge {
  font-size: 8px;
  padding: 2px 8px;
  letter-spacing: 0.12em;
}

/* ---- Footer logo inner ---- */
.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--v-mauve);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .servicios-page-grid { grid-template-columns: repeat(2, 1fr); }
  .servicio-detail-grid { grid-template-columns: 1fr; }
  .brand-page-about { grid-template-columns: 1fr; gap: 3rem; }
  .brand-values { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .collage-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
  .collage-grid-item.collage-main { grid-row: span 1; }
  .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contacto-sedes-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section-inner { padding: 0 32px; }
  .page-hero-content { padding: 0 32px; }
  .footer-inner { padding: 1.5rem 32px; }
  .cotizador { position: static; }
  .collage-slider-wrap { padding: 0 40px; }
}

@media (min-width: 640px) and (max-width: 767px) {
  .page-section-inner { padding: 0 28px; }
  .page-hero-content { padding: 0 28px; }

  .servicios-page-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contacto-sedes-grid { grid-template-columns: 1fr; }

  .collage-slider .collage-slide { flex: 0 0 300px; height: 400px; }
  .collage-slider-wrap { padding: 0 36px; }
}

@media (max-width: 639px) {
  /* Video visible en móvil — encuadre mejorado para pantalla portrait */
  .page-hero-bg-video { display: block !important; object-position: center 25%; }

  /* Hero en móvil */
  .page-hero { min-height: 75vh; }
  .page-hero--video { min-height: 70vh; }

  .servicios-page-grid { grid-template-columns: 1fr; }
  .brand-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .page-section-inner { padding: 0 20px; }
  .page-hero-content { padding: 0 20px; }
  .collage-slider .collage-slide { flex: 0 0 280px; height: 380px; }
  .collage-slider-wrap { padding: 0 32px; }
  .servicio-detail-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { padding: 1.5rem 20px; }
  .footer-inner-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .servicios-cta-band { flex-direction: column; align-items: flex-start; }

  .collage-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 140px 140px; }
  .collage-grid-item.collage-main { grid-row: span 2; }
  .collage-grid-item { height: auto; }

  .footer-inner { padding-bottom: 5rem; }
}
