html {
    scroll-behavior: smooth;
}
body {
    font-family: "Quicksand", sans-serif;
}
section {
    scroll-margin-top: 5.5rem;
}
.chat-bubble-left {
    border-bottom-left-radius: 0.5rem;
}
.chat-bubble-right {
    border-bottom-right-radius: 0.5rem;
}
.hero-gradient {
    background: linear-gradient(rgba(16, 22, 34, 0.6), rgba(16, 22, 34, 0.8));
}
.persona-button:hover {
    transform: translateY(-2px);
}

.js .reveal-section {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
    will-change: opacity, transform;
}

.js .reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .js .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* === /info pages typography === */
.info-content h1 {
    font-size: 2rem; /* antes 2.25rem */
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    text-align: center;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .info-content h1 {
        font-size: 2.6rem; /* antes 3rem */
        text-align: center;
        padding-bottom: 30px;
    }
}

.info-content h2 {
    font-size: 1.5rem; /* text-2xl */
    line-height: 1.2;
    font-weight: 700;
    margin: 2rem 0 0.75rem 0;
}

.info-content p,
.info-content li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(15, 23, 42, 0.85); /* slate-ish, ajustalo si estás en dark */
}

.info-content ul {
    margin: 1rem 0 1rem 1.25rem;
    list-style: disc;
}

/* Links en /info */
.info-content a {
    color: #2563eb; /* azul */
    font-weight: 600;
    text-decoration: none;
}

.info-content a:hover {
    /* text-decoration: underline;*/
    text-underline-offset: 3px;
}

/* Listas */
.info-content ul {
    margin: 1rem 0 1rem 1.25rem;
    list-style: disc;
}

.info-content li {
    margin: 0.35rem 0;
}

.info-back {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.7);
    text-decoration: none;
}

.info-back:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
    --tw-text-opacity: 1;
    color: rgb(19 91 236 / var(--tw-text-opacity, 1));
}
