/* ================================================================
 * crea-studio · design tokens + base + bloques
 * Fuente: Gotham (paga) — mientras tanto Montserrat como fallback visualmente cercano.
 * ================================================================ */

/* ================ FUENTE · GOTHAM ================ */
@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/GothamBook.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/GothamMedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/GothamBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gotham';
    src: url('/assets/fonts/Gotham-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Colores */
    --color-dark:  #282727;
    --color-red:   #E33017;
    --color-light: #FEFCFC;
    --color-muted: rgba(254, 252, 252, 0.6);
    --color-border-light: rgba(254, 252, 252, 0.15);

    /* Cards (nosotros) */
    --card-bg:      #FFFFFF;
    --card-border:  #F3F4F6;
    --card-radius:  16px;
    --card-shadow:  0 1px 2px rgba(0,0,0,.05);

    /* Tipografía */
    --font-display: 'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:    'Gotham', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container-max: 1280px;
    --container-pad: 24px;

    /* Radii */
    --pill-radius: 999px;
}

/* Reset mínimo */
*,*::before,*::after { box-sizing: border-box; }
html,body { margin: 0; padding: 0; }
body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-dark);
    background: var(--color-light);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    letter-spacing: -0.02em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* Textura de grano — usa las JPGs del brand */
.bg-light,
.bg-dark { position: relative; }
.bg-light {
    background-color: var(--color-light);
    background-image: url('/assets/texture-light.jpg');
    background-size: 1200px auto;
    background-repeat: repeat;
    color: var(--color-dark);
}
.bg-dark {
    background-color: var(--color-dark);
    background-image: url('/assets/texture-dark.jpg');
    background-size: 1200px auto;
    background-repeat: repeat;
    color: var(--color-light);
}
/* .grain quedó vacío; sobrevive como no-op para no romper markup viejo */
.grain::before { content: none; }

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    position: relative;
    z-index: 1;
}

/* ================================================================
 * HEADER · pill flotante
 * ================================================================ */
