/* ═══════════════════════════════════════════════════════════
   FH JURÍDICOS — ABOGADOS EN MADRID
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --rosa:     #9e4a5a;
  --rosa-dark:#7a3344;
  --rosa-light:#c8748a;
  --dorado:   #c9a96e;
  --texto:    #2d2d2d;
  --gris:     #f5f5f0;
  --gris-med: #e0e0da;
  --blanco:   #ffffff;
  --negro:    #111111;
  --header-bg:#0d0d0d;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --sombra:   0 2px 20px rgba(0,0,0,.08);
  --radio:    4px;
  --max:      1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--rosa); text-decoration: none; transition: color .2s; }
a:hover { color: var(--rosa-dark); }

/* ── CONTENEDOR ────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section    { padding: 70px 0; }
.section-sm { padding: 40px 0; }

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  background: var(--header-bg);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px;
}

.logo img { height: 70px; width: auto; filter: brightness(0) invert(1); }

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blanco);
  font-weight: 400;
  font-size: 1rem;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 16px;
  border-radius: 2px;
  transition: border-color .2s;
}
.header-phone:hover { border-color: rgba(255,255,255,.7); color: var(--blanco); }
.header-phone svg { flex-shrink: 0; }

/* ── NAV ────────────────────────────────────────────────────── */
nav.main-nav { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-list > li { position: relative; }

.nav-list > li > a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: .3px;
  transition: color .2s;
}
.nav-list > li > a:hover,
.nav-list > li.active > a { color: var(--rosa-light); }

/* Active underline */
.nav-list > li.active > a {
  border-bottom: 2px solid var(--rosa-light);
}

/* Dropdown */
.nav-list li.has-sub > a::after {
  content: ' ▾';
  font-size: .7em;
  opacity: .7;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--header-bg);
  min-width: 300px;
  border-top: 2px solid var(--rosa);
  list-style: none;
  z-index: 500;
}

.nav-list li.has-sub:hover .sub-menu { display: block; }

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  color: rgba(255,255,255,.8);
  font-size: .88rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .15s, color .15s;
}
.sub-menu li a:hover { background: rgba(255,255,255,.06); color: var(--rosa-light); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  transition: all .3s;
}

/* ── HERO / BANNER ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  color: var(--blanco);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/uploads/2025/08/slider-inicio.webp');
  background-size: cover;
  background-position: center top;
  filter: brightness(.55);
  z-index: 0;
}
.hero > .container {
  position: relative;
  z-index: 1;
  padding: 80px 20px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero p {
  font-size: 1.2rem;
  opacity: .92;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: .5px;
}
.hero .btn { margin: 0 8px 8px; }

/* ── BOTONES ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radio);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .25s;
}
.btn-primary {
  background: var(--rosa);
  color: var(--blanco);
  border-color: var(--rosa);
}
.btn-primary:hover {
  background: var(--rosa-dark);
  border-color: var(--rosa-dark);
  color: var(--blanco);
}
.btn-outline {
  background: transparent;
  color: var(--blanco);
  border-color: var(--blanco);
}
.btn-outline:hover {
  background: var(--blanco);
  color: var(--rosa);
}

/* ── SERVICIOS GRID ─────────────────────────────────────────── */
.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.servicio-card {
  background: var(--blanco);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: var(--sombra);
  border-top: 4px solid var(--rosa);
  transition: transform .25s, box-shadow .25s;
}
.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(200,116,138,.2);
}
.servicio-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--negro);
}
.servicio-card p { font-size: .95rem; color: #555; line-height: 1.65; }
.servicio-card a.leer-mas {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ── FEATURES 3-COL ─────────────────────────────────────────── */
.features {
  background: var(--blanco);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
  margin-top: 50px;
}
.feature-item { text-align: center; }
.feature-item img {
  width: 70px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.feature-item h2 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--rosa);
  font-style: italic;
}

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-strip img {
  border-radius: 8px;
  box-shadow: var(--sombra);
  width: 100%;
}
.about-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--negro);
}

/* ── PRECIOS ────────────────────────────────────────────────── */
.precios-section { background: var(--negro); color: var(--blanco); }
.precios-section h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 10px;
}
.precios-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 30px 0 20px;
  justify-content: center;
}
.precio-tab {
  padding: 10px 20px;
  border: 2px solid var(--rosa);
  border-radius: var(--radio);
  cursor: pointer;
  background: transparent;
  color: var(--rosa);
  font-weight: 700;
  font-size: .85rem;
  transition: all .2s;
}
.precio-tab.active, .precio-tab:hover {
  background: var(--rosa);
  color: var(--blanco);
}
.precio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  display: none;
}
.precio-grid.active { display: grid; }
.precio-item {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 20px;
}
.precio-item .nombre { font-weight: 700; margin-bottom: 6px; }
.precio-item .precio { color: var(--rosa); font-size: 1.1rem; font-weight: 700; }
.precio-item .desc   { font-size: .85rem; opacity: .7; margin-top: 4px; }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.post-card {
  background: var(--blanco);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: transform .25s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); }
