/* =============================================
   VARIABLES
   ============================================= */
:root {
  --bg-main:      #FAF6F0;
  --bg-cream:     #F2EBDD;
  --text-dark:    #2A2A28;
  --text-medium:  #4A4A48;
  --text-light:   #6B6863;
  --accent:       #87695A;
  --accent-soft:  #C4B097;
  --border:       #D9CDB7;
  --bg-dark:      #2A2A28;
  --bg-darker:    #1F1F1D;

  /* Aliases backwards-compat para páginas con estilos inline */
  --primary-color:     #87695A;
  --primary-light:     #C4B097;
  --secondary-color:   #2A2A28;
  --background-light:  #F2EBDD;
  --text-color:        #2A2A28;

  --font-heading: 'Fraunces', serif;
  --font-body:    'Inter', sans-serif;
}

/* =============================================
   ANIMACIONES
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1);    }
}
@keyframes marqueeScroll {
  from { transform: translateX(0);    }
  to   { transform: translateX(-50%); }
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-dark);
}

img { display: block; max-width: 100%; }

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.section-padding { padding: 5rem 0; }
.text-center     { text-align: center; }
.section-alt     { background-color: var(--bg-cream); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(217, 205, 183, 0.3);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.logo span { display: none; }

/* Desktop links */
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-medium);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.3s;
}

.nav-links a:hover { color: var(--accent); }

.nav-phone {
  color: var(--accent) !important;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-toggle { cursor: default; white-space: nowrap; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-main);
  box-shadow: 0 8px 30px rgba(42, 42, 40, 0.12);
  border-radius: 4px;
  border-top: 2px solid var(--accent);
  min-width: 220px;
  z-index: 200;
  padding: 0.4rem 0;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  white-space: nowrap;
  color: var(--text-medium);
  font-size: 0.84rem;
  border-bottom: 1px solid rgba(217, 205, 183, 0.4);
}

.nav-dropdown-menu a:last-child { border-bottom: none; }

.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: var(--bg-cream);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: background 0.3s;
}

.nav-hamburger span:nth-child(1) { width: 18px; }
.nav-hamburger span:nth-child(2) { width: 14px; }
.nav-hamburger span:nth-child(3) { width: 18px; }

.nav-hamburger:hover span { background: var(--accent); }

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg-main);
  border-top: 1px solid var(--border);
  padding: 1.25rem 5%;
}

.nav-mobile.is-open { display: flex; }

.nav-mobile a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover      { color: var(--accent); }

/* Show desktop nav on ≥ 768 */
@media (min-width: 768px) {
  .nav-links    { display: flex; }
  .nav-hamburger { display: none; }
}

/* =============================================
   BOTONES
   ============================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Primario: fondo oscuro */
.btn-primary {
  padding: 1.05rem 1.5rem;
  background: var(--text-dark);
  color: var(--bg-main);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.btn-primary:hover::after { background-position: 200% center; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(42, 42, 40, 0.2);
  color: var(--bg-main);
}

.btn-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .btn-arrow { transform: translateX(5px); }

/* Secundario: texto con subrayado */
.btn-secondary {
  padding: 0.2rem 0;
  background: transparent;
  color: var(--text-dark);
  border-bottom: 1px solid var(--text-dark);
  border-radius: 0;
}

.btn-secondary:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* Variantes para sección oscura */
.btn-primary-light {
  padding: 1.05rem 1.5rem;
  background: var(--bg-main);
  color: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.btn-primary-light::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -200% center;
  transition: background-position 0.6s ease;
  pointer-events: none;
}

.btn-primary-light:hover::after { background-position: 200% center; }

.btn-primary-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  color: var(--text-dark);
}

.btn-secondary-light {
  display: inline-block;
  padding: 0.2rem 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(250, 246, 240, 0.7);
  border-bottom: 1px solid rgba(250, 246, 240, 0.35);
  transition: color 0.3s, border-color 0.3s;
}

.btn-secondary-light:hover {
  color: var(--bg-main);
  border-bottom-color: var(--bg-main);
}

/* =============================================
   WHATSAPP FLOTANTE
   ============================================= */
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.whatsapp-float:hover { transform: scale(1.08); }

/* =============================================
   HERO — index.html
   ============================================= */
