:root {
    --blue: #0878e8;
    --blue-dark: #07254a;
    --blue-light: #eef7ff;
    --yellow: #ffbd18;
    --text: #17233a;
    --muted: #657085;
    --border: #dce4ed;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* HEADER */

.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 72px;
}

.brand strong {
    display: block;
    font-size: 20px;
    color: var(--blue-dark);
}

.brand span {
    font-size: 12px;
    color: var(--muted);
}

.main-nav {
    display: flex;
    gap: 24px;
}

.main-nav a {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.main-nav a:hover {
    color: var(--blue);
}


/* HERO */

.hero {
    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #ffffff 45%,
            var(--blue-light) 100%
        );
}

.hero-grid {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.eyebrow {
    display: block;
    color: var(--blue);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.04;
    letter-spacing: -2px;
    color: var(--blue-dark);
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    max-width: 620px;
    font-size: 19px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px;
}

.btn {
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.btn.primary {
    background: var(--blue);
    color: white;
}

.btn.primary:hover {
    background: var(--blue-dark);
}

.btn.secondary {
    border: 1px solid var(--border);
    background: white;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    width: min(440px, 90%);
    filter: drop-shadow(0 30px 30px rgba(7,37,74,.18));
}


/* SECTIONS */

.section {
    padding: 90px 0;
}

.section-light {
    background: #f8fbfe;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.section-title h2 {
    margin: 8px 0 0;
    color: var(--blue-dark);
    font-size: 34px;
}

.cards {
    display: grid;
    gap: 24px;
}

.services {
    grid-template-columns: repeat(4, 1fr);
}

.card,
.product-card,
.article-card {
    border: 1px solid var(--border);
    background: white;
    border-radius: 14px;
    padding: 30px;
}

.card {
    text-align: center;
}

.card:hover,
.product-card:hover,
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16,40,70,.08);
}

.card,
.product-card,
.article-card {
    transition: .2s ease;
}

.icon {
    width: 64px;
    height: 64px;
    margin: auto auto 18px;
    border-radius: 50%;
    background: var(--blue-light);
    display: grid;
    place-items: center;
    font-size: 30px;
}

.card h3 {
    color: var(--blue-dark);
}

.card p {
    color: var(--muted);
}

.card a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}


/* PRODUCTS */

.products {
    grid-template-columns: repeat(3, 1fr);
}

.product-card img {
    width: 90px;
}

.product-card h3 {
    margin-bottom: 5px;
    font-size: 28px;
    color: var(--blue-dark);
}

.product-card p,
.product-card li {
    color: var(--muted);
}

.product-card ul {
    padding-left: 20px;
}

.product-card a {
    display: inline-block;
    margin-top: 12px;
    color: var(--blue);
    font-weight: 700;
}


/* ARTICLES */

.articles {
    grid-template-columns: repeat(3, 1fr);
}

.article-card span {
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
}

.article-card h3 {
    color: var(--blue-dark);
    font-size: 21px;
}

.article-card p {
    color: var(--muted);
}


/* ABOUT */

.about {
    background: var(--blue-dark);
    color: white;
}

.about .section-title h2 {
    color: white;
}

.about-text {
    max-width: 800px;
    text-align: center;
    margin: auto;
    font-size: 19px;
}


/* CONTACT */

.contact {
    padding: 85px 20px;
    text-align: center;
    background: var(--yellow);
}

.contact h2 {
    margin-top: 0;
    color: var(--blue-dark);
    font-size: 38px;
}

.contact p {
    color: var(--blue-dark);
}


/* FOOTER */

.site-footer {
    background: #06182e;
    color: white;
    padding: 45px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer p {
    color: #aebacd;
    margin: 4px 0;
}


/* MOBILE */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding: 70px 0;
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .services,
    .products,
    .articles {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 620px) {

    .services,
    .products,
    .articles {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 43px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

}
/* AJUSTES DE IDENTIDADE */

.brand-text {
    line-height: 1.1;
}

.header-cta {
    background: var(--blue);
    color: white;
    text-decoration: none;
    padding: 11px 18px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--blue-dark);
}

.hero {
    overflow: hidden;
    position: relative;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 14px;
}

.hero-trust span {
    white-space: nowrap;
}

.hero-image-wrap {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: min(430px, 90%);
    position: relative;
    z-index: 2;
    animation: floatLogo 5s ease-in-out infinite;
    filter:
        drop-shadow(0 28px 25px rgba(7,37,74,.18));
}

.hero-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(8,120,232,.18) 0%,
            rgba(8,120,232,.08) 45%,
            rgba(8,120,232,0) 72%
        );
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 900px) {

    .header-cta {
        display: none;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image-wrap {
        min-height: 330px;
    }

}
/* ===============================
   RADAR ME
================================ */

.radar-section {
    padding: 95px 0;
    background: #fff;
}

.radar-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 40px;
}