.site-header {
    position: fixed;
    top: 20px;
    left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    pointer-events: none;
}
.nav-pill {
    display: flex;
    align-items: center;
    gap: 22px;
    background: var(--color-dark);
    color: var(--color-light);
    padding: 10px 14px 10px 22px;
    border-radius: var(--pill-radius);
    pointer-events: auto;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.nav-pill__logo {
    display: inline-flex;
    align-items: center;
    color: var(--color-light);
    padding-right: 6px;
}
.nav-pill__logo svg,
.nav-pill__logo img { width: auto; height: 22px; display: block; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 14px;
    list-style: none; padding: 0; margin: 0;
    font-size: 14px;
}
.nav-list li { display: flex; align-items: center; gap: 14px; }
.nav-list li + li::before {
    content: "|";
    color: var(--color-muted);
    font-weight: 300;
}
.nav-list a {
    padding: 4px 2px;
    opacity: 0.75;
    transition: opacity .15s ease;
}
.nav-list a:hover { opacity: 1; }
.nav-list a.is-active { opacity: 1; font-weight: 700; }
.nav-cta {
    background: var(--color-light);
    color: var(--color-dark);
    padding: 12px 32px;
    border-radius: var(--pill-radius);
    font-size: 14px;
    font-weight: 400;
    margin-left: 16px;
    line-height: 1;
    transition: background .15s ease;
}
.nav-cta:hover { background: #ececec; }

/* ================================================================
 * SECTION · base
 * ================================================================ */
.section { position: relative; padding: 100px 0; overflow: hidden; }
.section--pad-lg { padding: 140px 0; }
.section--pad-sm { padding: 60px 0; }

.eyebrow-small {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-light);
    opacity: 0.85;
    margin-bottom: 24px;
}
.section.bg-light .eyebrow-small { color: var(--color-dark); }

/* Tipografías del design system */
.tit-grande {
    font-family: var(--font-display);
    font-weight: 700; /* Gotham Bold */
    font-size: clamp(56px, 8vw, 80px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    margin: 0;
}
.tit-mediano {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.07;
    letter-spacing: -0.06em;
    text-transform: lowercase;
    margin: 0;
}
.texto-base {
    font-size: 15px;
    line-height: 1.18;
    letter-spacing: -0.06em;
}

/* ================================================================
 * BLOQUE · hero_split (home)
 * ================================================================ */
.hero-split {
    padding: 160px 0 0;
    background: var(--color-light) url('/assets/texture-light.jpg') repeat;
    background-size: 1200px auto;
    position: relative;
    color: var(--color-dark);
}
.hero-split .container { padding-bottom: 0; }
.hero-split__top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 60px;
}
.hero-split__eyebrow {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    white-space: pre;
    letter-spacing: -0.04em;
    margin: 0 0 24px;
}
.hero-split__heading {
    white-space: pre-line;
    /* la 2da línea suele venir indentada en el figma */
}
.hero-split__heading span.line-2 { display: block; padding-left: 1.2em; }
.hero-split__intro {
    max-width: 240px;
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: -0.02em;
    margin-top: 60px;
}

/* Tiles crossing */
.hero-tiles {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 0;
    position: relative;
    z-index: 1;
}
.hero-tile {
    background: #d9d9d9;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    aspect-ratio: 3 / 4;
}
.hero-tile--1 { grid-column: 1 / span 4; margin-top: 0;   }
.hero-tile--2 { grid-column: 5 / span 4; margin-top: 100px; aspect-ratio: 1/1; }
.hero-tile--3 { grid-column: 9 / span 4; margin-top: 60px;  aspect-ratio: 4/3; }
.hero-tile--4 { grid-column: 9 / span 4; margin-top: 20px;  aspect-ratio: 4/3; }

/* Ajuste: en Figma los tiles cruzan de fondo light → dark. Lo simulamos
   dejando el hero-split con bg light y el bloque siguiente con margen
   negativo hacia arriba para envolver la parte inferior de los tiles. */
.hero-split__tiles-bg {
    height: 180px; /* la mitad que "cae" al fondo dark del bloque siguiente */
    margin-top: -180px;
    background: var(--color-dark);
    position: relative;
}

/* ================================================================
 * BLOQUE · manifesto (frases dispersas sobre negro)
 * ================================================================ */
.manifesto {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 140px 0 120px;
}
.manifesto__eyebrow {
    font-size: 22px;
    text-decoration: underline;
    text-underline-offset: 6px;
    margin: 0 0 100px;
    display: inline-block;
}
.manifesto__lines {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.03em;
}
.manifesto__line {
    display: block;
    margin: 14px 0;
}
.manifesto__line.text-left   { text-align: left;   padding-left: 6%;   }
.manifesto__line.text-center { text-align: center; }
.manifesto__line.text-right  { text-align: right;  padding-right: 4%;  font-weight: 700; }

/* ================================================================
 * BLOQUE · services_grid
 * ================================================================ */
.services-grid {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 60px 0 120px;
}
.services-grid__header { margin-bottom: 60px; }
.services-grid__eyebrow {
    font-size: 15px;
    opacity: 0.9;
    margin: 0 0 12px;
}
.services-grid__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    position: relative;
    border: 1px solid var(--color-border-light);
    border-radius: 20px;
    padding: 28px 26px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: background .2s ease, color .2s ease;
}
.service-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 22px;
}
.service-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0;
}
.service-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px; height: 34px;
    border-radius: 999px;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    flex: 0 0 auto;
    transition: background .2s ease, color .2s ease;
}
.service-card__arrow svg { width: 14px; height: 14px; }
.service-card__body {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    opacity: 0.8;
    margin: 0;
}
.service-card:hover,
.service-card.is-highlight {
    background: var(--color-light);
    color: var(--color-dark);
}
.service-card:hover .service-card__body,
.service-card.is-highlight .service-card__body { opacity: 1; }

/* ================================================================
 * BLOQUE · portfolio (home preview)
 * ================================================================ */
.portfolio {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 40px 0 120px;
}
.portfolio__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
    flex-wrap: wrap;
}
.portfolio__eyebrow { font-size: 15px; opacity: 0.9; margin: 0 0 12px; }
.portfolio__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0;
}
.portfolio__link {
    text-decoration: underline;
    text-underline-offset: 4px;
    opacity: 0.85;
}
.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    align-items: end;
}
.project-tile {
    background: #333;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
}
.project-tile__caption {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.3;
}
.project-tile__caption strong { display: block; font-weight: 400; }
.project-tile__caption .cat { opacity: 0.55; }

