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

:root {
    --black:   #0A0A0A;
    --white:   #F5F5F0;
    --red:     #F30C08;
    --gray:    #888880;
    --border:  2px solid var(--black);
}

html, body {
    width: 100%; height: 100%;
    overflow: hidden;
    background: var(--black);
    cursor: none;
}

a {
    cursor: none;
}

#cursor {
    position: fixed;
    width: 12px; height: 12px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, width 0.2s ease, height 0.2s ease;
    mix-blend-mode: normal;
}

#cursor.hover {
    width: 48px; height: 48px;
    background: var(--red);
    mix-blend-mode: difference;
}

#cursor-trail {
    position: fixed;
    width: 4px; height: 4px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    transition: left 0.18s ease, top 0.18s ease;
}

#track {
    display: flex;
    width: max-content;
    height: 100vh;
    will-change: transform;
}

.panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px 72px;
}

.panel--dark  { background: var(--black); color: var(--white); }
.panel--light { background: var(--white); color: var(--black); }
.panel--red   { background: var(--red);   color: var(--white); }

nav {
    position: fixed;
    top: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 28px 72px;
    mix-blend-mode: difference;
}

.nav-logo {
    position: fixed;
    top: 28px; left: 72px;
    z-index: 100;
    height: 36px;
    width: 135px;
}

.nav-logo img {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex; gap: 48px;
    list-style: none;
}

.nav-links a {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.1s;
}

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

#progress {
    position: fixed;
    bottom: 0; left: 0;
    height: 3px;
    background: var(--red);
    width: 0%;
    z-index: 100;
    transition: width 0.1s linear;
}

#panel-counter {
    position: fixed;
    bottom: 32px; right: 72px;
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    z-index: 100;
    mix-blend-mode: difference;
    color: var(--white);
}

#scroll-hint {
    position: fixed;
    bottom: 32px; left: 72px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 2px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 1;
    transition: opacity 0.5s;
}

#scroll-hint::after {
    content: '';
    width: 40px; height: 1px;
    background: var(--gray);
    display: block;
}

  /* ══════════════════════════════════════════════ */
  /* PANEL 1 — HERO                                */
  /* ══════════════════════════════════════════════ */
  
#p1 { justify-content: center; }

.hero-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
}
  
.hero-headline {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(72px, 10vw, 140px);
    line-height: 0.92;
    letter-spacing: -4px;
    color: var(--white);
    overflow: hidden;
}

.hero-headline .line {
    display: block;
    transform: translateY(110%);
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-headline .line:nth-child(1) { animation-delay: 0.5s; }

.hero-headline .line:nth-child(2) { animation-delay: 0.65s; }

.hero-headline .line:nth-child(3) { animation-delay: 0.8s; color: var(--red); }
  
.hero-sub {
    margin-top: 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    opacity: 0;
    animation: fadeUp 0.6s ease 1.2s forwards;
}
  
.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray);
    max-width: 380px;
}
 
.hero-cta {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    background: var(--white);
    padding: 18px 36px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.1s, color 0.1s;
    border: 2px solid var(--white);
}
  
.hero-cta:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

  /* Decorative large number */
  
.hero-bg-num {
    position: absolute;
    right: 72px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Unbounded', sans-serif;
    font-size: 320px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #222;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

  /* ══════════════════════════════════════════════ */
  /* PANEL 2 — MANIFESTO / NOSOTROS               */
  /* ══════════════════════════════════════════════ */
  
#p2 { justify-content: space-between; padding-top: 140px; }
  
.manifesto-label {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gray);
    text-transform: uppercase;
}
 
.manifesto-text {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    max-width: 75%;
}
  
.manifesto-text em {
    font-style: normal;
    color: var(--red);
}

.manifesto-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
}
 
.manifesto-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
 
.stat-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--black);
}
 
.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
}

.manifesto-aside {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: #555;
    max-width: 320px;
    text-align: right;
}

  /* ══════════════════════════════════════════════ */
  /* PANEL 3 — PRODUCTOS                          */
  /* ══════════════════════════════════════════════ */
  
#p3 { padding-top: 140px; justify-content: space-between; }

  
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}
  
.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
}

.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-top: 8px;
    margin-bottom: 16px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    border-top: var(--border);
    border-left: var(--border);
}

.product-card {
    border-right: var(--border);
    border-bottom: var(--border);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: background 0.15s;
    cursor: none;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: translateY(100%);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.product-card:hover::before { transform: translateY(0); }

.product-card:hover .product-name,

.product-card:hover .product-desc,

.product-card:hover .product-num { color: var(--white); }


.product-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
    letter-spacing: 2px;
    position: relative; z-index: 1;
    transition: color 0.15s;
}

.product-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    margin: 20px 0 12px;
    letter-spacing: -0.5px;
    position: relative; z-index: 1;
    transition: color 0.15s;
    line-height: 1.2;
}

