/* ==========================================================================
   Conócenos — OSOLMA

   Sigue el vocabulario visual de la portada:
     · degradado navy con destello radial en las secciones de impacto
     · marcos de foto con borde degradado y halo difuminado detrás
     · --accent por tarjeta combinado con color-mix()
     · barra lateral que aparece al pasar el ratón + elevación translateY
     · insignias numeradas e iconos que rotan
     · animaciones de flotación suaves

   Prefijos: about-, mascot-, mission-, how-step-, trust-card
   ========================================================================== */

.about-page { background: var(--bg); }

/* Patrón de huellas reutilizable como capa decorativa. */
.about-paws {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%233255d7' fill-opacity='0.05'%3E%3Cellipse cx='30' cy='34' rx='7' ry='9'/%3E%3Cellipse cx='44' cy='26' rx='5' ry='7'/%3E%3Cellipse cx='57' cy='30' rx='5' ry='7'/%3E%3Cellipse cx='46' cy='45' rx='11' ry='9'/%3E%3Cellipse cx='90' cy='94' rx='7' ry='9'/%3E%3Cellipse cx='104' cy='86' rx='5' ry='7'/%3E%3Cellipse cx='84' cy='105' rx='11' ry='9'/%3E%3C/g%3E%3C/svg%3E");
}

.about-paws-soft { opacity: 0.65; }

.about-paws-light {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cellipse cx='30' cy='34' rx='7' ry='9'/%3E%3Cellipse cx='44' cy='26' rx='5' ry='7'/%3E%3Cellipse cx='57' cy='30' rx='5' ry='7'/%3E%3Cellipse cx='46' cy='45' rx='11' ry='9'/%3E%3Cellipse cx='90' cy='94' rx='7' ry='9'/%3E%3Cellipse cx='104' cy='86' rx='5' ry='7'/%3E%3Cellipse cx='84' cy='105' rx='11' ry='9'/%3E%3C/g%3E%3C/svg%3E");
}

/* Insignia tipo píldora, hermana de .section-eyebrow y .hero-badge */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.95rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    font-size: 0.85rem;
    font-weight: 850;
}

/* Botón fantasma sobre fondo oscuro */
.btn-hero-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.btn-hero-ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
}

/* ==========================================================================
   1. HERO
   ========================================================================== */
.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(7rem, 14vw, 10rem) 0 clamp(5rem, 10vw, 7.5rem);
    color: #fff;
    background:
        radial-gradient(circle at 18% 12%, rgba(84, 104, 234, 0.42), transparent 42%),
        radial-gradient(circle at 88% 78%, rgba(15, 118, 110, 0.32), transparent 46%),
        linear-gradient(135deg, #0b1730 0%, #12224a 55%, #16295a 100%);
}

/* Destellos difuminados que dan profundidad al fondo */
.about-hero-glow {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.about-hero-glow-1 {
    top: -120px;
    right: 6%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(94, 124, 255, 0.5), transparent 68%);
    animation: aboutGlowFloat 12s ease-in-out infinite alternate;
}

.about-hero-glow-2 {
    bottom: -160px;
    left: -60px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.32), transparent 68%);
    animation: aboutGlowFloat 15s ease-in-out infinite alternate-reverse;
}

@keyframes aboutGlowFloat {
    from { transform: translate3d(0, 0, 0) scale(1); }
    to { transform: translate3d(-24px, 30px, 0) scale(1.12); }
}

.about-hero .container { position: relative; z-index: 2; }

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.about-hero-copy h1 {
    margin: 1.1rem 0 0;
    color: #fff;
    font-size: clamp(2.2rem, 5.6vw, 3.9rem);
    font-weight: 900;
    letter-spacing: -0.038em;
    line-height: 1.06;
}

/* Segunda línea del título con degradado */
.about-hero-accent {
    display: block;
    background: linear-gradient(100deg, #8ba4ff 0%, #5eead4 55%, #f0abfc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero-copy > p {
    margin: 1.2rem 0 0;
    max-width: 50ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.02rem, 1.7vw, 1.2rem);
    line-height: 1.7;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.4rem;
    margin: 2.2rem 0 0;
    padding: 0;
    list-style: none;
}

.about-hero-chips li {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    font-weight: 700;
}

.about-hero-chips i { color: #5eead4; font-size: 0.82rem; }

/* --- Marco de la foto: degradado + halo, como el de la portada --- */
.about-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-hero-frame {
    position: relative;
    width: min(440px, 100%);
    padding: 7px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(94, 124, 255, 0.95), rgba(94, 234, 212, 0.75) 55%, rgba(236, 72, 153, 0.7));
    box-shadow: 0 40px 90px rgba(4, 10, 30, 0.5);
    animation: aboutFloat 7s ease-in-out infinite;
}