.project-tile--tall   { grid-column: 1 / span 4;  aspect-ratio: 4/5; }
.project-tile--square { grid-column: 5 / span 5;  aspect-ratio: 1/1; margin-top: 40px; }
.project-tile--narrow { grid-column: 10 / span 3; aspect-ratio: 3/5; }

.project-block { display: flex; flex-direction: column; }

/* ================================================================
 * BLOQUE · team_stats
 * ================================================================ */
.team-stats {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 40px 0 120px;
}
.team-stats__wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}
.team-stats__eyebrow { font-size: 15px; opacity: 0.9; margin: 0 0 12px; }
.team-stats__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 66px);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 0 0 24px;
}
.team-stats__body { font-size: 14px; line-height: 1.4; margin: 0 0 32px; max-width: 380px; }
.team-stats__button {
    display: inline-block;
    background: var(--color-red);
    color: var(--color-light);
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 500;
}
.team-stats__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: center;
    position: relative;
}
.stat {
    padding-left: 24px;
    position: relative;
}
.stat + .stat::before {
    content: "";
    position: absolute;
    left: -20px; top: 0; bottom: 0;
    width: 2px;
    background: var(--color-red);
}
.stat__value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 5vw, 64px);
    line-height: 1;
    margin: 0 0 12px;
}
.stat__label {
    font-size: 13px;
    opacity: 0.85;
    white-space: pre-line;
    line-height: 1.25;
}

/* ================================================================
 * BLOQUE · cta_red
 * ================================================================ */
.cta-red {
    background: var(--color-red);
    color: var(--color-light);
    padding: 120px 0;
    text-align: center;
}
.cta-red__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(32px, 4vw, 48px);
    letter-spacing: -0.03em;
    margin: 0 0 40px;
}
.cta-red__link {
    font-size: clamp(20px, 2vw, 26px);
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 1px;
}

/* ================================================================
 * FOOTER
 * ================================================================ */
.site-footer {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 60px 0 40px;
    position: relative;
}
.site-footer__wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
}
.site-footer__brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.05em;
    margin: 0 0 16px;
}
.site-footer__logo { display: block; height: 32px; width: auto; margin: 0 0 16px; }
.site-footer__copy {
    font-size: 12px;
    line-height: 1.5;
    opacity: 0.7;
    white-space: pre-line;
    margin: 0;
}
.site-footer__redes-title { font-size: 15px; margin: 0 0 16px; opacity: 0.9; }
.site-footer__redes-list { list-style: none; padding: 0; margin: 0; font-size: 14px; display: grid; gap: 8px; }
.site-footer__redes-list a { opacity: 0.8; }
.site-footer__redes-list a:hover { opacity: 1; }

/* ================================================================
 * RESPONSIVE
 * ================================================================ */
@media (max-width: 900px) {
    .nav-pill { padding: 8px 12px 8px 16px; gap: 12px; }
    .nav-list { display: none; }
    .hero-split__top { grid-template-columns: 1fr; }
    .hero-split__intro { max-width: none; margin-top: 20px; }
    .hero-tiles { grid-template-columns: repeat(2, 1fr); }
    .hero-tile--1 { grid-column: 1 / span 2; }
    .hero-tile--2, .hero-tile--3, .hero-tile--4 { grid-column: auto / span 1; margin-top: 0; }
    .services-list { grid-template-columns: 1fr; }
    .portfolio__grid { grid-template-columns: 1fr; }
    .project-tile--tall,
    .project-tile--square,
    .project-tile--narrow { grid-column: 1 / -1; margin-top: 0; }
    .team-stats__wrap { grid-template-columns: 1fr; gap: 40px; }
    .team-stats__grid { grid-template-columns: 1fr; gap: 24px; }
    .stat { padding-left: 0; }
    .stat + .stat::before { display: none; }
    .site-footer__wrap { grid-template-columns: 1fr; }
}