.section-kicker {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.radar-heading h2 {
    margin: 7px 0;
    font-size: 38px;
    color: var(--blue-dark);
}

.radar-heading p {
    margin: 0;
    color: var(--muted);
}

.radar-all {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}


/* PRINCIPAL */

.radar-grid {
    display: grid;
    grid-template-columns: 1.45fr .85fr;
    gap: 34px;
}

.radar-featured {
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: white;
}

.news-image {
    text-decoration: none;
}

.news-image-main {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );
}

.news-placeholder {
    display: grid;
    place-items: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: white;
    font-size: 34px;
    font-weight: 800;
}

.news-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.news-category {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .7px;
}

.news-meta time,
.radar-small time {
    color: var(--muted);
    font-size: 12px;
}

.news-content h3 {
    margin: 0 0 12px;
    font-size: 29px;
    line-height: 1.2;
}

.news-content h3 a,
.radar-small h3 a,
.latest-card h3 a {
    color: var(--blue-dark);
    text-decoration: none;
}

.news-content h3 a:hover,
.radar-small h3 a:hover,
.latest-card h3 a:hover {
    color: var(--blue);
}

.news-content p {
    color: var(--muted);
}

.read-more {
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}


/* NOTÍCIAS LATERAIS */

.radar-side {
    display: flex;
    flex-direction: column;
}

.radar-small {
    display: grid;
    grid-template-columns: 125px 1fr;
    gap: 18px;
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.small-news-image {
    min-height: 100px;
    border-radius: 10px;
    background: var(--blue-light);
    display: grid;
    place-items: center;
}

.small-news-image span,
.latest-image span {
    color: var(--blue);
    font-weight: 800;
    font-size: 22px;
}

.radar-small h3 {
    margin: 7px 0 5px;
    font-size: 18px;
    line-height: 1.35;
}


/* ÚLTIMAS */

.latest-header {
    margin-top: 65px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--blue-dark);

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.latest-header h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 25px;
}

.radar-categories {
    display: flex;
    gap: 18px;
}