.about-hero-frame::before {
    content: "";
    position: absolute;
    inset: -20%;
    z-index: 0;
    background: radial-gradient(circle, rgba(94, 124, 255, 0.45), transparent 62%);
    filter: blur(38px);
    pointer-events: none;
}

.about-hero-frame picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(170deg, #eef2ff, #dbe4fb);
}

.about-hero-frame img { display: block; width: 100%; height: auto; }

@keyframes aboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Tarjeta flotante con el nombre del embajador */
.about-hero-tag {
    position: absolute;
    right: max(-6px, -2%);
    bottom: 8%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(4, 10, 30, 0.32);
    animation: aboutFloat 7s ease-in-out infinite 0.6s;
}

.about-hero-tag > i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #b45309;
    background: linear-gradient(135deg, #fde68a, #fcd34d);
    border-radius: 11px;
    font-size: 0.85rem;
}

.about-hero-tag strong { display: block; font-size: 0.92rem; font-weight: 900; }
.about-hero-tag small { display: block; color: var(--muted); font-size: 0.75rem; }

/* Transición suave hacia la sección siguiente */
.about-hero-wave {
    position: absolute;
    inset: auto 0 -1px;
    z-index: 1;
    height: clamp(40px, 6vw, 80px);
    background: var(--bg);
    clip-path: ellipse(75% 100% at 50% 100%);
}

/* ==========================================================================
   2. HISTORIA — línea de tiempo
   ========================================================================== */
.about-story-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
    margin-top: 2.5rem;
}

.about-timeline {
    position: relative;
    display: grid;
    gap: 1.6rem;
    padding-left: 2.6rem;
}

/* Riel vertical que une los hitos */
.about-timeline::before {
    content: "";
    position: absolute;
    top: 0.6rem;
    bottom: 0.6rem;
    left: 1.05rem;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, #b45309, #5468ea 50%, #16a34a);
    opacity: 0.35;
}

.about-milestone {
    position: relative;
    padding: 1.35rem 1.5rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-milestone:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-milestone-dot {
    position: absolute;
    top: 1.35rem;
    left: -2.6rem;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border: 3px solid var(--bg);
    border-radius: 50%;
    font-size: 0.78rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 35%, transparent);
}

.about-milestone h3 {
    margin: 0;
    color: var(--ink);
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.about-milestone p {
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-milestone strong { color: var(--ink); font-weight: 800; }

/* --- Cita destacada --- */
.about-quote {
    position: relative;
    overflow: hidden;
    padding: 2rem 1.6rem 1.5rem;
    color: #fff;
    border-radius: 22px;
    background:
        radial-gradient(circle at 85% 8%, rgba(84, 104, 234, 0.45), transparent 55%),
        linear-gradient(150deg, #0b1730, #16295a);
    box-shadow: var(--shadow-md);
}

.about-quote-mark {
    position: absolute;
    top: -0.6rem;
    right: 1rem;
    color: rgba(255, 255, 255, 0.1);
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.about-quote blockquote {
    position: relative;
    margin: 0;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 600;
    line-height: 1.65;
}

.about-quote footer {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.4rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-quote-avatar {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: #5eead4;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
}

.about-quote footer strong { display: block; font-size: 0.92rem; font-weight: 850; }
.about-quote footer small { display: block; color: rgba(255, 255, 255, 0.6); font-size: 0.78rem; }

/* ==========================================================================
   3. MASCOTAS
   ========================================================================== */
.about-mascots {
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.about-mascots .container { position: relative; z-index: 2; }

/* --- Embajador: tarjeta ancha con foto y datos --- */
.mascot-hero {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: clamp(1.5rem, 4vw, 3rem);
    overflow: hidden;
    margin: 2.5rem 0 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--border));
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 90%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 55%),
        var(--surface);
    box-shadow: var(--shadow-md);
}

.mascot-hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.mascot-hero-halo {
    position: absolute;
    inset: 8% 6% 0;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 30%, transparent), transparent 68%);
    filter: blur(28px);
}

.mascot-hero-media picture {
    position: relative;
    z-index: 1;
    display: block;
    width: min(100%, 340px);
}

.mascot-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 22px 32px rgba(16, 30, 60, 0.22));
    animation: aboutFloat 8s ease-in-out infinite;
}

.mascot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.8rem;
    color: #7c4a03;
    background: linear-gradient(135deg, #fde68a, #fcd34d);
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(120, 80, 10, 0.22);
}

.mascot-hero-tagline {
    display: block;
    margin-top: 1rem;
    color: var(--accent);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.mascot-hero-copy h3 {
    margin: 0.2rem 0 0;
    color: var(--ink);
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.05;
}

.mascot-hero-copy > p {
    margin: 0.9rem 0 0;
    max-width: 54ch;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
}

.mascot-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1.6rem 0 0;
    padding: 0;
}

.mascot-facts > div {
    padding: 0.85rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface-soft);
}