.post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.post-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-card-date {
  font-size: .82rem;
  color: #888;
  margin-bottom: 8px;
}
.post-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
}
.post-card h3 a { color: var(--negro); }
.post-card h3 a:hover { color: var(--rosa); }
.post-card p {
  font-size: .9rem;
  color: #666;
  flex: 1;
  margin-bottom: 16px;
}
.post-card .leer-mas {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  align-self: flex-start;
}

/* ── HEADINGS ───────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--negro);
  margin-bottom: 10px;
}
.section-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
}
.section-head { margin-bottom: 0; }
.section-head .divider {
  width: 50px;
  height: 3px;
  background: var(--rosa);
  margin: 16px 0;
}

/* ── PAGE CONTENT ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #2d1a22, #5a2d40);
  color: var(--blanco);
  padding: 60px 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
}
.page-hero .breadcrumb {
  margin-top: 12px;
  font-size: .9rem;
  opacity: .8;
}
.page-hero .breadcrumb a { color: var(--blanco); opacity: .8; }

.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}
.page-content h1, .page-content h2, .page-content h3 {
  font-family: var(--font-head);
  color: var(--negro);
  margin: 32px 0 14px;
}
.page-content h2 { font-size: 1.6rem; }
.page-content h3 { font-size: 1.25rem; }
.page-content p  { margin-bottom: 18px; color: #444; }
.page-content ul, .page-content ol { margin: 0 0 18px 24px; }
.page-content li { margin-bottom: 8px; }
.page-content img { border-radius: 6px; margin: 24px 0; }
.page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.page-content table th, .page-content table td {
  padding: 12px 16px;
  border: 1px solid var(--gris-med);
  text-align: left;
}
.page-content table th { background: var(--rosa); color: var(--blanco); }
.page-content table tr:nth-child(even) { background: var(--gris); }

/* ── CONTACTO ───────────────────────────────────────────────── */
.contacto-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contacto-info h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.info-item svg { flex-shrink: 0; color: var(--rosa); margin-top: 2px; }
.info-item strong { display: block; margin-bottom: 2px; }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: .9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gris-med);
  border-radius: var(--radio);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color .2s;
  background: var(--blanco);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rosa);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert {
  padding: 14px 20px;
  border-radius: var(--radio);
  margin-bottom: 20px;
  font-weight: 700;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error   { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* ── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--rosa);
  color: var(--blanco);
  text-align: center;
  padding: 50px 20px;
}
.cta-strip h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.cta-strip p { margin-bottom: 24px; opacity: .9; }

/* ── PAGINACIÓN ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination a, .pagination span {
  padding: 8px 16px;
  border: 1.5px solid var(--gris-med);
  border-radius: var(--radio);
  font-size: .9rem;
  color: var(--texto);
  transition: all .2s;
}
.pagination a:hover, .pagination .current {
  background: var(--rosa);
  color: var(--blanco);
  border-color: var(--rosa);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--negro);
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--blanco);
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--rosa);
  display: inline-block;
}
.footer-col p  { font-size: .9rem; line-height: 1.7; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--rosa); }
.footer-logo { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
  opacity: .6;
}

/* ── LOCATION PAGE ──────────────────────────────────────────── */
.location-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 20px;
}
.location-sidebar {
  background: var(--gris);
  border-radius: 8px;
  padding: 28px;
  margin-top: 40px;
}
.location-sidebar h3 {
  font-family: var(--font-head);
  margin-bottom: 16px;
  color: var(--rosa);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-strip     { grid-template-columns: 1fr; }
  .contacto-wrap   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about-strip     { grid-template-columns: 1fr; }
  .contacto-wrap   { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  section[style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  nav.main-nav {
    display: none;
    position: fixed;
    top: 90px;
    left: 0; right: 0;
    bottom: 0;
    background: #0d0d0d;
    overflow-y: auto;
    padding: 0 0 40px;
    z-index: 999;
  }
  nav.main-nav.open { display: block; }

  .nav-list { flex-direction: column; gap: 0; }
  .nav-list > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    font-size: .95rem;
  }
  .nav-list > li > a:hover { color: var(--rosa-light); }

  /* Mega menu mobile */
  
  .nav-list li.has-sub.open 
  .nav-list li.has-sub:hover 

  
  
  

  .header-phone { font-size: .85rem; padding: 5px 10px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .precios-tabs { gap: 6px; }
  .precio-tab { font-size: .75rem; padding: 7px 10px; }
  .blog-grid { grid-template-columns: 1fr; }
  .servicios-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { min-height: 400px; }
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 40px 0; }
  .contacto-wrap { padding: 30px 16px; }
  .page-content { padding: 40px 16px; }
}

/* ── SERVICIOS FOTO GRID RESPONSIVE ────────────────────────── */
.servicios-foto-grid > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .servicios-foto-grid > div {
    grid-template-columns: 1fr !important;
  }
  .servicios-foto-grid > div > div[style*="height:360px"] {
    height: 220px !important;
  }
  .servicios-foto-grid > div > div[style*="min-height:360px"] {
    min-height: auto !important;
    padding: 36px 24px !important;
  }
}

