/* =========================
   RESET BÁSICO
   ========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0A0A0A;
    color: #FFFFFF;
    line-height: 1.6;
}

/* =========================
   VARIÁVEIS DE COR E TOKENS
   ========================= */
:root {
    --color-black: #0A0A0A;
    --color-black-soft: #141414;
    --color-gold: #D4AF37;
    --color-orange: #E67E22;
    --color-yellow: #F4D03F;
    --color-white: #FFFFFF;
    --color-gray-light: #DADADA;
    --color-gray: #888888;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);

    --container-width: 1120px;
}

/* =========================
   ELEMENTOS BASE
   ========================= */
img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* =========================
   CONTAINERS E SECTIONS
   ========================= */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3.5rem 0;
    position: relative;
}

.section--small {
    padding: 2.5rem 0;
}

.section--dark {
    background: radial-gradient(circle at top, #141414 0, #000000 60%);
    color: var(--color-white);
}

.section--dark-alt {
    background: #111111;
    color: var(--color-white);
}

.section--light {
    background: #F9F9F9;
    color: #111111;
}

.section--light-alt {
    background: #FFFFFF;
    color: #111111;
}

.section--accent {
    background: linear-gradient(135deg, #D4AF37, #E67E22);
    color: #111111;
}

.section--border-top {
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.section__content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.section__content--center {
    align-items: center;
    text-align: center;
}

/* =========================
   TIPOGRAFIA
   ========================= */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', 'Times New Roman', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
}

.section__lead {
    font-size: 1.05rem;
    max-width: 34rem;
}

.eyebrow,
.hero__eyebrow {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-gold);
    font-weight: 600;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-light);
    margin-bottom: 0.75rem;
}

.small-text {
    font-size: 0.8rem;
    color: var(--color-gray);
}

.highlight-gold {
    color: var(--color-gold);
}

/* =========================
   HEADER / NAV
   ========================= */
.header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

/* =========================
   LOGO DIVINO SHAPE - PREMIUM
   ========================= */

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.35rem;

    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* DIVINO */
.logo-main {
    color: #ffffff;
    font-weight: 600;
}

/* SHAPE em destaque */
.logo-accent {
    color: var(--color-gold);
    font-weight: 700;
    position: relative;
}

/* Detalhe premium discreto */
.logo-accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        var(--color-gold),
        rgba(212, 175, 55, 0.4)
    );
}


.header__nav {
    display: none;
    gap: 1.25rem;
    align-items: center;
    font-size: 0.9rem;
}

.header__nav a {
    color: var(--color-gray-light);
    position: relative;
    transition: color 0.2s ease;
}

.header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-orange));
    transition: width 0.2s ease;
}

.header__nav a:hover {
    color: var(--color-white);
}

.header__nav a:hover::after {
    width: 100%;
}

.header__nav-cta {
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: var(--color-orange);
    color: #111111;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

.header__menu-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.header__menu-toggle span {
    display: block;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Menu mobile aberto (classe adicionada pelo JS) */
.header--menu-open .header__menu-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.header--menu-open .header__menu-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

/* Navegação mobile dropdown */
.header--menu-open .header__nav-mobile {
    max-height: 300px;
    opacity: 1;
    pointer-events: auto;
}

.header__nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0 1.5rem 1rem;
    font-size: 0.9rem;
    background: #000000;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.header__nav-mobile a {
    color: var(--color-gray-light);
}

/* =========================
   HERO
   ========================= */
.hero {
    padding-top: 4rem;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero__bullets {
    margin: 0.75rem 0;
    display: grid;
    gap: 0.25rem;
    font-size: 0.95rem;
}

.hero__bullets li::before {
    content: "• ";
    color: var(--color-yellow);
}

.hero__helper {
    margin-top: 0.5rem;
    font-weight: 500;
}

.hero__cta-group {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.hero__note {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-gray);
}

.hero__image {
    display: flex;
    justify-content: center;
}

/* =========================
   HERO - FOTO DO TREINADOR
   ========================= */

.hero__photo-placeholder {
    border-radius: 18px; /* arredondamento elegante */
    overflow: hidden;    /* garante que a imagem respeite a borda */
    border: 1px solid rgba(212, 175, 55, 0.45); /* dourado suave */
    background: radial-gradient(
        circle at top left,
        rgba(212, 175, 55, 0.08),
        #000000
    );
    box-shadow:
        inset 0 0 12px rgba(212, 175, 55, 0.12),
        0 18px 36px rgba(0, 0, 0, 0.45);
}

/* Garante que a imagem se adapte perfeitamente */
.hero__photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =========================
   BOTÕES
   ========================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.8rem 1.4rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
    text-align: center;
    white-space: nowrap;
}

.btn--large {
    padding: 0.95rem 2.2rem;
    font-size: 1.05rem;
}

.btn--primary {
    background: var(--color-orange);
    color: #111111;
    box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
    background: #ff8f2e;
}

.btn--ghost {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
}

/* =========================
   GRID UTILITÁRIA
   ========================= */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid--2cols {
    grid-template-columns: 1fr;
}

.grid--3cols {
    grid-template-columns: 1fr;
}

/* =========================
   LISTAS
   ========================= */
.list--check li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.35rem;
}