.hero {
  background: var(--bg-main);
  padding: 3.5rem 0 2.5rem;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.hero-text { order: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  animation: fadeUp 1s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 5px;
  text-decoration-thickness: 1.5px;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 2rem;
  animation: fadeUp 1s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.hero-buttons .btn-primary  { animation: fadeUp 1s 0.4s  cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-buttons .btn-secondary { animation: fadeUp 1s 0.5s  cubic-bezier(0.16, 1, 0.3, 1) both; }

/* Imagen hero */
.hero-image-wrap {
  order: 2;
  position: relative;
  padding: 0 1.25rem;
  animation: scaleIn 1.2s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-image-tag {
  position: absolute;
  top: 1.25rem;
  left: 2.5rem;
  background: rgba(250, 246, 240, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
}

@media (min-width: 768px) {
  .hero           { padding: 5rem 0 4rem; }
  .hero-inner     { flex-direction: row; align-items: center; gap: 4rem; }
  .hero-text      { order: 1; flex: 1; }
  .hero-image-wrap{ order: 2; flex: 0 0 42%; padding: 0; }
  .hero h1        { font-size: 4rem; }
  .hero-buttons   { flex-direction: row; align-items: center; }
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-section {
  background: var(--bg-dark);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  font-weight: 300;
  color: var(--accent-soft);
  white-space: nowrap;
  padding: 0 1.5rem;
}

.marquee-item::after {
  content: '·';
  margin-left: 1.5rem;
  color: var(--accent);
}

/* =============================================
   PULL QUOTE
   ============================================= */
.pull-quote-section {
  background: var(--bg-main);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.pull-quote-mark {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--accent-soft);
  display: block;
  margin-bottom: 0.25rem;
  user-select: none;
}

.pull-quote-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-dark);
  max-width: 640px;
  margin: 0 auto 1.25rem;
  line-height: 1.4;
}

.pull-quote-author {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}

@media (min-width: 768px) {
  .pull-quote-text { font-size: 1.9rem; }
}

/* =============================================
   ESPECIALIDADES — menú vertical
   ============================================= */
.services-section {
  background: var(--bg-cream);
  padding: 5rem 0;
}

.services-header {
  margin-bottom: 2.5rem;
}

.services-header h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

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

@media (min-width: 768px) {
  .services-header h2 { font-size: 2.5rem; }
}

.services-menu { list-style: none; }

.services-menu li { border-top: 1px solid var(--border); }
.services-menu li:last-child { border-bottom: 1px solid var(--border); }

.services-menu a {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  text-decoration: none;
  color: var(--text-dark);
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              color        0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-menu a::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-menu a:hover::before  { transform: scaleX(1); }
.services-menu a:hover          { padding-left: 0.5rem; color: var(--accent); }

.services-menu-left { min-width: 0; }

.services-menu-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 300;
  display: block;
}

.services-menu-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin-top: 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.services-menu-arrow {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-menu a:hover .services-menu-arrow { transform: translateX(8px); }

/* =============================================
   SOBRE MÍ
   ============================================= */
.about-section {
  background: var(--bg-main);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.about-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text {
  padding: 3rem 5%;
}

.about-text h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

/* Drop cap */
.about-text .drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  float: left;
  line-height: 0.82;
  margin-right: 0.1em;
  margin-top: 0.1em;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Credenciales en grid */
.credentials {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 88px 1fr;
}

.credentials-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.7rem 0;
  border-top: 1px solid var(--border);
}

.credentials-value {
  font-family: var(--font-body);
  font-size: 0.84rem;
  color: var(--text-dark);
  padding: 0.7rem 0 0.7rem 1rem;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.credentials > *:nth-child(-n+2) { border-top: none; }

/* about-list (backwards compat) */
.about-list { list-style: none; margin-top: 1.5rem; }
.about-list li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-medium);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .about-image { aspect-ratio: unset; }

  .about-text {
    padding: 4rem 3.5rem;
  }

  .about-text h2 { font-size: 2.5rem; }
}

/* =============================================
   OPINIONES
   ============================================= */
.reviews-section {
  background: var(--bg-cream);
  padding: 5rem 0;
}

.reviews-section h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.review-card {
  background: var(--bg-main);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover::before { transform: scaleY(1); }
.review-card:hover         { transform: translateY(-3px); }

.review-card p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-card footer {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: normal;
}

.review-card footer span { color: var(--accent-soft); }

@media (min-width: 768px) {
  .reviews-section h2  { font-size: 2.5rem; }
  .reviews-grid        { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   DIFERENCIADORES ("¿Por qué elegir?")
   ============================================= */
.differentiators-section {
  background: var(--bg-main);
  padding: 5rem 0;
}

.differentiators-section h2 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.differentiators-section .subtitle-section {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .differentiators-section h2 { font-size: 2.5rem; }
}

/* =============================================
   CARDS (blog, diferenciadores)
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-cream);
  padding: 1.75rem;
  border-top: 2px solid var(--border);
  transition: border-top-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform         0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-top-color: var(--accent);
  transform: translateY(-3px);
}

.service-icon { display: none; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex-grow: 1;
}

/* =============================================
   CTA SECCIÓN OSCURA
   ============================================= */
.cta-dark {
  background: var(--bg-dark);
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.cta-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.25rem;
}

.cta-eyebrow::before,
.cta-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.cta-dark h2 {
  font-size: 2.2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--bg-main);
  margin-bottom: 1.25rem;
}

.cta-dark h2 em {
  font-style: italic;
  color: var(--accent-soft);
}

.cta-dark p {
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.65);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

@media (min-width: 540px) {
  .cta-buttons { flex-direction: row; justify-content: center; }
  .cta-dark h2 { font-size: 2.8rem; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-darker);
  color: var(--bg-main);
  padding: 3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 0 0 2.5rem;
  border-bottom: 1px solid rgba(217, 205, 183, 0.12);
}

.footer h2 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--bg-main);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.footer-phone {
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent-soft);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color 0.3s;
}

.footer-phone:hover { color: var(--bg-main); }

.contact-details { margin-top: 0; }

.contact-details p {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.5);
  line-height: 1.65;
  margin-bottom: 0.6rem;
}

.contact-details a {
  color: rgba(250, 246, 240, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-details a:hover { color: var(--accent-soft); }

.footer-map {
  border-radius: 4px;
  overflow: hidden;
}

.footer-map iframe { display: block; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.76rem;
  color: rgba(250, 246, 240, 0.3);
}

.footer-bottom a {
  color: rgba(250, 246, 240, 0.3);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--accent-soft); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   HERO DE PÁGINAS SECUNDARIAS
   ============================================= */
.page-hero {
  background: var(--bg-cream);
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 2.8rem; }
}

/* =============================================
   CONTENIDO ARTÍCULOS / PÁGINAS DE SERVICIO
   ============================================= */

/* Compatibilidad con inline styles de artículos/servicios */
/* h1, h2, h3 con color: var(--secondary-color) → text-dark ✓ */
/* color: var(--primary-color) → accent ✓               */
/* background-color: var(--background-light) → bg-cream ✓ */

/* CTA box dentro de artículos */
.cta-box {
  background: var(--bg-cream);
  padding: 2.5rem;
  border-left: 3px solid var(--accent);
  margin-top: 3.5rem;
}

.cta-box h3 {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.cta-box p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* Otras especialidades */
.other-services {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.other-services h2 {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
}

.other-services-grid a {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--bg-cream);
  border-left: 3px solid var(--accent-soft);
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.875rem;
  transition: border-left-color 0.3s, color 0.3s;
}

.other-services-grid a:hover {
  border-left-color: var(--accent);
  color: var(--accent);
}

/* FAQ acordeón */
details {
  background: var(--bg-cream);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--accent);
}

summary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  list-style: none;
  padding: 0.4rem 0;
  transition: color 0.3s;
}

summary::-webkit-details-marker { display: none; }

summary::before {
  content: '+ ';
  color: var(--accent);
  font-weight: 400;
}

details[open] summary::before { content: '− '; }

summary:hover { color: var(--accent); }

details p {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.7;
  padding-left: 1rem;
  border-left: 1px solid var(--border);
}

/* =============================================
   RESPONSIVE EXTRAS
   ============================================= */
@media (max-width: 767px) {
  .section-padding        { padding: 3.5rem 0; }
  .pull-quote-text        { font-size: 1.2rem; }
  .services-menu-desc     { display: none; }
  .cta-dark               { padding: 3.5rem 1.25rem; }
}