.mascot-facts dt {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mascot-facts dt i { color: var(--accent); font-size: 0.72rem; }

.mascot-facts dd {
    margin: 0.3rem 0 0;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 800;
}

/* --- Resto del equipo --- */
.mascot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

.mascot-card {
    position: relative;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 1.1rem;
    overflow: hidden;
    padding: 1.35rem;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* Barra lateral que aparece al pasar el ratón, como en los pasos de la portada */
.mascot-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 4px;
    border-radius: 22px 0 0 22px;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.mascot-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
    box-shadow: var(--shadow-md);
}

.mascot-card:hover::before { opacity: 1; }

.mascot-photo {
    position: relative;
    display: flex;
    justify-content: center;
}

.mascot-halo {
    position: absolute;
    inset: 10% 0 0;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 26%, transparent), transparent 68%);
    filter: blur(20px);
}

.mascot-photo picture { position: relative; z-index: 1; display: block; width: 100%; }

.mascot-photo img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 14px 22px rgba(16, 30, 60, 0.18));
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mascot-card:hover .mascot-photo img { transform: translateY(-6px) scale(1.04); }

/* Etiqueta de rasgo sobre la foto */
.mascot-trait {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 0.24rem 0.6rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--accent) 24%, transparent);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 850;
}

.mascot-role {
    display: inline-flex;
    padding: 0.28rem 0.7rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 12%, transparent);
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 850;
}

.mascot-copy h3 {
    margin: 0.6rem 0 0;
    color: var(--ink);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.028em;
}

.mascot-copy p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ==========================================================================
   4. MISIÓN
   ========================================================================== */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    margin: 2.5rem 0 0;
    padding: 0;
    list-style: none;
}

.mission-item {
    position: relative;
    overflow: hidden;
    padding: 1.6rem 1.4rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.mission-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.mission-item:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--border));
    box-shadow: var(--shadow-md);
}

.mission-item:hover::before { transform: scaleX(1); }

/* Número grande de fondo */
.mission-watermark {
    position: absolute;
    top: 0.4rem;
    right: 0.9rem;
    color: color-mix(in srgb, var(--accent) 12%, transparent);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    pointer-events: none;
}

.mission-icon {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 13%, transparent);
    border-radius: 16px;
    font-size: 1.15rem;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.mission-item:hover .mission-icon {
    color: #fff;
    background: var(--accent);
    transform: rotate(-6deg) scale(1.08);
}

.mission-item h3 {
    position: relative;
    margin: 1rem 0 0;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.mission-item p {
    position: relative;
    margin: 0.5rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* ==========================================================================
   5. CÓMO FUNCIONA
   ========================================================================== */
.about-how { background: var(--surface-soft); }

.how-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

/* Riel que conecta los cuatro pasos */
.how-steps-track {
    position: absolute;
    top: 2.55rem;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, #3255d7, #5468ea 33%, #0f766e 66%, #16a34a);
    opacity: 0.28;
}

.how-step {
    position: relative;
    z-index: 1;
    padding: 1.6rem 1.4rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.how-step:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--accent) 34%, var(--border));
    box-shadow: var(--shadow-md);
}

.how-step-number {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    color: #fff;
    background: var(--accent);
    border: 3px solid var(--surface);
    border-radius: 50%;
    font-size: 0.92rem;
    font-weight: 900;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent) 40%, transparent);
    transition: transform 0.25s ease;
}

.how-step:hover .how-step-number { transform: scale(1.1); }

.how-step-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    margin-top: 1.1rem;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 13%, transparent);
    border-radius: 15px;
    font-size: 1.1rem;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.how-step:hover .how-step-icon {
    color: #fff;
    background: var(--accent);
    transform: rotate(-6deg) scale(1.06);
}

.how-step h3 {
    margin: 0.9rem 0 0;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.how-step p {
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.about-inline-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ==========================================================================
   6. CONFIANZA
   ========================================================================== */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 2.5rem;
}

.trust-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    align-items: start;
    gap: 1.1rem;
    overflow: hidden;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.trust-card::after {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent) 12%, transparent), transparent 68%);
    pointer-events: none;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
    box-shadow: var(--shadow-md);
}

.trust-card-icon {
    position: relative;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 13%, transparent);
    border-radius: 17px;
    font-size: 1.25rem;
    transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.trust-card:hover .trust-card-icon {
    color: #fff;
    background: var(--accent);
    transform: rotate(-6deg) scale(1.06);
}

.trust-card h3 {
    position: relative;
    margin: 0.25rem 0 0;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: -0.025em;
}