.radar-categories a {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.radar-categories a:hover {
    color: var(--blue);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding-top: 30px;
}

.latest-card {
    min-width: 0;
}

.latest-image {
    height: 180px;
    margin-bottom: 20px;
    border-radius: 12px;
    background:
        linear-gradient(
            135deg,
            var(--blue-light),
            #dceeff
        );
    display: grid;
    place-items: center;
}

.latest-card h3 {
    margin: 7px 0 10px;
    font-size: 20px;
    line-height: 1.35;
}

.latest-card p {
    margin: 0;
    color: var(--muted);
}


/* TABLET */

@media (max-width: 900px) {

    .radar-grid {
        grid-template-columns: 1fr;
    }

    .radar-side {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .radar-small {
        display: block;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
        margin: 0;
    }

    .small-news-image {
        margin-bottom: 15px;
    }

}


/* CELULAR */

@media (max-width: 650px) {

    .radar-heading {
        display: block;
    }

    .radar-all {
        display: inline-block;
        margin-top: 15px;
    }

    .radar-heading h2 {
        font-size: 31px;
    }

    .news-image-main {
        height: 230px;
    }

    .news-content {
        padding: 22px;
    }

    .news-content h3 {
        font-size: 24px;
    }

    .radar-side {
        grid-template-columns: 1fr;
    }

    .latest-header {
        align-items: start;
        flex-direction: column;
    }

    .radar-categories {
        flex-wrap: wrap;
    }

    .latest-grid {
        grid-template-columns: 1fr;
    }

}
/* ======================================
   PÁGINA RADAR ME
====================================== */

.news-page-header {
    padding: 85px 0 55px;
    background: var(--blue-light);
}

.news-page-header h1 {
    margin: 8px 0 12px;
    color: var(--blue-dark);
    font-size: 46px;
}

.news-page-header p {
    max-width: 650px;
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.news-list-section {
    padding: 65px 0 95px;
}

.news-page-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 45px;
}

.news-page-categories a {
    padding: 8px 14px;
    background: var(--blue-light);
    border-radius: 30px;
    text-decoration: none;
    color: var(--blue-dark);
    font-size: 13px;
    font-weight: 700;
}

.news-page-categories a:hover {
    background: var(--blue);
    color: white;
}

.news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.news-list-card {
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
}

.news-list-image {
    height: 230px;
    border-radius: 14px;
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    text-decoration: none;
}

.news-list-image span {
    color: white;
    font-size: 38px;
    font-weight: 800;
}

.news-list-content h2 {
    margin: 9px 0 10px;
    font-size: 24px;
    line-height: 1.25;
}

.news-list-content h2 a {
    color: var(--blue-dark);
    text-decoration: none;
}

.news-list-content h2 a:hover {
    color: var(--blue);
}

.news-list-content p {
    color: var(--muted);
}

.empty-news {
    padding: 80px 0;
    text-align: center;
}


/* ======================================
   MATÉRIA INDIVIDUAL
====================================== */

.article-page {
    padding-bottom: 100px;
}

.article-container {
    width: min(760px, calc(100% - 40px));
    margin: auto;
}

.article-header {
    padding: 80px 0 50px;
}

.article-back {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}

.article-header h1 {
    margin: 12px 0 20px;
    color: var(--blue-dark);
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.article-summary {
    font-size: 20px;
    color: var(--muted);
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
    color: var(--muted);
    font-size: 14px;
}

.article-cover {
    width: min(1100px, calc(100% - 40px));
    margin: 0 auto 55px;
}

.article-cover-inner {
    height: 430px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    display: grid;
    place-items: center;
}

.article-cover-inner span {
    color: white;
    font-size: 70px;
    font-weight: 800;
}

.article-body {
    font-size: 18px;
}

.article-body p {
    color: #39475c;
    line-height: 1.85;
}

.article-body h2 {
    margin-top: 45px;
    color: var(--blue-dark);
}

.article-cta {
    margin-top: 60px;
    padding: 35px;
    border-radius: 15px;
    background: var(--blue-light);
}

.article-cta span {
    font-size: 12px;
    color: var(--blue);
    font-weight: 800;
}

.article-cta h3 {
    margin: 8px 0;
    color: var(--blue-dark);
    font-size: 27px;
}

.article-not-found {
    padding: 130px 0;
    text-align: center;
}

.article-not-found h1 {
    color: var(--blue-dark);
}


/* MOBILE */

@media (max-width: 700px) {

    .news-list-grid {
        grid-template-columns: 1fr;
    }

    .news-page-header h1 {
        font-size: 37px;
    }

    .article-cover-inner {
        height: 250px;
    }

}
/* ======================================
   IMAGEM / AUTOR / FONTE
====================================== */

.article-origin {
    color: var(--blue);
    font-weight: 700;
}

.article-cover-image {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

.article-source {
    margin-top: 50px;
    padding: 25px;
    border-left: 4px solid var(--blue);
    background: var(--blue-light);
    border-radius: 0 10px 10px 0;
}

.article-source strong {
    color: var(--blue-dark);
}

.article-source p {
    margin: 8px 0;
    font-size: 15px;
}

.article-source a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 700px) {

    .article-cover-image {
        height: 250px;
    }

}
.news-main-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
.article-views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--muted);
    font-size: 14px;
}
/* ======================================
   MENU RESPONSIVO
====================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-dark);
    border-radius: 3px;
}

.mobile-contact {
    display: none;
}


/* TABLET / MOBILE */

@media (max-width: 980px) {

    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
    }

    .desktop-contact {
        display: none;
    }

    .main-nav {
        display: none;

        position: absolute;

        top: calc(100% + 12px);
        right: 0;

        width: min(
            320px,
            calc(100vw - 30px)
        );

        padding: 18px;

        background: #fff;

        border: 1px solid var(--border);

        border-radius: 14px;

        box-shadow:
            0 18px 45px
            rgba(15, 23, 42, 0.12);

        z-index: 9999;
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .main-nav a {
        display: block;
        width: 100%;

        padding: 12px 14px;

        border-radius: 8px;

        text-decoration: none;

        color: var(--blue-dark);

        font-weight: 600;
    }

    .main-nav a:hover {
        background: var(--blue-light);
    }

    .mobile-contact {
        display: block !important;

        margin-top: 8px;

        background: var(--blue);

        color: #fff !important;

        text-align: center;
    }

}


/* CELULAR */

@media (max-width: 600px) {

    .site-header {
        padding: 10px 0;
    }

    .brand img {
        max-height: 42px;
    }

    .brand-text span {
        display: none;
    }

    .main-nav {
        left: 15px;
        right: 15px;

        width: auto;
    }

}
/* ======================================
   CORREÇÃO GLOBAL DOS CARDS DE CONTEÚDO
====================================== */

.news-list-card {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}


/* Área reservada exclusivamente à imagem */

.news-list-image {
    position: relative;
    display: block;

    width: 100%;
    height: 240px;

    overflow: hidden;

    border-radius: 14px;

    text-decoration: none;
}


/* Imagem nunca invade a área do texto */

.news-list-image img,
.content-card-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    margin: 0;
    padding: 0;
}