.product-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: #555;
    position: relative; z-index: 1;
    transition: color 0.15s;
}

  /* ══════════════════════════════════════════════ */
  /* PANEL 4 — SERVICIOS                          */
  /* ══════════════════════════════════════════════ */

#p4 { padding-top: 140px; justify-content: space-between; }

/* ── Selected service header (top of left column) ── */
.service-selected-header {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    border-bottom: 2px solid #0A0A0A;
}
#p4.service-open .service-selected-header {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
}

.service-selected-name {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: var(--red);
    letter-spacing: -0.5px;
    padding: 20px 0 18px;
}

/* ── Right column: crossfade default ↔ detail ── */
#p4-right {
    position: relative;
    transition: padding-top 0.4s ease, align-self 0s;
}

#p4-right-default,
#p4-right-detail {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#p4-right-detail {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

#p4.service-open #p4-right-default {
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
}
#p4.service-open #p4-right-detail {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
#p4.service-open #p4-right {
    align-self: flex-start;
    padding-top: 62px;
}

/* ── Service item: dimmed when another is selected ── */
.service-item.is-selected .service-num { color: var(--red); }
.service-item.is-selected .service-name { color: var(--red) !important; }
#p4.service-open .service-item:not(.is-selected) { opacity: 0.4; }
#p4.service-open .service-item { transition: opacity 0.3s ease; }

/* ── Detail right column content ── */
.service-detail-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: #333;
    margin-bottom: 28px;
}

.service-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.service-detail-tag {
    font-family: 'Unbounded', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 14px;
    border: 1.5px solid #0A0A0A;
    color: #0A0A0A;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    width: 100%;
}

.service-list { display: flex; flex-direction: column; }

.service-item {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #222;
    cursor: none;
    position: relative;
    overflow: hidden;
    transition: padding-left 0.2s ease;
}

.service-item:first-child { border-top: 1px solid #222; }

.service-item:hover { padding-left: 16px; }

.service-item:hover .service-arrow { opacity: 1; transform: translateX(0); }

.service-num {
    font-family: 'Unbounded', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--red);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.service-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--white);
    flex: 1;
  
}

.service-arrow {
    font-size: 20px;
    color: var(--red);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.2s, transform 0.2s;
  
}

.services-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
  
}

.services-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--gray);
}

.services-cta {
    font-family: 'Unbounded', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 36px;
    border: 2px solid var(--white);
    transition: background 0.1s, color 0.1s;
    width: fit-content;
}

.services-cta:hover { background: var(--red); border-color: var(--red); }

  /* ══════════════════════════════════════════════ */
  /* PANEL 5 — CASOS DE ÉXITO                     */
  /* ══════════════════════════════════════════════ */

#p5 { padding-top: 140px; justify-content: space-between; }


.cases-header { width: 100%; }

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.case-card {
    background: var(--black);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    cursor: none;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}

.case-card:hover { border-color: var(--red); }

.case-industry {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
  
}

.case-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 16px;
  
}

.case-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--gray);
  
}

.case-result {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--red); 
}

.case-result-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 1px;
    margin-top: 4px;  
}

  /* ══════════════════════════════════════════════ */
  /* PANEL 6 — CONTACTO                           */
  /* ══════════════════════════════════════════════ */

#p6 { justify-content: center; align-items: flex-start; padding-top: 140px; }
  
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    width: 100%;
    align-items: center;
}
  
.contact-left {}
  
.contact-headline {
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -3px;
    color: var(--black);
    margin-bottom: 40px;
}

.contact-headline span { color: var(--red); display: block; }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 48px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.contact-info-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.contact-right {}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: var(--border);
    border-left: var(--border);
}

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

.form-field {
    border-right: var(--border);
    border-bottom: var(--border);
    padding: 0;
    position: relative;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    position: absolute;
    top: 16px; left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
    pointer-events: none;
    transition: opacity 0.2s;
}

.form-field input,

.form-field textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    padding: 36px 20px 16px;
    resize: none;
    cursor: none;
}

.form-field textarea { height: 120px; }

.form-field input:focus + label,

.form-field input:not(:placeholder-shown) + label,

.form-field textarea:focus + label,

.form-field textarea:not(:placeholder-shown) + label { opacity: 0; }

.form-submit {
    border-right: var(--border);
    border-bottom: var(--border);
    grid-column: 1 / -1;
}