/* ================================================================
 * BLOQUE · page_intro (breadcrumb + título inline con highlight)
 * ================================================================ */
.page-intro {
    background: var(--color-dark) url('/assets/texture-dark.jpg') repeat;
    background-size: 1200px auto;
    color: var(--color-light);
    padding: 160px 0 40px;
}
.page-intro__crumb { font-size: 13px; opacity: 0.7; margin: 0 0 40px; }
.page-intro__body {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.05em;
}
.page-intro__title-red { color: var(--color-red); margin-right: 24px; }
.page-intro__hl { color: var(--color-muted); }

/* ================================================================
 * BLOQUE · services_list (servicios page, numerado con divisores)
 * ================================================================ */
.services-list-block { background: var(--color-dark); color: var(--color-light); padding: 40px 0 100px; }
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-item {
    display: grid;
    grid-template-columns: 90px 1fr 320px;
    gap: 40px;
    align-items: start;
    padding: 60px 0;
    border-top: 1px solid var(--color-border-light);
}
.svc-item:last-child { border-bottom: 1px solid var(--color-border-light); }
.svc-item__num { font-size: 15px; opacity: 0.7; padding-top: 8px; }
.svc-item__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 3.4vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.06em;
    margin: 0;
    text-transform: lowercase;
}
.svc-item__aside { font-size: 14px; line-height: 1.35; }
.svc-item__body { margin: 0 0 24px; opacity: 0.85; }
.svc-item__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    opacity: 0.9;
}
.svc-item__dash {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--color-border-light);
}

/* ================================================================
 * BLOQUE · portfolio_full (proyectos con filtros y grid asimétrico)
 * ================================================================ */
.portfolio-full { background: var(--color-dark); color: var(--color-light); padding: 40px 0 100px; }
.pf-filters {
    display: flex;
    gap: 22px;
    justify-content: flex-end;
    margin-bottom: 48px;
    font-size: 14px;
    flex-wrap: wrap;
}
.pf-filter { opacity: 0.6; }
.pf-filter.is-active { opacity: 1; font-weight: 700; }
.pf-filter:hover { opacity: 1; }

.pf-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px 24px;
}
.pf-card { display: flex; flex-direction: column; }
.pf-card__media {
    background: #333;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    width: 100%;
}
.pf-card__meta { padding: 20px 4px 0; font-size: 14px; line-height: 1.35; }
.pf-card__title { font-weight: 400; font-size: 18px; margin: 0 0 4px; }
.pf-card__sub  { margin: 0; opacity: 0.55; font-size: 13px; }
.pf-card__cat  { margin: 8px 0 0; opacity: 0.7; font-size: 13px; }
.pf-card__industria { margin: 12px 0 0; font-size: 13px; opacity: 0.7; }

.pf-card--wide        { grid-column: 1 / span 12; }
.pf-card--wide .pf-card__media { aspect-ratio: 21 / 9; }
.pf-card--right       { grid-column: 6 / span 6; }
.pf-card--right .pf-card__media { aspect-ratio: 4 / 3; }
.pf-card--small-left  { grid-column: 1 / span 5; }
.pf-card--small-right { grid-column: 7 / span 6; }
.pf-card--small-left .pf-card__media,
.pf-card--small-right .pf-card__media { aspect-ratio: 4 / 3; }

/* ================================================================
 * BLOQUE · hablemos_contact
 * ================================================================ */
.hablemos-contact { background: var(--color-dark); color: var(--color-light); padding: 80px 0 120px; }
.hbc-head { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
.hbc-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(48px, 6vw, 72px);
    letter-spacing: -0.05em;
    margin: 0;
    line-height: 1;
}
.hbc-dot {
    display: inline-block;
    width: 14px; height: 14px;
    background: var(--color-red);
    border-radius: 999px;
    margin-top: 18px;
}
.hbc-info {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
    font-size: 14px;
}
.hbc-info__item { display: flex; flex-direction: column; gap: 6px; }
.hbc-info__val { font-weight: 500; }
.hbc-info__lbl { opacity: 0.6; }

/* ================================================================
 * BLOQUE · contact_form (asesorías)
 * ================================================================ */