.trust-card p {
    position: relative;
    margin: 0.45rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ==========================================================================
   7. CIERRE
   ========================================================================== */
.about-cta { padding: 0; }

.about-cta-inner {
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 8vw, 6rem) 0;
    color: #fff;
    background:
        radial-gradient(circle at 20% 15%, rgba(84, 104, 234, 0.4), transparent 42%),
        radial-gradient(circle at 82% 82%, rgba(94, 234, 212, 0.22), transparent 46%),
        linear-gradient(135deg, #0b1730, #12224a);
}

.about-cta-glow {
    position: absolute;
    top: -140px;
    right: 8%;
    z-index: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(94, 124, 255, 0.42), transparent 66%);
    filter: blur(60px);
    animation: aboutGlowFloat 14s ease-in-out infinite alternate;
    pointer-events: none;
}

.about-cta-inner .container { position: relative; z-index: 2; }

.about-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
}

.about-cta-copy h2 {
    margin: 1.1rem 0 0;
    font-size: clamp(2rem, 4.8vw, 3.4rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.about-cta-copy > p {
    margin: 1rem 0 0;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.about-cta-visual { display: flex; justify-content: center; }

.about-cta-frame {
    position: relative;
    width: min(460px, 100%);
    padding: 6px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(94, 124, 255, 0.95), rgba(236, 72, 153, 0.75));
    box-shadow: 0 40px 80px rgba(4, 10, 30, 0.45);
    animation: aboutFloat 6s ease-in-out infinite;
}

.about-cta-frame::before {
    content: "";
    position: absolute;
    inset: -22%;
    z-index: 0;
    background: radial-gradient(circle, rgba(94, 124, 255, 0.45), transparent 62%);
    filter: blur(36px);
    pointer-events: none;
}

.about-cta-frame picture {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: 22px;
}

.about-cta-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.about-cta-frame:hover img { transform: scale(1.05); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1100px) {
    .mission-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .how-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .how-steps-track { display: none; }
}

@media (max-width: 992px) {
    .about-hero { padding-top: clamp(6rem, 16vw, 8rem); }
    .about-hero-grid { grid-template-columns: 1fr; }
    .about-hero-visual { order: -1; }
    .about-hero-frame { width: min(320px, 78%); }
    .about-hero-tag { right: 4%; bottom: 4%; }

    .about-story-grid { grid-template-columns: 1fr; }
    .mascot-hero { grid-template-columns: 1fr; }
    .mascot-hero-media picture { width: min(100%, 260px); }
    .about-cta-grid { grid-template-columns: 1fr; }
    .about-cta-visual { order: -1; }
    .about-cta-frame { width: min(400px, 100%); }
}

@media (max-width: 760px) {
    .mascot-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .mission-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }

    .mascot-facts { grid-template-columns: 1fr; }
    .mascot-facts > div { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; }
    .mascot-facts dd { margin: 0; }

    .about-timeline { padding-left: 2.2rem; }
    .about-milestone-dot { left: -2.2rem; width: 30px; height: 30px; }

    .about-hero-actions .btn,
    .about-cta-actions .btn { flex: 1 1 100%; justify-content: center; }

    .about-hero-chips { gap: 0.5rem 1rem; }
}

@media (max-width: 480px) {
    .mascot-card { grid-template-columns: 1fr; }
    .mascot-photo { max-width: 190px; }
    .about-hero-tag { position: static; margin-top: 1rem; animation: none; }
}

/* ==========================================================================
   PREFERENCIAS DEL SISTEMA
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .about-hero-frame,
    .about-cta-frame,
    .about-hero-tag,
    .about-hero-glow,
    .about-cta-glow,
    .mascot-hero-media img { animation: none !important; }

    .mascot-card,
    .mission-item,
    .how-step,
    .trust-card,
    .about-milestone,
    .mascot-photo img,
    .mission-icon,
    .how-step-icon,
    .trust-card-icon { transition: none !important; }

    .mascot-card:hover,
    .mission-item:hover,
    .how-step:hover,
    .trust-card:hover,
    .about-milestone:hover { transform: none; }

    .mascot-card:hover .mascot-photo img,
    .mission-item:hover .mission-icon,
    .how-step:hover .how-step-icon,
    .trust-card:hover .trust-card-icon,
    .about-cta-frame:hover img { transform: none; }
}

/* Respaldo para navegadores sin color-mix() */
@supports not (color: color-mix(in srgb, red 50%, transparent)) {
    .mascot-role,
    .mascot-trait,
    .mission-icon,
    .how-step-icon,
    .trust-card-icon { color: var(--primary); background: rgba(50, 85, 215, 0.13); }
    .mission-watermark { color: rgba(50, 85, 215, 0.12); }
    .mascot-halo,
    .mascot-hero-halo { background: radial-gradient(circle, rgba(50, 85, 215, 0.26), transparent 68%); }
    .trust-card::after { background: radial-gradient(circle, rgba(50, 85, 215, 0.12), transparent 68%); }
    .mascot-hero { border-color: rgba(50, 85, 215, 0.22); }
}