/* Texto sempre fica DEPOIS da imagem */

.news-list-content {
    position: static;

    display: block;

    width: 100%;

    padding-top: 20px;

    background: #fff;

    z-index: 1;
}


.news-list-content h2 {
    position: static;

    margin:
        10px 0
        10px;

    line-height: 1.3;
}


.news-list-content h2 a {
    position: static;

    display: block;

    text-decoration: none;
}


.news-list-content p {
    position: static;

    margin:
        0 0
        18px;

    line-height: 1.7;
}


/* Metadados */

.news-meta {
    position: static;

    display: flex;
    flex-wrap: wrap;

    align-items: center;

    gap: 8px 12px;

    margin-bottom: 8px;
}


/* Placeholder quando não existe imagem */

.news-placeholder {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    color: #fff;

    font-size: 36px;
    font-weight: 800;
}


/* ======================================
   SCREENSHOTS DENTRO DOS ARTIGOS
====================================== */

.article-content-image {
    display: block;

    width: 100%;

    margin:
        35px 0;

    overflow: hidden;
}


.article-content-image img {
    display: block;

    width: 100%;
    max-width: 100%;
    height: auto;

    margin: 0 auto;

    border-radius: 12px;

    object-fit: contain;
}


.article-content-image figcaption {
    display: block;

    margin-top: 10px;

    padding: 0 5px;

    color: #6b7280;

    font-size: 13px;

    line-height: 1.5;

    text-align: center;
}


/* ======================================
   CAPA DOS ARTIGOS
====================================== */

.article-cover {
    overflow: hidden;
}


.article-cover-image {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;
    max-height: 520px;

    object-fit: contain;

    background: #f8fafc;

    border-radius: 18px;
}


/* ======================================
   TABLET
====================================== */

@media (max-width: 980px) {

    .news-list-image {
        height: 220px;
    }

}


/* ======================================
   CELULAR
====================================== */

@media (max-width: 700px) {

    .news-list-image {
        height: 200px;
    }

    .news-list-content {
        padding-top: 16px;
    }

    .news-list-content h2 {
        font-size: 21px;
    }

    .article-content-image {
        margin:
            25px 0;
    }

    .article-cover-image {
        max-height: none;
    }

}
/* ======================================
   LISTAS DOS ARTIGOS
====================================== */

.article-list {
    margin:
        24px 0;

    padding-left:
        28px;
}


.article-list li {
    margin-bottom:
        10px;

    line-height:
        1.7;
}


/* ======================================
   CITAÇÕES
====================================== */

.article-quote {
    margin:
        30px 0;

    padding:
        22px 26px;

    border-left:
        4px solid #1769aa;

    background:
        #f8fafc;

    border-radius:
        0 10px 10px 0;
}


.article-quote p {
    margin:
        0;

    font-size:
        1.08rem;

    line-height:
        1.7;
}


.article-quote cite {
    display:
        block;

    margin-top:
        12px;

    color:
        #64748b;

    font-style:
        normal;

    font-size:
        .9rem;
}
/* ======================================
   VÍDEOS NOS ARTIGOS
====================================== */

.article-video {
    margin: 32px 0;
}


.article-video-wrapper {
    position: relative;

    width: 100%;

    padding-bottom: 56.25%;

    height: 0;

    overflow: hidden;

    border-radius: 12px;

    background: #000;
}


.article-video-wrapper iframe {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    border: 0;
}


.article-video figcaption {
    margin-top: 10px;

    color: #64748b;

    font-size: .9rem;

    text-align: center;
}