.contact-form { background: var(--color-dark); color: var(--color-light); padding: 40px 0 120px; }
.cf-head {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: end;
    margin-bottom: 100px;
}
.cf-title { text-transform: lowercase; font-weight: 400; }
.cf-title .line-2 { display: block; padding-left: 2em; }
.cf-intro { font-size: 13px; line-height: 1.4; opacity: 0.9; text-align: right; }

.cf-body {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
}
.cf-info { display: grid; gap: 32px; }
.cf-info__item { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.cf-info__lbl { opacity: 0.6; }
.cf-info__val { font-weight: 500; }
.cf-social { display: flex; gap: 16px; font-weight: 400; }
.cf-social a { opacity: 0.9; }

.cf-form { display: grid; gap: 28px; }
.cf-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cf-field { display: flex; flex-direction: column; gap: 8px; }
.cf-field__label { font-size: 13px; opacity: 0.85; }
.cf-req { opacity: 0.55; }
.cf-field input,
.cf-field textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--color-border-light);
    color: var(--color-light);
    padding: 8px 0;
    font-family: inherit;
    font-size: 15px;
    letter-spacing: -0.02em;
    resize: vertical;
}
.cf-field input:focus,
.cf-field textarea:focus {
    outline: none;
    border-bottom-color: var(--color-light);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: var(--color-muted); }
.cf-submit {
    justify-self: start;
    padding: 12px 44px;
    border: 1px solid var(--color-border-light);
    border-radius: 999px;
    background: transparent;
    color: var(--color-light);
    font-size: 14px;
    margin-top: 20px;
    transition: background .2s ease, color .2s ease;
}
.cf-submit:hover { background: var(--color-light); color: var(--color-dark); }

/* ================================================================
 * BLOQUE · about_hero (nosotros sobre light)
 * ================================================================ */
.about-hero { background: var(--color-light); color: var(--color-dark); padding: 160px 0 80px; }
.ah-title { margin: 0 0 60px; }
.ah-copy {
    max-width: 720px;
    padding: 24px 24px 96px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
    border: 1px dashed rgba(40,39,39,0.15);
    border-radius: 12px;
}
.ah-pill {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 999px;
    font-size: 13px;
    text-transform: lowercase;
}
.ah-body {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.3;
    letter-spacing: -0.04em;
    margin: 0;
    text-transform: lowercase;
}
.ah-hl { color: #b8b8b8; }

.ah-manifest {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    text-transform: lowercase;
    margin-top: 60px;
}
.ah-manifest__line { display: block; margin: 4px 0; }
.ah-manifest__line.text-center { text-align: center; }
.ah-manifest__line.text-right  { text-align: right; }
.ah-manifest__line.text-left   { text-align: left; }

/* ================================================================
 * BLOQUE · pilares (nosotros cards blancas)
 * ================================================================ */
.pilares { background: var(--color-light); color: var(--color-dark); padding: 40px 0 120px; }
.pilares__eyebrow { font-size: 15px; margin: 0 0 32px; }
.pilares__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.pilar {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 305px;
}
.pilar__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px; height: 48px;
    background: var(--color-dark);
    color: var(--color-light);
    border-radius: 12px;
}
.pilar__icon svg { width: 22px; height: 22px; }
.pilar__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 26px;
    letter-spacing: -0.04em;
    margin: 0;
}
.pilar__body {
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
    color: #555;
}

/* ================================================================
 * RESPONSIVE (páginas internas)
 * ================================================================ */
@media (max-width: 900px) {
    .svc-item { grid-template-columns: 1fr; gap: 16px; padding: 40px 0; }
    .svc-item__num { padding-top: 0; }
    .pf-card--wide, .pf-card--right,
    .pf-card--small-left, .pf-card--small-right { grid-column: 1 / -1; }
    .hbc-info { grid-template-columns: 1fr; }
    .cf-head, .cf-body { grid-template-columns: 1fr; gap: 40px; }
    .cf-intro { text-align: left; }
    .cf-row--2 { grid-template-columns: 1fr; }
    .pilares__grid { grid-template-columns: 1fr; }
}
