/**
 * Dirección visual: Materia Dorada — Edición Prestige.
 * Negro ónix + Oro aurum + Blanco hueso.
 * Lujo editorial contemporáneo, tipografía refinada, layout 100% responsive.
 */

:root {
  --ink: #070707;
  --ink-soft: #0e0f0f;
  --ink-muted: #161717;
  --paper: #f7f5ef;
  --paper-deep: #ebe7dc;
  --gold: #c89d3c;
  --gold-light: #f3d678;
  --gold-bright: #ffd966;
  --gold-deep: #8a641d;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.15);
  --line-light: rgba(7, 7, 7, 0.14);
  --text-muted: #a9aaa6;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-lg: 0 28px 75px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

::selection {
  color: var(--ink);
  background: var(--gold-light);
}

/* Accessibility Skip Link */
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-170%);
  padding: 0.75rem 1rem;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Site Loader */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  transition: transform 800ms var(--ease-in-out), visibility 800ms;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loader-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
}

.loader-mark {
  position: relative;
  width: min(280px, 75vw);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(243, 214, 120, 0.7);
  border-bottom: 1px solid rgba(243, 214, 120, 0.7);
  font-size: clamp(0.7rem, 1.2vw, 0.85rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-align: center;
  text-transform: uppercase;
}

.loader-mark::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--gold-light);
  content: "";
  animation: load-line 1.15s var(--ease-in-out) infinite;
}

body.ready .site-loader {
  visibility: hidden;
  transform: translateY(-100%);
}

@keyframes load-line {
  50% {
    transform: translateX(300%);
  }
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition: background-color 220ms var(--ease-out), border-color 220ms var(--ease-out), padding 220ms var(--ease-out), color 220ms var(--ease-out);
}

.site-header.is-scrolled {
  border-color: var(--line-light);
  background: rgba(247, 245, 239, 0.96);
  color: var(--ink);
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, calc(100% - 3rem));
  height: 84px;
  margin: 0 auto;
  transition: height 220ms var(--ease-out);
}