/* ── BOTÓN WHATSAPP ─────────────────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 9999;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ── MEGA MENÚ ──────────────────────────────────────────────── */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d0d;
  border-top: 2px solid #9e4a5a;
  box-shadow: 0 10px 40px rgba(0,0,0,.5);
  z-index: 500;
  padding: 28px;
  min-width: 760px;
  grid-template-columns: repeat(4,1fr);
}
.nav-list li.has-sub:hover .mega-menu {
  display: grid;
}
.mega-col {
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.mega-col:last-child { border-right: none; }
.mega-heading {
  color: #c8748a;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.mega-col a {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: .88rem;
  padding: 6px 0;
  text-decoration: none;
  transition: color .15s;
}
.mega-col a:hover { color: #c8748a; }

@media (max-width: 900px) {
  .mega-menu { min-width: 600px; }
}

@media (max-width: 768px) {
  .mega-menu {
    display: none;
    position: static;
    transform: none;
    min-width: 100%;
    grid-template-columns: 1fr;
    padding: 0;
    box-shadow: none;
    border-top: none;
    background: #0d0d0d;
  }
  .nav-list li.has-sub:hover .mega-menu { display: none; }
  .nav-list li.has-sub.open .mega-menu { display: grid; }
  .mega-col {
    padding: 8px 20px 8px 30px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
}

/* ── FAQ OVERRIDE FINAL ─────────────────────────────────────── */
.faq-item {
  border: 1px solid #e0e0da !important;
  border-radius: 6px !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
}
.faq-question {
  background: #f5f5f0 !important;
  border-left: 4px solid #9e4a5a !important;
  padding: 16px 20px !important;
  font-weight: 700 !important;
  font-size: .98rem !important;
  color: #111 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  user-select: none !important;
}
.faq-question:hover { background: #ece8e0 !important; }
.faq-question.open  { background: #ece8e0 !important; }
.faq-icon {
  font-size: 1.3rem !important;
  color: #9e4a5a !important;
  margin-left: 12px !important;
  flex-shrink: 0 !important;
  font-style: normal !important;
}
.faq-answer {
  display: none !important;
  padding: 16px 20px !important;
  font-size: .95rem !important;
  color: #444 !important;
  line-height: 1.7 !important;
  background: #fff !important;
  border-top: 1px solid #e0e0da !important;
}
.faq-answer.open { display: block !important; }

/* ── PÁGINA ESTILO EDITORIAL ────────────────────────────────── */
.editorial-layout {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 20px 80px;
}
.editorial-layout h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--negro);
  line-height: 1.2;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--rosa);
}
.editorial-layout .intro {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  padding: 20px 24px;
  background: var(--gris);
  border-left: 4px solid var(--rosa);
  border-radius: 0 6px 6px 0;
}
.editorial-layout h2 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--rosa);
  margin: 44px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gris-med);
}
.editorial-layout p {
  font-size: 1rem;
  color: #444;
  line-height: 1.85;
  margin-bottom: 18px;
}
.editorial-layout ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}
.editorial-layout ul li {
  padding: 14px 16px 14px 44px;
  position: relative;
  border-bottom: 1px solid var(--gris-med);
  font-size: .97rem;
  color: #444;
  line-height: 1.7;
}
.editorial-layout ul li::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rosa);
}
.editorial-layout strong { color: var(--negro); }

.cta-urgente {
  background: linear-gradient(135deg, #2d1a22, #5a2d40);
  color: #fff;
  padding: 36px 32px;
  border-radius: 10px;
  margin-top: 50px;
  text-align: center;
}
.cta-urgente h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.cta-urgente p { color: rgba(255,255,255,.85); margin-bottom: 24px; }
.cta-urgente .btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── LOCATION SERVICE CARDS ─────────────────────────────────── */
.location-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0 40px;
}
.loc-service-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  border-left: 4px solid var(--rosa);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.loc-service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  color: var(--negro);
  margin-bottom: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: default;
  display: block;
}
.loc-service-card p {
  font-size: .9rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}
.loc-service-card a {
  display: inline-block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--rosa);
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ── LOCATION CONTENT FONT FIX ──────────────────────────────── */
#locContent,
#locContent * {
  font-family: 'Lato', sans-serif !important;
}
#locContent h2,
#locContent h3,
#locContent .loc-service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}
#locContent p {
  font-size: 1rem !important;
  line-height: 1.8 !important;
  color: #444 !important;
}
