/* ===========================
   VARIABLES DE COLOR – IMPACTO + ACOMPAÑAMIENTO
   =========================== */

:root {
    /* Fondos */
    --bg-main: #FFFFFF;
    /* Blanco real: claridad */
    --bg-soft: #F4F6F8;
    /* Gris frío moderno (no bajón) */
    --bg-contrast: #0F172A;
    /* Azul oscuro: presencia */

    /* Texto */
    --text-main: #0F172A;
    /* Fuerte, legible */
    --text-muted: #475569;
    /* Secundario moderno */
    --text-invert: #FFFFFF;
    /* Para fondos oscuros */

    /* Identidad */
    --accent: #22C55E;
    /* Verde VIDA (impactante) */
    --accent-strong: #16A34A;
    /* Énfasis */
    --accent-warm: #F59E0B;
    /* Humano (uso puntual) */

    /* Bordes */
    --border-soft: #E2E8F0;
}

/* ===========================
   RESET BÁSICO (ANTIBUG)
   =========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;

    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}










/* ===========================
   NAVBAR – PRESENCIA Y CLARIDAD
   =========================== */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;

    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
}

.navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Marca */

.navbar__brand {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.2px;

    color: var(--text-main);
    text-decoration: none;
    white-space: nowrap;
}

/* Navegación */

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.navbar__link {
    position: relative;

    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;

    padding: 4px 0;
    transition: color 0.2s ease;
}

/* Línea inferior animada */

.navbar__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.25s ease;
}

.navbar__link:hover {
    color: var(--text-main);
}

.navbar__link:hover::after {
    width: 100%;
}

/* Estado activo */

.navbar__link.is-active {
    color: var(--text-main);
}

.navbar__link.is-active::after {
    width: 100%;
}

/* Link destacado (otro proyecto) */

.navbar__link--accent {
    color: var(--accent);
}

.navbar__link--accent::after {
    background-color: var(--accent-strong);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .navbar__container {
        flex-direction: column;
        gap: 14px;
    }

    .navbar__nav {
        gap: 20px;
    }
}








/* ===========================
   HERO – IMPACTO + ACOMPAÑAMIENTO
   =========================== */

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 24px 120px;

    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 72px;
    align-items: center;
}

/* Contenido */

.hero__content {
    max-width: 680px;
}

/* Badge */

.hero__badge {
    display: inline-block;
    margin-bottom: 20px;

    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    color: var(--accent-strong);
    background-color: rgba(34, 197, 94, 0.12);
    padding: 6px 12px;
    border-radius: 999px;
}

/* Título */

.hero__title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;

    color: var(--text-main);
}

/* Lead */

.hero__lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Texto */

.hero__text {
    font-size: 1.05rem;
    max-width: 600px;
    margin-bottom: 36px;

    color: var(--text-muted);
}

/* Acciones */

.hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* CTA principal */

.hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;
    border-radius: 10px;

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    color: var(--text-invert);
    background-color: var(--accent);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.25);
}

/* CTA secundaria */

.hero__cta--ghost {
    background-color: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.hero__cta--ghost:hover {
    background-color: rgba(34, 197, 94, 0.08);
    box-shadow: none;
}

/* Imagen */

.hero__media {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero__media::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.08), transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

.hero__image {
    max-width: 600px;
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero__image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 96px;
        gap: 48px;
    }

    .hero__media {
        order: -1;
    }

    .hero__image {
        max-width: 350px;
    }
}






/* ===========================
   SECCIÓN – IDENTIFICACIÓN REAL
   =========================== */

.section-phrase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 24px;

    display: flex;
    justify-content: center;
}

/* Caja */

.section-phrase__box {
    max-width: 860px;
    padding: 64px 72px;

    background-color: var(--bg-soft);
    border-radius: 20px;

    position: relative;
}

/* Línea sutil de energía */

.section-phrase__box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 4px;

    background-color: var(--accent);
    border-radius: 4px;
}

/* Frase */

.section-phrase__quote {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 28px;

    color: var(--text-main);
}

/* Lead */

.section-phrase__lead {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 24px;

    color: var(--text-muted);
}

/* Texto */

.section-phrase__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);

    max-width: 680px;
    margin-bottom: 18px;
}

/* Highlight */

.section-phrase__highlight {
    color: var(--accent);
    font-weight: 600;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .section-phrase__box {
        padding: 48px 32px;
    }

    .section-phrase__quote {
        font-size: 2rem;
    }
}







/* ===========================
   SECCIÓN – PARA QUIÉN ES (VIVA)
   =========================== */

.section-audience {
    padding: 96px 24px;
    background: linear-gradient(180deg,
            var(--bg-main) 0%,
            var(--bg-soft) 100%);
}