.is-scrolled .nav-shell {
  height: 70px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-symbol-box {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  padding: 3px;
  border-radius: 6px;
  background: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.brand-symbol {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-name span {
  margin-top: 0.22rem;
  color: var(--gold-light);
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.is-scrolled .brand-name span {
  color: var(--gold-deep);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.6vw, 2rem);
}

.nav-links a {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-links a.nav-highlight {
  color: var(--gold-light);
}

.is-scrolled .nav-links a.nav-highlight {
  color: var(--gold-deep);
}

.nav-links a::after {
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-action {
  margin-left: 1.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 200ms var(--ease-out), opacity 200ms var(--ease-out);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms var(--ease-out), background 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 160ms var(--ease-out), box-shadow 180ms var(--ease-out);
}

.button:active {
  transform: scale(0.97);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.faq-button:focus-visible,
.form-control:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

.button--gold {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 4px 15px rgba(243, 214, 120, 0.3);
}

.button--gold:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.button--line {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(7, 7, 7, 0.4);
  backdrop-filter: blur(4px);
}

.button--line:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.button--large {
  padding: 1.1rem 2.2rem;
  font-size: 0.78rem;
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: min(920px, 100vh);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.45;
  filter: contrast(1.05) brightness(0.85);
  animation: hero-image-in 1.35s 180ms var(--ease-out) both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.85) 45%, rgba(7, 7, 7, 0.5) 80%, rgba(7, 7, 7, 0.3) 100%),
              linear-gradient(0deg, rgba(7,7,7,0.8) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: min(1400px, calc(100% - 3rem));
  padding: 10.5rem 0 8rem;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: rgba(243, 214, 120, 0.12);
  border: 1px solid rgba(243, 214, 120, 0.35);
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
}

.badge-gold-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 10px var(--gold-light);
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6.5vw, 6.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.hero h1 em {
  color: var(--gold-light);
  font-style: italic;
  font-weight: 600;
}

.hero-copy {
  max-width: 580px;
  margin: 2rem 0 2.2rem;
  color: #deded9;
  font-size: clamp(0.95rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-rail {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1400px) / 2));
  bottom: 3rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #bdbdb6;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-rail::before {
  width: 1px;
  height: 60px;
  background: var(--gold-light);
  content: "";
}

.hero-proof {
  margin-top: 3.5rem;
  display: inline-flex;
  gap: 2rem;
  align-items: center;
  padding: 1.1rem 1.6rem;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: rgba(7, 7, 7, 0.55);
  backdrop-filter: blur(12px);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.proof-item strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
}

.proof-item span {
  max-width: 140px;
  color: #d5d4ce;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 35px;
  background: var(--line-dark);
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
  to {
    opacity: 0.45;
    transform: scale(1);
  }
}

/* Chapters & Layout Sections */
.chapter {
  position: relative;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.chapter-shell {
  width: min(1280px, calc(100% - 3rem));
  margin: auto;
}

.chapter-index {
  position: absolute;
  top: 4rem;
  right: max(1.5rem, calc((100vw - 1400px) / 2));
  color: rgba(200, 157, 60, 0.18);
  font-family: var(--serif);
  font-size: clamp(5rem, 11vw, 11rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.7;
  pointer-events: none;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.2rem;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 36px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow--dark {
  color: var(--gold-deep);
}

.section-title {
  max-width: 650px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.section-title em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 500;
}

.section-intro {
  max-width: 600px;
  margin: 0 0 1rem;
  color: #3b3935;
  font-size: 1.08rem;
  line-height: 1.8;
}

.section-subcopy {
  max-width: 580px;
  margin: 0;
  color: #64625c;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Firm Media Box (Photo 1) */
.firm-media-box {
  margin-top: 4rem;
}

.firm-photo-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 520px;
}

.firm-photo {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9) contrast(1.05);
}

.firm-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 2.5rem;
  background: linear-gradient(0deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.4) 70%, transparent 100%);
  color: var(--paper);
}

.caption-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.firm-photo-caption p {
  margin: 0;
  font-size: 0.95rem;
  color: #deded9;
}

/* Principles Grid */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(4rem, 7vw, 6rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle {
  min-height: 200px;
  padding: 2.2rem 2rem 2rem 0;
}

.principle + .principle {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.principle span {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.principle h3 {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.principle p {
  max-width: 300px;
  margin: 0;
  color: #64625c;
  font-size: 0.85rem;
  line-height: 1.7;
}

/* SECCIÓN URBANISMO - REDISEÑO PROFESIONAL CON SVG Y ENLACES */
.urban-section {
  background: var(--ink);
  color: var(--paper);
}

.urban-section .chapter-index {
  color: rgba(243, 214, 120, 0.12);
}

.section-head-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 4.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.gold-pill-tag {
  display: inline-block;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  background: rgba(243, 214, 120, 0.12);
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.urban-section .section-title em {
  color: var(--gold-light);
}

.urban-section .section-intro {
  color: #b5b6b0;
  margin-top: 1rem;
}

.urban-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.2rem;
}

.urban-card {
  position: relative;
  padding: 3rem 2.5rem;
  border-radius: 10px;
  background: var(--ink-soft);
  border: 1px solid rgba(243, 214, 120, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 300ms var(--ease-out), border-color 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  display: flex;
  flex-direction: column;
}

.urban-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 45px rgba(243, 214, 120, 0.15);
}

.urban-card--featured {
  border-color: var(--gold-light);
  background: linear-gradient(145deg, #141515 0%, #0a0a0a 100%);
}

.urban-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urban-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.urban-card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: rgba(243, 214, 120, 0.1);
  border: 1px solid rgba(243, 214, 120, 0.35);
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transition: background 250ms var(--ease-out), transform 250ms var(--ease-out);
}

.urban-card:hover .urban-card-icon-box {
  background: var(--gold-light);
  color: var(--ink);
  transform: scale(1.05);
}

.urban-svg-icon {
  width: 30px;
  height: 30px;
  stroke: currentColor;
}

.urban-card-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: rgba(243, 214, 120, 0.35);
  font-weight: 600;
}

.urban-card h3 {
  margin: 0 0 0.8rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
}

.urban-card p {
  color: #a8a9a3;
  font-size: 0.9rem;
  margin: 0 0 1.4rem;
  line-height: 1.6;
}

.urban-card-list {
  margin: 0 0 2.2rem;
  padding-left: 1.2rem;
  color: #deded9;
  font-size: 0.86rem;
  line-height: 1.75;
  flex-grow: 1;
}

.urban-card-list li {
  margin-bottom: 0.45rem;
}

.urban-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(243, 214, 120, 0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.urban-card-btn:hover {
  background: var(--gold-light);
  color: var(--ink);
  border-color: var(--gold-light);
}

.btn-arrow {
  font-size: 1rem;
  transition: transform 200ms var(--ease-out);
}

.urban-card-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.urban-banner {
  margin-top: 4rem;
  padding: 2.8rem 3.2rem;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(200, 157, 60, 0.18) 0%, rgba(14, 15, 15, 0.95) 100%);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.urban-banner-content h3 {
  margin: 0 0 0.4rem;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.urban-banner-content p {
  margin: 0;
  color: #c9c9c3;
  font-size: 0.92rem;
}

/* SECCIÓN LITIGIOS & GESTIÓN NOTARIAL */
.litigation-section {
  background: var(--paper-deep);
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.split-photo {
  position: relative;
  height: 100%;
  min-height: 540px;
  overflow: hidden;
}

.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease-out);
}

.split-feature:hover .split-photo img {
  transform: scale(1.04);
}

.photo-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  padding: 1.25rem 1.6rem;
  border-radius: 8px;
  background: rgba(7, 7, 7, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid var(--line-dark);
}

.photo-badge span {
  display: block;
  color: var(--gold-light);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.photo-badge strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
}

.split-content {
  padding: 4rem 4rem 4rem 0;
}

.split-content p {
  color: #4a4843;
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 1.5rem 0 2rem;
}

.split-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}

.split-list li {
  position: relative;
  padding-left: 1.5rem;
  color: #3b3934;
  font-size: 0.86rem;
  line-height: 1.65;
}

.split-list li::before {
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-deep);
  content: "";
}

.split-list li strong {
  color: var(--ink);
}

/* Services Overview Chapter */
.services {
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.services .chapter-index {
  color: rgba(243, 214, 120, 0.12);
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: end;
  padding-bottom: 4rem;
}

.services .section-title em {
  color: var(--gold-light);
}

.services-copy {
  max-width: 500px;
  margin: 0;
  color: #bfc0bb;
  font-size: 0.95rem;
  line-height: 1.8;
}

.service-list {
  margin: 0;
  border-top: 1px solid var(--line-dark);
}

.service-item {
  position: relative;
  display: grid;
  grid-template-columns: 82px minmax(220px, 0.65fr) minmax(260px, 1fr) 38px;
  gap: 1.5rem;
  align-items: center;
  min-height: 135px;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line-dark);
  transition: padding-left 220ms var(--ease-out);
}

.service-item::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #121313;
  content: "";
  transition: width 350ms var(--ease-out);
}

.service-item > * {
  position: relative;
  z-index: 1;
}

.service-item:hover {
  padding-left: 1.2rem;
}

.service-item:hover::before {
  width: 100%;
}

.service-number {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
  line-height: 1;
}

.service-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.service-item p {
  max-width: 480px;
  margin: 0;
  color: #b1b2ad;
  font-size: 0.85rem;
  line-height: 1.7;
}

.service-arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(243, 214, 120, 0.6);
  color: var(--gold-light);
  font-size: 0.95rem;
  transition: transform 180ms var(--ease-out), background 180ms var(--ease-out), color 180ms var(--ease-out);
}

.service-item:hover .service-arrow {
  color: var(--ink);
  background: var(--gold-light);
  transform: rotate(45deg);
}

/* NUEVA SECCIÓN: ZONA DE RESERVAS (SISTEMA DE AGENDAMIENTO EN LÍNEA) */
.reservation-section {
  background: var(--ink-soft);
  color: var(--paper);
}

.reservation-section .chapter-index {
  color: rgba(243, 214, 120, 0.12);
}

.reservation-box {
  padding: 4rem 3.5rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #101111 0%, #080808 100%);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
}

.reservation-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.reservation-info .section-title em {
  color: var(--gold-light);
}

.reservation-copy {
  color: #b5b6b0;
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 1.2rem 0 2.2rem;
}

.reservation-features {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.res-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.res-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 10px;
  background: rgba(243, 214, 120, 0.12);
  border: 1px solid rgba(243, 214, 120, 0.35);
  color: var(--gold-light);
  display: grid;
  place-items: center;
}

.res-feature h4 {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
}

.res-feature p {
  margin: 0;
  color: #9d9e98;
  font-size: 0.85rem;
  line-height: 1.6;
}

.reservation-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
}

.reservation-url-note {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.reservation-url-note strong {
  color: var(--gold-light);
}

.reservation-preview-card {
  position: relative;
  padding: 3.2rem 2.5rem;
  border-radius: 12px;
  background: var(--ink);
  border: 1px solid var(--gold);
  text-align: center;
  box-shadow: 0 15px 35px rgba(200, 157, 60, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preview-badge {
  position: absolute;
  top: -12px;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.preview-icon-container {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(243, 214, 120, 0.12);
  border: 1px solid rgba(243, 214, 120, 0.35);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
}

.reservation-preview-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  margin: 0 0 0.8rem;
  color: var(--white);
}

.reservation-preview-card p {
  color: #adada7;
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
}

.preview-divider {
  width: 80%;
  height: 1px;
  background: var(--line-dark);
  margin-bottom: 1.5rem;
}

.preview-link-btn {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms var(--ease-out);
}

.preview-link-btn:hover {
  color: var(--white);
}

/* Method Chapter */
.method {
  background: var(--paper);
}

.method-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 5rem;
}

.method-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.method-copy {
  margin: 1.5rem 0 0;
  color: #625f58;
  font-size: 0.95rem;
  line-height: 1.8;
}

.method-list {
  border-top: 1px solid var(--line-light);
}

.method-item {
  display: grid;
  grid-template-columns: 80px 1.2fr 1fr;
  gap: 1.5rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.method-item span {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.method-item h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.method-item p {
  margin: 0;
  color: #615f59;
  font-size: 0.82rem;
  line-height: 1.7;
}

/* Offices & Coverage Chapter */
.places {
  color: var(--paper);
  background: var(--ink-soft);
}

.places-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3.5rem, 7vw, 8.5rem);
  align-items: center;
}

.places .section-title em {
  color: var(--gold-light);
}

.places-copy {
  margin: 1.6rem 0 0;
  color: #bebeb8;
  font-size: 0.95rem;
  line-height: 1.8;
}

.locations {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.location {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.location span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
}

.location h3 {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.location p {
  margin: 0;
  color: #b1b2ad;
  font-size: 0.8rem;
  line-height: 1.6;
}

.urban-image {
  position: relative;
  min-height: 480px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.urban-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.08);
}

/* FAQ & Contact Chapter */
.faq-contact {
  padding-bottom: 0;
  background: var(--paper);
}

.faq-contact .chapter-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.faq-list {
  border-top: 1px solid var(--line-light);
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid var(--line-light);
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.faq-button span:first-child {
  padding-right: 1rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.faq-icon {
  color: var(--gold-deep);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform 220ms var(--ease-out);
}

.faq-button[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms var(--ease-out);
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  color: #66635d;
  font-size: 0.85rem;
  line-height: 1.8;
}

.faq-answer.is-open {
  grid-template-rows: 1fr;
}

.faq-answer.is-open > p {
  padding-bottom: 1.5rem;
}

/* Contact Card Form */
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 3.8rem);
  border-radius: 12px;
  color: var(--paper);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
}

.contact-card::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(243, 214, 120, 0.25);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  max-width: 480px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
}

.contact-card h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.contact-card > p {
  max-width: 420px;
  margin: 1.2rem 0 2rem;
  color: #bcbdb7;
  font-size: 0.88rem;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  color: var(--white);
  background: transparent;
  font-size: 0.82rem;
  outline: 0;
  transition: border-color 180ms var(--ease-out);
}

.form-select {
  color: #deded9;
  background-color: var(--ink);
}

.form-select option {
  background-color: var(--ink);
  color: var(--white);
  padding: 10px;
}

.form-control::placeholder {
  color: #888983;
}

.form-control:focus {
  border-color: var(--gold-light);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.form-message {
  min-height: 1.25rem;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Footer */
.footer {
  color: #b0b0aa;
  background: #040404;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 3rem;
  width: min(1400px, calc(100% - 3rem));
  padding: 5rem 0 2.5rem;
  margin: auto;
}

.footer-brand {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.full-logo-box {
  width: 90px;
  height: 90px;
  flex: 0 0 90px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  padding: 6px;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.full-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  max-width: 280px;
  margin: 0.8rem 0 0;
  color: #888983;
  font-size: 0.76rem;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 1.2rem;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a,
.footer-links p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  transition: color 160ms var(--ease-out);
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-wa-link {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  background: rgba(243, 214, 120, 0.12);
  border: 1px solid var(--gold-light);
  color: var(--gold-light) !important;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: min(1400px, calc(100% - 3rem));
  padding: 1.6rem 0;
  margin: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #70716d;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Floating WhatsApp Button - ICON ONLY SLEEK FAB STYLE */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), background 250ms var(--ease-out);
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.08);
  background: #20ba5a;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.6), 0 6px 15px rgba(0, 0, 0, 0.4);
  color: #ffffff;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ==========================================================================
   ESTILOS ESPECÍFICOS PARA SUBPÁGINAS
   ========================================================================== */

.subpage-body {
  background: var(--paper);
}

.subpage-hero {
  position: relative;
  padding: 10rem 0 5rem;
  background: var(--ink);
  color: var(--white);
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 157, 60, 0.15) 0%, transparent 60%);
}

.breadcrumbs {
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.breadcrumbs a {
  color: #bebeb8;
  transition: color 160ms var(--ease-out);
}

.breadcrumbs a:hover {
  color: var(--gold-light);
}

.subpage-hero-header {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.subpage-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 500;
  margin: 0.5rem 0 1.2rem;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.subpage-subtitle {
  color: #c9c9c3;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.7;
  margin: 0;
}

.subpage-content {
  padding-top: 4rem;
}

.subpage-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}

.subpage-main {
  display: grid;
  gap: 2.5rem;
}

.subpage-card {
  padding: 3rem;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line-light);
}

.subpage-card h2 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 1.2rem;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.subpage-card p {
  color: #4e4c48;
  font-size: 0.98rem;
  line-height: 1.8;
  margin: 0 0 1.2rem;
}

.subpage-card p:last-child {
  margin-bottom: 0;
}

/* Service Modalities */
.service-modalities {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.modality-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 8px;
  background: var(--paper);
  border-left: 3px solid var(--gold-deep);
}

.modality-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 8px;
  background: rgba(200, 157, 60, 0.15);
  color: var(--gold-deep);
  display: grid;
  place-items: center;
}

.modality-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.modality-item p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #5d5b55;
  margin: 0;
}

/* Step Timeline */
.step-timeline {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.timeline-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-weight: 800;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

.step-body {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line-light);
  flex-grow: 1;
}

.timeline-step:last-child .step-body {
  border-bottom: 0;
  padding-bottom: 0;
}

.step-body h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
}

.step-body p {
  font-size: 0.88rem;
  margin: 0;
}

/* Sidebar Styles */
.subpage-sidebar {
  display: grid;
  gap: 2rem;
  position: sticky;
  top: 100px;
}

.sidebar-box {
  padding: 2rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-card);
}

.sidebar-highlight {
  background: var(--ink);
  color: var(--white);
  border-color: var(--gold);
}

.sidebar-warning {
  border-color: #e04f4f;
}

.sidebar-badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  background: var(--gold-light);
  color: var(--ink);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.sidebar-box h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.sidebar-box h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: var(--ink);
}

.sidebar-box p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: #adada7;
  margin-bottom: 1.5rem;
}

.check-list {
  margin: 0;
  padding-left: 1.2rem;
  color: #55534d;
  font-size: 0.85rem;
  line-height: 1.7;
}

.check-list li {
  margin-bottom: 0.5rem;
}

.law-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.law-tag {
  padding: 0.35rem 0.7rem;
  border-radius: 4px;
  background: var(--paper);
  border: 1px solid var(--line-light);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.subpage-contact {
  padding-top: 2rem;
}

/* Reveal Animations */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] {
  transition-delay: 100ms;
}

[data-reveal][data-delay="2"] {
  transition-delay: 200ms;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (100% Mobile Ready)
   ========================================================================== */

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.9rem;
  }
  .nav-links a {
    font-size: 0.65rem;
  }
  .nav-action {
    margin-left: 0.5rem;
  }
  .urban-grid {
    grid-template-columns: 1fr;
  }
  .split-feature {
    grid-template-columns: 1fr;
  }
  .split-content {
    padding: 3rem;
  }
  .split-photo {
    min-height: 400px;
  }
  .footer-shell {
    grid-template-columns: 1fr 1fr;
  }
  .subpage-grid {
    grid-template-columns: 1fr;
  }
  .subpage-sidebar {
    position: static;
  }
  .reservation-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .reservation-box {
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 860px) {
  .nav-shell {
    width: min(100% - 2rem, 1280px);
    height: 74px;
  }

  .is-scrolled .nav-shell {
    height: 64px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(85vw, 360px);
    height: 100dvh;
    padding: 6rem 2.5rem 2.5rem;
    background: var(--ink-soft);
    border-left: 1px solid var(--line-dark);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    color: var(--white);
    transform: translateX(105%);
    transition: transform 350ms var(--ease-in-out);
    z-index: 95;
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-links a {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: none;
    padding-block: 0.75rem;
  }

  .nav-action {
    margin: 1.5rem 0 0;
    width: 100%;
  }

  .nav-action .button {
    width: 100%;
  }

  .hero {
    min-height: 740px;
  }

  .hero-content {
    padding: 8.5rem 0 7rem;
    width: min(100% - 2rem, 1280px);
  }

  .hero h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .proof-divider {
    width: 100%;
    height: 1px;
  }

  .hero-rail {
    display: none;
  }

  .chapter {
    padding: 4.5rem 0;
  }

  .chapter-shell {
    width: min(100% - 2rem, 1280px);
  }

  .intro-grid,
  .services-head,
  .method-wrap,
  .places-layout,
  .faq-contact .chapter-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .principles {
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 0;
    padding: 1.5rem 0;
  }

  .principle + .principle {
    padding-left: 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .principle span {
    margin-bottom: 1rem;
  }

  .urban-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
  }

  .split-content {
    padding: 2.5rem 1.8rem;
  }

  .service-item {
    grid-template-columns: 46px 1fr 30px;
    min-height: 0;
    gap: 0.8rem;
    padding: 1.25rem 0;
  }

  .service-item p {
    display: none;
  }

  .service-number {
    font-size: 2rem;
  }

  .service-item h3 {
    font-size: 1.6rem;
  }

  .method-intro {
    position: static;
  }

  .method-item {
    grid-template-columns: 46px 1fr;
    gap: 1rem;
  }

  .method-item p {
    grid-column: 2;
  }

  .faq-contact .chapter-shell {
    padding-bottom: 4rem;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .subpage-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2rem 1.25rem;
  }

  .urban-card {
    padding: 2rem 1.5rem;
  }

  .modality-item {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