.form-submit button {
    width: 100%;
    padding: 24px;
    background: var(--black);
    color: var(--white);
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: none;
    transition: background 0.1s, color 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.form-submit button:hover {
    background: var(--red);
    color: var(--white);
}

  /* ══════════════════════════════════════════════ */
  /* ANIMATIONS                                   */
  /* ══════════════════════════════════════════════ */
  
@keyframes slideUp {
    to { transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

  /* scroll-reveal */
  
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
  
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

  /* stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); }
.stagger.visible > *:nth-child(1) { animation: fadeUp 0.6s ease 0.0s forwards; }
.stagger.visible > *:nth-child(2) { animation: fadeUp 0.6s ease 0.1s forwards; }
.stagger.visible > *:nth-child(3) { animation: fadeUp 0.6s ease 0.2s forwards; }
.stagger.visible > *:nth-child(4) { animation: fadeUp 0.6s ease 0.3s forwards; }

  /* ── REDUCED MOTION ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .hero-headline .line { animation: none; transform: none; }
    .hero-eyebrow, .hero-sub, .hero-bg-num { animation: none; opacity: 1; }
    .reveal, .stagger > * { opacity: 1; transform: none; animation: none; }
}

/* ═══════════════════════════════════════════════════
   MOBILE — max-width: 768px
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Base: vertical scroll ── */
  html { height: auto; overflow-y: auto; overflow-x: hidden; }
  body { height: auto; overflow-y: auto; overflow-x: hidden; cursor: auto; }
  a, button  { cursor: auto; }
  #cursor, #cursor-trail { display: none; }

  #track {
    flex-direction: column;
    width: 100vw;
    height: auto;
    transform: none !important;
  }

  .panel {
    width: 100vw;
    height: auto;
    min-height: 100svh;
    padding: 96px 24px 52px;
    overflow: visible;
  }

  /* ── Nav ── */
  .nav-logo { top: 20px; left: 24px; height: 26px; width: 97px; }
  nav { padding: 20px 24px; }
  .nav-links { display: none; }

  /* ── Chrome: progress, counter, hint ── */
  #progress    { height: 2px; }
  #panel-counter { display: none; }
  #scroll-hint { bottom: 20px; left: 24px; font-size: 9px; }

  /* ─────────────────────── PANEL 1 — HERO ─── */
  #p1 { justify-content: center; padding-bottom: 80px; }

  .hero-headline {
    font-size: clamp(52px, 14vw, 76px);
    letter-spacing: -2px;
  }

  .hero-bg-num {
    font-size: 200px;
    right: -20px;
    opacity: 0.06;
  }

  .hero-sub {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
    margin-top: 32px;
  }

  .hero-desc { max-width: 100%; font-size: 14px; }

  /* ─────────────────────── PANEL 2 — DOLOR ─── */
  #p2 { padding-top: 96px; justify-content: space-between; gap: 32px; }

  .manifesto-text {
    font-size: clamp(28px, 7.5vw, 44px);
    max-width: 100%;
    letter-spacing: -1px;
  }

  .manifesto-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .stat-num { font-size: 32px; }
  .manifesto-aside { text-align: left; max-width: 100%; font-size: 13px; }

  /* ─────────────────────── PANEL 3 — PRODUCTOS ─── */
  #p3 { padding-top: 96px; }
  .products-header { flex-direction: column; gap: 20px; align-items: flex-start; }
  .products-header > p { align-self: flex-start !important; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card { padding: 24px 20px; }
  .product-name { font-size: 16px; }
  .product-desc { font-size: 12px; }

  /* ─────────────────────── PANEL 4 — SERVICIOS ─── */
  #p4 { padding-top: 96px; }

  .services-layout {
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
  }

  .service-name  { font-size: 16px; }
  .service-item  { padding: 18px 0; }

  /* Right column: static flow on mobile, not absolute overlay */
  #p4-right { position: static !important; padding-top: 0 !important; }

  #p4-right-default {
    padding-top: 32px;
    transition: opacity 0.3s ease, max-height 0.35s ease;
    max-height: 400px;
    overflow: hidden;
  }

  #p4-right-detail {
    position: static !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    padding-top: 0;
    transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.4s ease, padding-top 0.4s ease;
  }

  #p4.service-open #p4-right-default {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
  }

  #p4.service-open #p4-right-detail {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 32px;
  }

  #p4.service-open #p4-right { align-self: auto !important; }

  .service-detail-tags { gap: 6px; }
  .service-detail-tag  { font-size: 9px; padding: 6px 10px; }

  /* ─────────────────────── PANEL 5 — CASOS ─── */
  #p5 { padding-top: 96px; }
  .cases-grid { grid-template-columns: 1fr; gap: 16px; }
  .case-card  { padding: 28px 24px; }
  .case-title { font-size: 18px; }

  /* ─────────────────────── PANEL 6 — CONTACTO ─── */
  #p6 { padding-top: 96px; align-items: flex-start; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-headline { font-size: clamp(36px, 10vw, 56px); letter-spacing: -2px; }
  .form-row { grid-template-columns: 1fr; }
  .form-field textarea { height: 100px; }

  /* ── Section titles ── */
  .section-title { font-size: clamp(36px, 9vw, 52px); letter-spacing: -1.5px; }

  /* ── Keep reveal animations ── */
  .reveal { transition: opacity 0.6s ease, transform 0.6s ease; }
}