.section-audience__container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-audience__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 56px;
    max-width: 520px;
}

/* Grid */

.section-audience__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Card base */

.section-audience__item {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    gap: 16px;

    position: relative;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-audience__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Tag superior */

.section-audience__tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;

    color: var(--accent);
}

/* Título */

.section-audience__item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Texto */

.section-audience__item-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Variantes visuales sutiles */

.section-audience__item--family {
    border-top: 4px solid var(--accent);
}

.section-audience__item--self {
    border-top: 4px solid #ff7a18;
}

.section-audience__item--doubt {
    border-top: 4px solid #6c63ff;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .section-audience__list {
        grid-template-columns: 1fr;
    }
}








/* ===========================
   SECCIÓN – LO QUE NO SE VE (IMPACTANTE)
   =========================== */

.section-invisible {
    padding: 96px 24px;
    background-color: var(--bg-main);
}

.section-invisible__header {
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-invisible__title {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-invisible__intro {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Grid visual */

.section-invisible__grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Cards */

.section-invisible__card {
    background-color: #ffffff;
    padding: 36px 32px;
    border-radius: 20px;

    font-size: 1.05rem;
    line-height: 1.6;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.section-invisible__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* Destacados */

.section-invisible__card strong {
    color: var(--accent);
    font-weight: 700;
}

.section-invisible__card.highlight {
    background: linear-gradient(135deg,
            var(--accent),
            #2ec4b6);
    color: #ffffff;
}

.section-invisible__card.highlight strong {
    color: #ffffff;
}

.section-invisible__card.highlight-alt {
    background-color: #f0f4ff;
}

.section-invisible__card.final {
    grid-column: span 2;
    font-size: 1.15rem;
    font-weight: 500;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .section-invisible__grid {
        grid-template-columns: 1fr;
    }

    .section-invisible__card.final {
        grid-column: span 1;
    }
}








/* ===========================
   SECCIÓN – SEGUIR LEYENDO
   =========================== */

.section-reading {
    padding: 96px 24px;
    background: linear-gradient(180deg,
            #f7f9ff 0%,
            #ffffff 100%);
}

.section-reading__header {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.section-reading__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-reading__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Grid */

.reading-list {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
}

/* Cards */

.reading-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 22px;

    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.reading-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
}

.reading-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.reading-card__text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Expand */

.reading-card__expand p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.reading-card__note {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.75;
}

/* Botón */

.reading-card__toggle {
    background: none;
    border: none;
    padding: 0;
    margin: 8px 0 20px;

    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);

    cursor: pointer;
}

.reading-card__toggle:hover {
    text-decoration: underline;
}

/* CTA libro */

.reading-card__cta {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
}

.reading-card__cta:hover {
    text-decoration: underline;
}

/* Card destacada */

.reading-card.accent {
    background: linear-gradient(135deg,
            var(--accent),
            #2ec4b6);
    color: #ffffff;
}

.reading-card.accent .reading-card__text,
.reading-card.accent .reading-card__expand p,
.reading-card.accent .reading-card__cta,
.reading-card.accent .reading-card__toggle {
    color: #ffffff;
}

.reading-card.accent .reading-card__toggle:hover,
.reading-card.accent .reading-card__cta:hover {
    opacity: 0.85;
}

/* Responsive */

@media (max-width: 900px) {
    .reading-list {
        grid-template-columns: 1fr;
    }

    .section-reading__header {
        text-align: left;
    }
}










/* ===========================
   SECCIÓN – EL LIBRO (CONSECUENCIA)
   =========================== */

.section-book {
    padding: 120px 24px;
    background: linear-gradient(180deg,
            var(--bg-soft) 0%,
            var(--bg-main) 100%);
}

.section-book__container {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

/* Contenido */

.section-book__content {
    max-width: 560px;
}

.section-book__title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;

    color: var(--text-main);
}

.section-book__lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* Lista */

.section-book__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-book__list li {
    position: relative;
    padding-left: 28px;

    font-size: 1rem;
    color: var(--text-main);
}

/* Bullet personalizado */

.section-book__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;

    width: 10px;
    height: 10px;
    border-radius: 50%;

    background-color: var(--accent);
}

/* CTA */

.section-book__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 32px;
    border-radius: 12px;

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    background-color: var(--accent);
    color: var(--text-invert);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.section-book__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.3);
}

/* Media / mockup */

.section-book__media {
    display: flex;
    justify-content: center;
    align-items: center;

    /* respiración visual */
    padding: 24px;
}

/* Imagen del libro */
.section-book__media img {
    max-width: 320px;
    width: 100%;
    height: auto;

    /* sensación de objeto real */
    border-radius: 6px;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.18),
        0 8px 16px rgba(0, 0, 0, 0.12);

    /* leve inclinación editorial */
    transform: rotate(-1.5deg);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover sutil (no efecto tienda) */
.section-book__media img:hover {
    transform: rotate(0deg) translateY(-4px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.22),
        0 12px 24px rgba(0, 0, 0, 0.16);
}



/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 900px) {
    .section-book__container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .section-book__media {
        order: -1;
    }

    .section-book__mockup {
        width: 200px;
        height: 300px;
    }
}









/* ===========================
   FOOTER – CIERRE HUMANO
   =========================== */

.footer {
    background: linear-gradient(135deg,
            #0f172a,
            #020617);
    color: #ffffff;
    padding: 96px 24px 64px;
}

.footer__container {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Mensaje */

.footer__message {
    max-width: 720px;
    margin-bottom: 48px;
}

.footer__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer__text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5f5;
    margin-bottom: 16px;
}

.footer__text.strong {
    font-weight: 600;
    color: #ffffff;
}

/* Acciones */

.footer__actions {
    display: flex;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer__action {
    padding: 14px 28px;
    border-radius: 999px;

    background-color: var(--accent);
    color: #ffffff;

    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer__action:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Variante outline */

.footer__action.outline {
    background-color: transparent;
    border: 1px solid #ffffff;
}

.footer__action.outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Meta */

.footer__meta {
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive */

@media (max-width: 640px) {
    .footer__title {
        font-size: 1.6rem;
    }
}











/* pagina libro */
/* ===========================
   PÁGINA LIBRO
   =========================== */

/* HERO */

.book-hero {
    padding: 120px 24px;
    background: linear-gradient(135deg,
            #0f2027,
            #203a43,
            #2c5364);
    color: #ffffff;
}

.book-hero__content {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.book-hero__title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.book-hero__subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.book-hero__description {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 520px;
}

.book-hero__cover img {
    width: 100%;
    max-width: 380px;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}









/* NOTAS */

/* ===========================
   SECCIÓN – NOTAS DEL LIBRO
   =========================== */

.book-notes {
    max-width: 820px;
    margin: 0 auto 120px;
    padding: 72px 48px;

    background-color: #ffffff;
    border-radius: 28px;

    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
}

/* título */

.book-notes__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
}

/* lista principal */

.book-notes__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 48px;
    max-width: 520px;
}

.book-notes__list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 14px;
    color: var(--text-main);
}

/* divisor */

.book-notes__divider {
    width: 64px;
    height: 4px;
    margin: 48px auto;

    background-color: var(--accent);
    border-radius: 999px;
    opacity: 0.6;
}

/* frase editorial */

.book-notes__quote {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 20px;
    color: var(--text-main);
}

.book-notes__quote.emphasis {
    font-weight: 700;
    color: var(--accent);
    margin-top: 28px;
}

/* filtros */

.book-notes__filters {
    list-style: none;
    padding: 0;
    margin: 24px auto;
    max-width: 420px;
    text-align: center;
}

.book-notes__filters li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 640px) {
    .book-notes {
        padding: 48px 28px;
    }

    .book-notes__title {
        font-size: 1.4rem;
    }
}

/* ===========================
   SECCIÓN – COMPRA DEL LIBRO
   =========================== */

.book-buy {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 64px 56px;

    background: linear-gradient(135deg,
            rgba(34, 197, 94, 0.10),
            rgba(34, 197, 94, 0.04));

    border-radius: 28px;
    text-align: center;

    position: relative;
    overflow: hidden;
}

/* halo sutil de fondo */
.book-buy::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle,
            rgba(34, 197, 94, 0.18) 0%,
            transparent 60%);
    z-index: 0;
}

/* tipografía arriba del CTA */
.book-buy__lead {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--text-main);
    position: relative;
    z-index: 1;
}

.book-buy__brief {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* BOTÓN */
.book-buy__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 40px;
    border-radius: 999px;

    background-color: var(--accent);
    color: #ffffff;

    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;

    box-shadow: 0 14px 36px rgba(34, 197, 94, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    position: relative;
    z-index: 1;
}

.book-buy__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(34, 197, 94, 0.45);
}

/* nota legal / aclaración */
.book-buy__note {
    margin-top: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 640px) {
    .book-buy {
        padding: 48px 28px;
    }

    .book-buy__lead {
        font-size: 1.1rem;
    }
}








/* ===========================
   FOOTER
   =========================== */

.site-footer {
    padding: 64px 24px;
    background: linear-gradient(180deg,
            #0f2027,
            #203a43);
    color: #ffffff;
}

.site-footer__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.site-footer__text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.site-footer__text.muted {
    opacity: 0.75;
    font-size: 0.9rem;
}



.site-footer__copyright {
    font-size: 0.8rem;
    opacity: 0.6;
}