.list--check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-orange);
    font-weight: 700;
}

.list--star li {
    position: relative;
    padding-left: 1.6rem;
    margin-bottom: 0.35rem;
}

.list--star li::before {
    content: "★";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
}

.list--dash li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.25rem;
}

.list--dash li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;
}

.list--cycle {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.list--cycle li::after {
    content: " → ";
}

.list--cycle li:last-child::after {
    content: "";
}

/* =========================
   CARDS
   ========================= */
.card {
    border-radius: var(--radius-md);
    padding: 1.25rem 1.25rem;
}

.card--dark {
    background: linear-gradient(135deg, #111111, #050505);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-soft);
}

.card--light {
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.card--light p {
    color: #333333;
}

.card--outline {
    border: 1px solid rgba(212, 175, 55, 0.7);
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.08), #050505);
}

.card--transparent {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.grid--cards {
    margin-top: 1rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-orange);
    color: #111111;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* =========================
   SEÇÕES ESPECÍFICAS
   ========================= */
.section__header {
    margin-bottom: 0.25rem;
}

.section__header--center {
    text-align: center;
    align-items: center;
}

.section__highlight {
    margin-top: 0.75rem;
}

.section__highlight--gold {
    color: var(--color-gold);
}

.section__bottom-text {
    margin-top: 1rem;
    text-align: center;
}

/* Fotos do treinador em formato pequeno e quadrado */
.trainer-photos {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.trainer-photo {
    width: 130px;
    /* tamanho pequeno */
    height: 130px;
    /* formato quadrado */
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.4);
    /* leve detalhe premium */
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.trainer-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* garante recorte bonito */
    object-position: center;
    /* centraliza o rosto */
}

.trainer-photo--action {
    background: radial-gradient(circle at top, rgba(230, 126, 34, 0.12), #ffffff);
}

.trainer-photo--formal {
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.12), #ffffff);
}

/* Garantia */
.guarantee-badge {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    text-align: center;
    margin: 0 auto;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), #000000);
    box-shadow: var(--shadow-soft);
}

.guarantee-badge span {
    font-size: 0.8rem;
    color: var(--color-gray-light);
}

.guarantee-badge strong {
    font-size: 1.5rem;
    color: var(--color-gold);
}

/* Depoimentos */
.testimonial__quote {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial__author {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555555;
}

/* CTA central */
.section__cta-center {
    margin-top: 1.25rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

/* =========================
   FOOTER
   ========================= */
.footer__content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    padding-top: 2rem;
}

.footer__logos {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.footer-logo-placeholder {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(212, 175, 55, 0.6);
    font-size: 0.75rem;
    color: var(--color-gray-light);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    font-size: 0.85rem;
}

.footer__links a {
    color: var(--color-gray-light);
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__copy {
    color: var(--color-gray);
}

/* =========================
   ANIMAÇÕES SCROLL REVEAL
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   BREAKPOINTS (MOBILE-FIRST)
   ========================= */

/* Tablet */
@media (min-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero__content {
        flex-direction: row;
        align-items: center;
    }

    .hero__text {
        flex: 3;
    }

    .hero__image {
        flex: 2;
    }

    .hero__cta-group {
        flex-direction: row;
    }

    .grid--2cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid--3cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer__logos {
        flex-direction: row;
    }

    .footer__links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .header__nav {
        display: flex;
    }

    .header__menu-toggle {
        display: none;
    }

    .header__nav-mobile {
        display: none;
    }

    .section {
        padding: 4rem 0;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    body {
        font-size: 17px;
    }

    .hero {
        padding-top: 5rem;
    }

    .hero__photo-placeholder {
        max-width: 360px;
    }

    .section__content {
        gap: 2rem;
    }

    .card {
        padding: 1.5rem 1.6rem;
    }
}

/* =========================
   BÔNUS
   ========================= */
.bonus__grid {
    margin-top: 1.5rem;
}

.bonus-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
    align-items: center;
    background: radial-gradient(circle at top left, rgba(230, 126, 34, 0.12), #050505);
}

.bonus-card__image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(212, 175, 55, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    text-align: center;
    color: var(--color-gray-light);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), #000000);
}

.bonus-card__content h3 {
    margin-bottom: 0.35rem;
}

#bonus .section__lead {
    text-align: center;
    max-width: 640px;
    /* leitura confortável */
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   FAQ (ACCORDION)
   ========================= */
.faq {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 0.9rem 1rem;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.faq-question span:first-child {
    padding-right: 0.75rem;
}

.faq-icon {
    font-size: 1.3rem;
    color: #999999;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1rem;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-answer p {
    font-size: 0.9rem;
    color: #444444;
    padding-bottom: 0.75rem;
}

/* Estado aberto */
.faq-item.faq-item--open .faq-answer {
    max-height: 200px;
    /* valor suficiente para 1–2 parágrafos */
    padding-bottom: 0.75rem;
}

.faq-item.faq-item--open .faq-icon {
    color: var(--color-orange);
}

.faq-item.faq-item--open .faq-icon::before {
    content: "–";
}

/* Remover conteúdo padrão "+" quando aberto */
.faq-item .faq-icon::before {
    content: "";
}

.faq-item .faq-icon {
    position: relative;
}

.faq-item .faq-icon::before {
    content: "+";
    position: absolute;
    inset: 0;
}

/* Desktop/tablet ajustes */
@media (min-width: 768px) {
    .bonus-card {
        grid-template-columns: 90px 1fr;
    }

    .faq-answer {
        max-height: 0;
    }

    .faq-item.faq-item--open .faq-answer {
        max-height: 260px;
    }
}

/* =========================
   ÍCONES DO MÉTODO (AJUSTE FINAL)
   ========================= */

.metodo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* CENTRALIZA tudo */
    text-align: center;
    /* Centraliza texto */
    gap: 0.75rem;
}

/* Container do ícone */
.metodo-icon {
    width: 36px;
    /* tamanho equilibrado */
    height: 36px;
    border-radius: 50%;
    background: radial-gradient(circle at top left,
            rgba(212, 175, 55, 0.35),
            rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(212, 175, 55, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ícone SVG */
.metodo-icon svg {
    width: 18px;
    /* ícone legível */
    height: 18px;
    fill: var(--color-gold) !important;
    stroke: var(--color-gold) !important;
}

/* =========================
   BADGES NUMÉRICOS PREMIUM
   ========================= */

.badge--number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Fundo preto premium com leve gradiente */
    background: radial-gradient(circle at top left,
            #1a1a1a,
            #000000);

    /* Número */
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-gold);

    /* Detalhes premium */
    border: 1px solid rgba(212, 175, 55, 0.6);
    box-shadow:
        inset 0 0 6px rgba(212, 175, 55, 0.15),
        0 6px 14px rgba(0, 0, 0, 0.25);

    margin-bottom: 0.5rem;
}

/* =========================
   DEPOIMENTOS - AVATAR CLIENTE
   ========================= */

.testimonial {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.testimonial__header {
    display: flex;
    justify-content: center;
    margin-bottom: 0.4rem;
}

.testimonial__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 3px;
    /* cria o anel dourado */
    background: radial-gradient(circle at top left,
            rgba(212, 175, 55, 0.6),
            rgba(212, 175, 55, 0.25));
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #ffffff;
}

/* Ajuste fino no texto */
.testimonial__quote {
    text-align: center;
}

.testimonial__author {
    text-align: center;
    font-weight: 600;
}

/* =========================
   CTA FINAL - CARD 4:5 PREMIUM
   ========================= */

/* Fundo laranja da seção */
.section--accent {
    background: linear-gradient(135deg,
            #E67E22,
            #F39C12);
}

/* Card de oferta */
.offer-card {
    background: radial-gradient(circle at top,
            #1a1a1a,
            #000000);
    border: 1px solid rgba(212, 175, 55, 0.7);
    border-radius: var(--radius-lg);

    /* Proporção elegante */
    aspect-ratio: 4 / 5;
    max-width: 420px;
    width: 100%;

    padding: 2.5rem 1.75rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    box-shadow:
        inset 0 0 14px rgba(212, 175, 55, 0.12),
        0 22px 44px rgba(0, 0, 0, 0.35);
}

/* Título branco */
.offer-card h2 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

/* Destaque em laranja */
.offer-highlight {
    display: block;
    margin-top: 0.25rem;
    color: #F39C12;
    font-weight: 700;
}

/* Texto secundário */
.offer-card .section__lead {
    color: #EDEDED;
    margin-bottom: 1.5rem;
}

/* Texto pequeno */
.offer-card .small-text {
    color: #CCCCCC;
}

/* Mobile refinado */
@media (max-width: 480px) {
    .offer-card {
        max-width: 360px;
        padding: 2rem 1.4rem;
    }
}
/* =========================
   CICLO DA FRUSTRAÇÃO - AJUSTE DE ESPAÇAMENTO
   ========================= */

.section__visual.card {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: radial-gradient(
        circle at top left,
        rgba(212, 175, 55, 0.08),
        #000000
    );
    box-shadow:
        inset 0 0 12px rgba(212, 175, 55, 0.12),
        0 18px 36px rgba(0, 0, 0, 0.45);

    /* 👉 MAIS RESPIRO INTERNO */
    padding: 1.25rem;
}

/* Imagem com espaço abaixo */
.section__visual.card img {
    width: 100%;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    margin-bottom: 1rem; /* separa imagem do texto */
}

/* Texto com melhor leitura */
.section__visual.card .small-text {
    margin: 0;
    padding: 0.5rem 0.5rem 0.25rem;
    text-align: center;
    color: var(--color-gray-light);
    line-height: 1.6;
}
