   *,
   *::before,
   *::after {
       box-sizing: border-box;
       margin: 0;
       padding: 0;
   }

   :root {
       --t: 250ms;
       --ease: cubic-bezier(0.4, 0, 0.2, 1);
       --tc: #c8714a;
       --tc2: #e8936d;
       --radius: 6px;
   }

   [data-theme="dark"] {
       --bg: #0b0907;
       --bg2: #141210;
       --bg3: #1d1a17;
       --bg4: #252018;
       --surface: #201c19;
       --surf2: #2a2520;
       --cr: #f0e8df;
       --cr2: #c4b8ae;
       --cr3: #7a6f67;
       --line: rgba(200, 113, 74, 0.18);
       --line2: rgba(240, 232, 223, 0.06);
       --shadow: 0 4px 32px rgba(0, 0, 0, 0.55);
       --blueprint-bg: #0b0e14;
       --toggle-track: #2a2520;
   }

   [data-theme="light"] {
       --bg: #faf7f3;
       --bg2: #f3ede5;
       --bg3: #ede4d8;
       --bg4: #e6dace;
       --surface: #fff;
       --surf2: #f7f2ec;
       --cr: #1a1410;
       --cr2: #4a3f37;
       --cr3: #8a7d74;
       --line: rgba(200, 113, 74, 0.22);
       --line2: rgba(26, 20, 16, 0.08);
       --shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
       --blueprint-bg: #eef2f9;
       --toggle-track: #e6dace;
   }

   html {
       scroll-behavior: smooth;
   }

   body {
       background: var(--bg);
       color: var(--cr);
       font-family: "Jost", sans-serif;
       font-weight: 300;
       overflow-x: hidden;
       transition:
           background var(--t) var(--ease),
           color var(--t) var(--ease);
   }

   /* ── THEME TOGGLE ── */
   .theme-toggle {
       position: fixed;
       top: 24px;
       right: 24px;
       z-index: 999;
       width: 52px;
       height: 28px;
       border-radius: 14px;
       background: var(--toggle-track);
       border: 1px solid var(--line);
       cursor: pointer;
       transition: all var(--t) var(--ease);
       display: flex;
       align-items: center;
       padding: 3px;
   }

   .theme-toggle::after {
       content: "";
       width: 20px;
       height: 20px;
       border-radius: 50%;
       background: var(--tc);
       transition: transform var(--t) var(--ease);
       transform: translateX(0);
   }

   [data-theme="light"] .theme-toggle::after {
       transform: translateX(24px);
   }

   /* ── LABEL ── */
   .at-label {
       font-size: 10px;
       letter-spacing: 0.22em;
       text-transform: uppercase;
       color: var(--tc);
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 1.5rem;
   }

   .at-label::before {
       content: "";
       width: 36px;
       height: 1px;
       background: var(--tc);
       flex-shrink: 0;
   }

   /* ══ 1. HERO ══ */
   .at-hero {
       position: relative;
       min-height: 92vh;
       display: flex;
       flex-direction: column;
       justify-content: flex-end;
       padding: 6rem 8% 5rem;
       border-bottom: 1px solid var(--line);
       overflow: hidden;
   }

   .at-blueprint {
       position: absolute;
       inset: 0;
       z-index: 0;
       background: var(--blueprint-bg);
       transition: background var(--t) var(--ease);
   }

   .at-blueprint canvas {
       position: absolute;
       inset: 0;
       width: 100%;
       height: 100%;
   }

   .at-hero-overlay {
       position: absolute;
       inset: 0;
       z-index: 1;
       background: linear-gradient(to top,
               var(--bg) 0%,
               var(--bg) 18%,
               transparent 55%);
       transition: background var(--t) var(--ease);
   }

   .at-hero-content {
       position: relative;
       z-index: 2;
       max-width: 800px;
   }

   .at-hero-eyebrow {
       font-size: 10px;
       letter-spacing: 0.25em;
       text-transform: uppercase;
       color: var(--tc);
       margin-bottom: 2rem;
       opacity: 0;
       display: flex;
       align-items: center;
       gap: 12px;
       animation: fadeUp 0.8s var(--ease) 0.2s forwards;
   }

   .at-hero-eyebrow::before {
       content: "";
       width: 36px;
       height: 1px;
       background: var(--tc);
   }

   .at-hero-h1 {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(38px, 6.5vw, 72px);
       font-weight: 300;
       font-style: italic;
       line-height: 1.1;
       color: var(--cr);
       margin-bottom: 1.75rem;
       opacity: 0;
       animation: fadeUp 0.9s var(--ease) 0.4s forwards;
   }

   .at-hero-h1 span {
       color: var(--tc);
       font-style: italic;
   }

   .at-hero-sub {
       font-size: 15px;
       color: var(--cr2);
       line-height: 1.85;
       max-width: 500px;
       font-weight: 300;
       opacity: 0;
       animation: fadeUp 0.9s var(--ease) 0.6s forwards;
   }

   .at-hero-scroll {
       position: absolute;
       bottom: 2rem;
       right: 8%;
       z-index: 2;
       display: flex;
       align-items: center;
       gap: 10px;
       font-size: 10px;
       letter-spacing: 0.18em;
       text-transform: uppercase;
       color: var(--cr3);
       opacity: 0;
       animation: fadeUp 0.8s var(--ease) 1s forwards;
   }

   .at-hero-scroll::after {
       content: "";
       width: 1px;
       height: 40px;
       background: var(--tc);
       animation: scrollPulse 2s ease-in-out infinite;
   }

   /* ══ 2. STATS ══ */
   .at-stats {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       border-bottom: 1px solid var(--line);
   }

   .at-stat {
       padding: 3rem 2rem;
       border-right: 1px solid var(--line);
       position: relative;
       overflow: hidden;
       transition: background var(--t) var(--ease);
   }

   .at-stat:last-child {
       border-right: none;
   }

   .at-stat:hover {
       background: var(--bg3);
   }

   .at-stat-num {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(40px, 5vw, 64px);
       font-weight: 300;
       color: var(--cr);
       line-height: 1;
       margin-bottom: 0.5rem;
       display: flex;
       align-items: baseline;
       gap: 4px;
   }

   .at-stat-num sup {
       font-size: 0.45em;
       color: var(--tc);
       font-family: "Jost", sans-serif;
       font-weight: 300;
   }

   .at-stat-label {
       font-size: 11px;
       letter-spacing: 0.12em;
       text-transform: uppercase;
       color: var(--cr3);
   }

   .at-stat-line {
       position: absolute;
       bottom: 0;
       left: 0;
       height: 2px;
       width: 0;
       background: var(--tc);
       transition: width 0.6s var(--ease);
   }

   .at-stat:hover .at-stat-line {
       width: 100%;
   }

   /* ══ 3. MANIFIESTO ══ */
   .at-manifiesto {
       display: grid;
       grid-template-columns: 1fr 1.25fr;
       border-bottom: 1px solid var(--line);
   }

   .at-man-left {
       padding: 5rem 6% 5rem 8%;
       border-right: 1px solid var(--line);
       position: relative;
       overflow: hidden;
   }

   .at-man-deco {
       position: absolute;
       bottom: -40px;
       left: -40px;
       width: 220px;
       height: 220px;
       border-radius: 50%;
       border: 1px solid var(--line);
       opacity: 0.5;
       pointer-events: none;
   }

   .at-man-deco2 {
       position: absolute;
       bottom: -20px;
       left: -20px;
       width: 160px;
       height: 160px;
       border-radius: 50%;
       border: 1px solid var(--line);
       opacity: 0.4;
       pointer-events: none;
   }

   .at-man-titulo {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(28px, 3.5vw, 42px);
       font-weight: 600;
       line-height: 1.2;
       margin-bottom: 2rem;
   }

   .at-man-titulo em {
       font-style: italic;
       color: var(--tc2);
       font-weight: 300;
   }

   .at-man-p {
       font-size: 14.5px;
       line-height: 1.95;
       color: var(--cr2);
       font-weight: 300;
   }

   .at-man-p+.at-man-p {
       margin-top: 1.1rem;
   }

   .at-man-quote {
       margin-top: 2.5rem;
       padding: 1.5rem 1.5rem 1.5rem 2rem;
       border-left: 2px solid var(--tc);
       background: var(--bg3);
       border-radius: 0 var(--radius) var(--radius) 0;
       font-family: "Cormorant Garamond", serif;
       font-size: 17px;
       font-style: italic;
       color: var(--cr2);
       line-height: 1.65;
       transition: background var(--t) var(--ease);
   }

   .at-man-right {
       padding: 5rem 8% 5rem 6%;
       display: flex;
       flex-direction: column;
       gap: 0;
       justify-content: center;
   }

   .at-pilar {
       display: grid;
       grid-template-columns: 42px 1fr;
       gap: 14px;
       padding: 1.6rem 0;
       border-bottom: 1px solid var(--line2);
       align-items: start;
       cursor: default;
       transition: padding-left var(--t) var(--ease);
   }

   .at-pilar:first-child {
       padding-top: 0;
   }

   .at-pilar:last-child {
       border-bottom: none;
       padding-bottom: 0;
   }

   .at-pilar:hover {
       padding-left: 8px;
   }

   .at-pilar-num {
       font-family: "Cormorant Garamond", serif;
       font-size: 12px;
       color: var(--tc);
       padding-top: 2px;
       letter-spacing: 0.06em;
       display: flex;
       align-items: flex-start;
   }

   .at-pilar-nombre {
       font-size: 13.5px;
       font-weight: 500;
       color: var(--cr);
       margin-bottom: 6px;
       letter-spacing: 0.01em;
       display: flex;
       align-items: center;
       gap: 8px;
   }

   .at-pilar-dot {
       width: 5px;
       height: 5px;
       border-radius: 50%;
       background: var(--tc);
       flex-shrink: 0;
       opacity: 0;
       transition: opacity var(--t);
   }

   .at-pilar:hover .at-pilar-dot {
       opacity: 1;
   }

   .at-pilar-desc {
       font-size: 13px;
       color: var(--cr3);
       line-height: 1.75;
   }

   /* ══ 4. NOMBRE ATYC ══ */
   .at-nombre {
       padding: 5rem 8%;
       border-bottom: 1px solid var(--line);
       position: relative;
       overflow: hidden;
   }

   .at-nombre-bg {
       position: absolute;
       inset: 0;
       z-index: 0;
       pointer-events: none;
       display: flex;
       align-items: center;
       justify-content: center;
       overflow: hidden;
   }

   .at-nombre-ghost {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(120px, 20vw, 240px);
       font-weight: 600;
       color: var(--tc);
       opacity: 0.03;
       letter-spacing: -0.02em;
       user-select: none;
       white-space: nowrap;
   }

   .at-nombre-intro {
       position: relative;
       z-index: 1;
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(18px, 2.5vw, 26px);
       font-weight: 300;
       line-height: 1.6;
       color: var(--cr2);
       max-width: 680px;
       margin-bottom: 3rem;
   }

   .at-nombre-intro strong {
       color: var(--cr);
       font-weight: 600;
   }

   .at-letras {
       position: relative;
       z-index: 1;
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       border: 1px solid var(--line);
       border-radius: 8px;
       overflow: hidden;
   }

   .at-letra {
       padding: 2.5rem 1.5rem;
       border-right: 1px solid var(--line);
       text-align: center;
       cursor: default;
       position: relative;
       overflow: hidden;
       transition: background var(--t) var(--ease);
   }

   .at-letra:last-child {
       border-right: none;
   }

   .at-letra::before {
       content: "";
       position: absolute;
       inset: 0;
       background: linear-gradient(135deg, var(--tc) 0%, transparent 50%);
       opacity: 0;
       transition: opacity var(--t) var(--ease);
   }

   .at-letra:hover {
       background: var(--bg3);
   }

   .at-letra:hover::before {
       opacity: 0.06;
   }

   .at-letra-char {
       display: block;
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(48px, 6vw, 72px);
       font-weight: 600;
       color: var(--tc);
       line-height: 1;
       margin-bottom: 14px;
       transition: transform var(--t) var(--ease);
   }

   .at-letra:hover .at-letra-char {
       transform: scale(1.05);
   }

   .at-letra-concepto {
       font-size: 11.5px;
       font-weight: 500;
       color: var(--cr);
       text-transform: uppercase;
       letter-spacing: 0.12em;
       margin-bottom: 6px;
   }

   .at-letra-detalle {
       font-size: 12px;
       color: var(--cr3);
       line-height: 1.55;
   }

   /* ══════════════════════════════════════════════
         5. EQUIPO — GLOW UP 🔥
      ══════════════════════════════════════════════ */
   .at-equipo {
       padding: 5rem 8%;
       border-bottom: 1px solid var(--line);
   }

   .at-eq-header {
       display: flex;
       align-items: flex-end;
       justify-content: space-between;
       margin-bottom: 3rem;
       flex-wrap: wrap;
       gap: 1rem;
   }

   .at-eq-titulo {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(28px, 4vw, 44px);
       font-weight: 300;
       font-style: italic;
       color: var(--cr);
       line-height: 1.15;
       margin: 0;
   }

   .at-eq-titulo span {
       color: var(--tc);
   }

   .at-eq-sub {
       font-size: 13px;
       color: var(--cr3);
       max-width: 260px;
       line-height: 1.7;
       text-align: right;
   }

   /* Grid 4 columnas compactas */
   .at-eq-grid {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 1rem;
       margin-bottom: 1.25rem;
   }

   /* Tarjeta */
   .at-persona {
       background: var(--bg2);
       border: 1px solid var(--line);
       border-radius: 10px;
       overflow: hidden;
       position: relative;
       cursor: default;
       transition:
           transform var(--t) var(--ease),
           box-shadow var(--t) var(--ease),
           border-color var(--t) var(--ease);
   }

   /* Línea glow terracota en el top al hover */
   .at-persona::before {
       content: "";
       position: absolute;
       top: 0;
       left: 0;
       right: 0;
       height: 2px;
       background: linear-gradient(90deg, transparent, var(--tc), transparent);
       opacity: 0;
       transition: opacity var(--t) var(--ease);
       z-index: 5;
   }

   .at-persona:hover {
       transform: translateY(-6px);
       border-color: rgba(200, 113, 74, 0.45);
       box-shadow:
           0 16px 48px rgba(200, 113, 74, 0.1),
           0 4px 16px rgba(0, 0, 0, 0.4);
   }

   .at-persona:hover::before {
       opacity: 1;
   }

   /* Foto — ratio portrait 3/4 */
   .at-foto-wrap {
       position: relative;
       width: 100%;
       aspect-ratio: 3/4;
       background: var(--bg3);
       overflow: hidden;
       transition: background var(--t) var(--ease);
   }

   .at-foto-wrap img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       object-position: top center;
       display: block;
       transition: transform 0.5s var(--ease);
   }

   .at-persona:hover .at-foto-wrap img {
       transform: scale(1.05);
   }

   /* Placeholder blueprint */
   .at-foto-placeholder {
       position: absolute;
       inset: 0;
       display: flex;
       flex-direction: column;
       align-items: center;
       justify-content: center;
       gap: 8px;
   }

   .at-foto-placeholder svg {
       width: 100%;
       height: 100%;
       position: absolute;
       inset: 0;
       opacity: 0.1;
       color: var(--tc);
   }

   .at-foto-initials {
       position: relative;
       z-index: 1;
       font-family: "Cormorant Garamond", serif;
       font-size: 40px;
       font-weight: 600;
       color: var(--tc);
       opacity: 0.65;
   }

   .at-foto-label {
       position: relative;
       z-index: 1;
       font-size: 8px;
       letter-spacing: 0.2em;
       text-transform: uppercase;
       color: var(--cr3);
   }

   /* Overlay con cita — se revela al hover */
   .at-foto-overlay {
       position: absolute;
       inset: 0;
       z-index: 3;
       background: linear-gradient(to top,
               rgba(11, 9, 7, 0.96) 0%,
               rgba(11, 9, 7, 0.45) 45%,
               transparent 100%);
       opacity: 0;
       display: flex;
       align-items: flex-end;
       padding: 1.1rem;
       transition: opacity 0.35s var(--ease);
   }

   .at-persona:hover .at-foto-overlay {
       opacity: 1;
   }

   .at-foto-frase {
       font-family: "Cormorant Garamond", serif;
       font-size: 12.5px;
       font-style: italic;
       color: var(--cr2);
       line-height: 1.5;
       transform: translateY(8px);
       transition: transform 0.35s var(--ease);
   }

   .at-persona:hover .at-foto-frase {
       transform: translateY(0);
   }

   /* Badge de rol sobre la foto */
   .at-foto-tag {
       position: absolute;
       top: 10px;
       left: 10px;
       z-index: 4;
       font-size: 8px;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       color: var(--tc);
       background: rgba(11, 9, 7, 0.65);
       padding: 3px 9px;
       border-radius: 20px;
       backdrop-filter: blur(6px);
       border: 1px solid rgba(200, 113, 74, 0.3);
       transition: background var(--t) var(--ease);
   }

   [data-theme="light"] .at-foto-tag {
       background: rgba(255, 255, 255, 0.75);
   }

   /* Info inferior */
   .at-persona-info {
       padding: 1rem 1.1rem 1.1rem;
       background: var(--bg2);
       transition: background var(--t) var(--ease);
   }

   .at-pnombre {
       font-size: 13.5px;
       font-weight: 500;
       color: var(--cr);
       margin-bottom: 3px;
   }

   .at-pcargo {
       font-size: 9px;
       color: var(--tc);
       letter-spacing: 0.1em;
       text-transform: uppercase;
   }

   /* Línea decorativa que aparece en hover */
   .at-persona-info::after {
       content: "";
       display: block;
       height: 1px;
       margin-top: 10px;
       background: rgba(200, 113, 74, 0);
       transition: background 0.35s var(--ease);
   }

   .at-persona:hover .at-persona-info::after {
       background: rgba(200, 113, 74, 0.3);
   }

   .at-eq-nota {
       font-size: 13px;
       color: var(--cr2);
       line-height: 1.8;
       padding: 1.4rem 1.75rem;
       background: var(--bg3);
       border: 1px solid var(--line);
       border-radius: 8px;
       display: flex;
       align-items: flex-start;
       gap: 14px;
       transition: background var(--t) var(--ease);
   }

   .at-eq-nota-plus {
       font-family: "Cormorant Garamond", serif;
       font-size: 28px;
       color: var(--tc);
       line-height: 1;
       flex-shrink: 0;
       margin-top: -4px;
   }

   /* ══ 6. TIMELINE ══ */
   .at-timeline {
       padding: 5rem 8%;
       border-bottom: 1px solid var(--line);
       position: relative;
       overflow: hidden;
   }

   .at-tl-track {
       position: relative;
       padding-left: 32px;
       border-left: 1px solid var(--line);
       display: flex;
       flex-direction: column;
       gap: 0;
       margin-top: 2.5rem;
   }

   .at-tl-item {
       position: relative;
       padding: 0 0 2.5rem 2rem;
       cursor: default;
   }

   .at-tl-item:last-child {
       padding-bottom: 0;
   }

   .at-tl-dot {
       position: absolute;
       left: -6px;
       top: 4px;
       width: 11px;
       height: 11px;
       border-radius: 50%;
       background: var(--bg);
       border: 2px solid var(--tc);
       transition:
           background var(--t) var(--ease),
           transform var(--t) var(--ease);
   }

   .at-tl-item:hover .at-tl-dot {
       background: var(--tc);
       transform: scale(1.3);
   }

   .at-tl-year {
       font-family: "Cormorant Garamond", serif;
       font-size: 13px;
       color: var(--tc);
       font-weight: 600;
       letter-spacing: 0.08em;
       margin-bottom: 6px;
   }

   .at-tl-event {
       font-size: 14px;
       font-weight: 500;
       color: var(--cr);
       margin-bottom: 4px;
   }

   .at-tl-desc {
       font-size: 13px;
       color: var(--cr3);
       line-height: 1.7;
   }

   /* ══ 7. CTA ══ */
   .at-cta-section {
       padding: 6rem 8%;
       position: relative;
       overflow: hidden;
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 3rem;
       flex-wrap: wrap;
   }

   .at-cta-deco {
       position: absolute;
       inset: 0;
       pointer-events: none;
       z-index: 0;
   }

   .at-cta-deco svg {
       width: 100%;
       height: 100%;
       opacity: 0.25;
   }

   .at-cta-txt {
       position: relative;
       z-index: 1;
   }

   .at-cta-label {
       font-size: 10px;
       letter-spacing: 0.22em;
       text-transform: uppercase;
       color: var(--tc);
       display: flex;
       align-items: center;
       gap: 12px;
       margin-bottom: 1.25rem;
   }

   .at-cta-label::before {
       content: "";
       width: 36px;
       height: 1px;
       background: var(--tc);
   }

   .at-cta-heading {
       font-family: "Cormorant Garamond", serif;
       font-size: clamp(30px, 4.5vw, 52px);
       font-weight: 300;
       font-style: italic;
       line-height: 1.15;
       color: var(--cr2);
   }

   .at-cta-heading strong {
       display: block;
       font-style: normal;
       font-weight: 600;
       color: var(--cr);
   }

   .at-cta-btns {
       position: relative;
       z-index: 1;
       display: flex;
       flex-direction: column;
       gap: 0.75rem;
       align-items: flex-end;
   }

   .at-btn {
       display: inline-flex;
       align-items: center;
       gap: 10px;
       padding: 14px 28px;
       border-radius: 3px;
       font-family: "Jost", sans-serif;
       font-size: 11px;
       letter-spacing: 0.14em;
       text-transform: uppercase;
       font-weight: 400;
       cursor: pointer;
       text-decoration: none;
       transition: all var(--t) var(--ease);
       white-space: nowrap;
   }

   .at-btn-primary {
       background: var(--tc);
       color: #f0e8df;
       border: 1px solid var(--tc);
   }

   .at-btn-primary:hover {
       background: var(--tc2);
       border-color: var(--tc2);
       transform: translateY(-2px);
   }

   .at-btn-secondary {
       background: transparent;
       color: var(--cr);
       border: 1px solid var(--line);
   }

   .at-btn-secondary:hover {
       border-color: var(--tc);
       color: var(--tc);
       transform: translateY(-2px);
   }

   .at-btn svg {
       width: 14px;
       height: 14px;
       stroke: currentColor;
       fill: none;
       stroke-width: 2;
       stroke-linecap: round;
       stroke-linejoin: round;
       transition: transform var(--t) var(--ease);
   }

   .at-btn:hover svg {
       transform: translateX(3px);
   }

   /* ── REVEAL ── */
   .at-reveal {
       opacity: 0;
       transform: translateY(28px);
       transition:
           opacity 0.75s var(--ease),
           transform 0.75s var(--ease);
   }

   .at-reveal.vis {
       opacity: 1;
       transform: translateY(0);
   }

   @keyframes fadeUp {
       from {
           opacity: 0;
           transform: translateY(22px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes scrollPulse {

       0%,
       100% {
           transform: scaleY(1);
           opacity: 0.5;
       }

       50% {
           transform: scaleY(1.4);
           opacity: 1;
       }
   }

   /* ── RESPONSIVE ── */
   @media (max-width: 1100px) {
       .at-eq-grid {
           grid-template-columns: repeat(2, 1fr);
       }
   }

   @media (max-width: 900px) {
       .at-manifiesto {
           grid-template-columns: 1fr;
       }

       .at-man-left {
           border-right: none;
           border-bottom: 1px solid var(--line);
           padding: 3.5rem 6%;
       }

       .at-man-right {
           padding: 3.5rem 6%;
       }

       .at-stats {
           grid-template-columns: repeat(2, 1fr);
       }

       .at-stat:nth-child(2) {
           border-right: none;
       }

       .at-stat:nth-child(3) {
           border-top: 1px solid var(--line);
       }

       .at-stat:nth-child(4) {
           border-top: 1px solid var(--line);
           border-right: none;
       }
   }

   @media (max-width: 640px) {
       .at-hero {
           min-height: 80vh;
           padding: 4rem 6% 4rem;
       }

       .at-stats {
           grid-template-columns: 1fr 1fr;
       }

       .at-letras {
           grid-template-columns: repeat(2, 1fr);
       }

       .at-letra {
           padding: 2rem 1rem;
       }

       .at-eq-grid {
           grid-template-columns: repeat(2, 1fr);
       }

       .at-eq-header {
           flex-direction: column;
           align-items: flex-start;
       }

       .at-eq-sub {
           text-align: left;
           max-width: 100%;
       }

       .at-nombre,
       .at-equipo,
       .at-timeline,
       .at-cta-section {
           padding: 3.5rem 6%;
       }

       .at-cta-section {
           flex-direction: column;
           align-items: flex-start;
       }

       .at-cta-btns {
           align-items: flex-start;
       }

       .at-tl-track {
           padding-left: 16px;
       }
   }

   @media (max-width: 400px) {
       .at-eq-grid {
           grid-template-columns: 1fr;
       }
   }

   .page-nosotros .site-header {
       display: none !important;
   }