@charset "UTF-8";

/* =========================================================
   01. FONTS
========================================================= */
@font-face {
    font-family: inter-black;
    src: url('../fonts/Inter_18pt-Black.ttf');
}

@font-face {
    font-family: inter-bold;
    src: url('../fonts/Inter_18pt-Bold.ttf');
}

@font-face {
    font-family: inter-medium;
    src: url('../fonts/Inter_18pt-Medium.ttf');
}

@font-face {
    font-family: inter-regular;
    src: url('../fonts/Inter_24pt-Regular.ttf');
}

/* =========================================================
   02. VARIÁVEIS POR TEMA
========================================================= */
.tema-tecnologia {
    --cor-primaria: #0b2545;
    --cor-secundaria: #0ea5a4;
    --cor-focus: rgba(14, 165, 164, 0.18);
    --cor-badge-bg: rgba(11, 37, 69, 0.06);
}

.tema-inovacao {
    --cor-primaria: #0ea5a4;
    --cor-secundaria: #f97316;
    --cor-focus: rgba(249, 115, 22, 0.18);
    --cor-badge-bg: rgba(14, 165, 164, 0.08);
}

.tema-global {
    --cor-primaria: #2563eb;
    --cor-secundaria: #0ea5a4;
    --cor-focus: rgba(37, 99, 235, 0.18);
    --cor-badge-bg: rgba(37, 99, 235, 0.08);
}

.tema-comunidade {
    --cor-primaria: #f97316;
    --cor-secundaria: #0ea5a4;
    --cor-focus: rgba(249, 115, 22, 0.18);
    --cor-badge-bg: rgba(249, 115, 22, 0.08);
}

/* =========================================================
   03. BASE / TÍTULOS
========================================================= */
h1 {
    font-family: inter-black;
    margin: 0 0 14px 0;
    text-align: left;
    font-size: 30pt;
    line-height: 1.1;
    color: #001f3f;
    letter-spacing: -1px;
}

h2 {
    font-family: inter-regular;
    text-align: left;
    font-size: 14pt;
    line-height: 1.52;
    color: gray;
    margin: 0;
}

/* =========================================================
   04. HERO / INÍCIO
========================================================= */
.inicio {
    background: linear-gradient(to bottom, #edf5f8 0%, #f6fafc 52%, #ffffff 100%);
}

.inicio-painel {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 130px 0 56px 0;
}

.inicio-painel-1 {
    width: 64%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inicio-painel-2 {
    width: 36%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inicio-logo {
    width: 100%;
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 14px 28px rgba(0, 31, 63, 0.10));
}

.inicio-h1-mobile {
	font-family: inter-black;
    margin: 0 0 14px 0;
    text-align: center;
    font-size: 22pt;
    line-height: 1.1;
    color: #001f3f;
    letter-spacing: -1px;
}

.inicio-h2-mobile {
	font-family: inter-regular;
    text-align: center;
    font-size: 12pt;
    line-height: 1.52;
    color: gray;
    margin: 0;
}

/* =========================================================
   05. BADGE NEWSLETTER
========================================================= */
.snq-badge-newsletter {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    margin-bottom: 18px;
    padding: 6px 13px;

    border-radius: 999px;
    border: 1px solid var(--cor-primaria, #0b2545);
    background: var(--cor-badge-bg, rgba(11, 37, 69, 0.06));

    font-family: inter-bold;
    font-size: 8pt;
    line-height: 1;
    letter-spacing: 0.3px;
    text-transform: uppercase;

    color: var(--cor-primaria, #0b2545);
}

.snq-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 9pt;
    line-height: 1;
}

/* =========================================================
   06. FORMULÁRIO INLINE
========================================================= */
.snq-form-inline {
    display: flex;
    align-items: center;
    gap: 0;

    margin-top: 30px;

    width: 390px;
    max-width: 100%;
    height: 54px;

    padding: 4px;

    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe5ec;

    box-shadow: 0 10px 24px rgba(0, 31, 63, 0.08);
}

.snq-input-inline {
    flex: 1;
    height: 100%;
    min-width: 0;

    padding: 0 18px;

    border: none;
    outline: none;
    border-radius: 999px;

    background: transparent;

    font-family: inter-medium;
    font-size: 10.5pt;
    color: #0b2545;
}

.snq-input-inline::placeholder {
    color: #8ba0b3;
}

.snq-form-inline:focus-within {
    border-color: var(--cor-secundaria);

    box-shadow:
        0 0 0 4px var(--cor-focus),
        0 10px 24px rgba(0, 31, 63, 0.10);
}

.snq-btn-inline {
    height: 44px;
    padding: 0 22px;

    border: none;
    border-radius: 999px;

    background: var(--cor-primaria);
    color: #ffffff;

    font-family: inter-bold;
    font-size: 10.5pt;
    line-height: 1;

    white-space: nowrap;
    cursor: pointer;

    box-shadow: 0 8px 18px rgba(0, 31, 63, 0.18);

    transition: all 0.25s ease;
}

.snq-btn-inline:hover {
    background: var(--cor-secundaria);

    transform: translateY(-1px);

    box-shadow: 0 10px 22px rgba(0, 31, 63, 0.22);
}

/* =========================================================
   07. POPUP INSCRIÇÃO
========================================================= */
.snq-popup-inscricao {
    position: fixed;
    top: 90px;
    right: 24px;

    z-index: 9999;

    min-width: 280px;
    max-width: 380px;

    border-radius: 14px;

    box-shadow: 0 12px 28px rgba(0, 31, 63, 0.18);

    overflow: hidden;
}

.snq-popup-conteudo {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;

    padding: 14px 16px;
}

.snq-popup-texto {
    font-family: inter-medium;
    font-size: 10.5pt;
    line-height: 1.5;
}

.snq-popup-fechar {
    border: none;
    background: transparent;

    cursor: pointer;

    font-size: 18pt;
    line-height: 1;

    padding: 0;
}

.snq-popup-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.snq-popup-warning {
    background: #fffbeb;
    border: 1px solid #fde68a;
    color: #92400e;
}

.snq-popup-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.snq-popup-hide {
    opacity: 0;
    transform: translateY(-8px);
    transition: all 0.25s ease;
}

/* =========================================================
   08. CARD NEWSLETTER
========================================================= */
.snq-newsletter-card {
    width: 640px;
    max-width: 100%;

    margin-top: 30px;
    padding: 20px;

    border-radius: 18px;

    background: var(--cor-badge-bg, rgba(11, 37, 69, 0.04));
    border: 1px solid var(--cor-focus, rgba(11, 37, 69, 0.12));

    box-shadow: 0 14px 34px rgba(0, 31, 63, 0.06);
}

.snq-newsletter-topo {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.snq-newsletter-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

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

    border-radius: 50%;

    background: var(--cor-focus, rgba(11, 37, 69, 0.10));
    color: var(--cor-primaria, #0b2545);

    font-family: inter-bold;
    font-size: 22pt;
    line-height: 1;
}

.snq-newsletter-textos h3 {
    margin: 0 0 8px 0;

    font-family: inter-bold;
    font-size: 14pt;
    line-height: 1.2;

    color: #001f3f;
}

.snq-newsletter-textos-h3-mobile {
    margin: 0 0 8px 0;

    font-family: inter-bold;
    font-size: 14pt;
    line-height: 1.2;

    color: #001f3f;
}


.snq-newsletter-textos p {
    margin: 0;
    max-width: 500px;

    font-family: inter-regular;
    font-size: 13pt;
    line-height: 1.45;

    color: #536176;
}

.snq-newsletter-form {
    display: flex;
    align-items: center;

    width: 100%;
    height: 56px;
}

.snq-newsletter-input {
    flex: 1;
    height: 100%;
    min-width: 0;

    padding: 0 18px;

    border: 1px solid #dbe5ec;
    border-right: none;
    border-radius: 12px 0 0 12px;

    background: #ffffff;
    outline: none;

    font-family: inter-medium;
    font-size: 12pt;
    color: #0b2545;
}

.snq-newsletter-input::placeholder {
    color: #8ba0b3;
}

.snq-newsletter-input:focus {
    border-color: var(--cor-primaria, #0b2545);

    box-shadow:
        0 0 0 4px var(--cor-focus, rgba(11, 37, 69, 0.12));
}

.snq-newsletter-btn {
    height: 100%;
    padding: 0 34px;

    border: none;
    border-radius: 0 12px 12px 0;

    background: var(--cor-primaria, #0b2545);
    color: #ffffff;

    font-family: inter-bold;
    font-size: 12pt;

    white-space: nowrap;
    cursor: pointer;

    transition: all 0.25s ease;
}

.snq-newsletter-btn:hover {
    background: var(--cor-secundaria, #0ea5a4);
}

.snq-newsletter-info {
    display: flex;
    align-items: center;
    gap: 10px;

    font-family: inter-regular;
    font-size: 11.5pt;

    color: #64748b;
}

.snq-newsletter-lock {
    color: var(--cor-primaria, #0b2545);
    font-size: 13pt;
}

/* =========================================================
   09. CONTEÚDO TECNOLOGIA
========================================================= */
.snq-tecnologia-intro-conteudo h2,
.snq-tecnologia-bloco-conteudo h2 {
    font-family: inter-black;
    text-align: left;
    font-size: 26pt;
    line-height: 1.52;
    color: #133156;
    margin: 0;
}

.snq-tecnologia-item h3 {
    font-family: inter-black;
    text-align: left;
    font-size: 16pt;
    line-height: 1.52;
    color: #133156;
    margin: 10px 0px 10px 0px;
}
.snq-tecnologia-subtopicos h3 {
    font-family: inter-black;
    text-align: left;
    font-size: 16pt;
    line-height: 1.52;
    color: #133156;
    margin: 10px 0px 10px 0px;
}

.snq-tecnologia-intro-conteudo p,
.snq-tecnologia-bloco-conteudo p {
    font-family: inter-regular;
    text-align: left;
    font-size: 13pt;
    line-height: 1.52;
    color: gray;
    margin: 0 0 10px 0;
}

.snq-tecnologia-label-categoria {
	font-family: inter-regular;
    text-align: left;
    font-size: 10pt;
    line-height: 1.52;
    color: gray;
}

.snq-tecnologia-link {
	font-family: inter-bold;
	color: #ff579b;
	text-decoration: none;
}
.snq-tecnologia-link:hover {
	font-family: inter-bold;
	color: purple;
	text-decoration: none;
}

.post-linha-imagem {
	display: flex;
  	flex-direction: column;	
  	justify-content: center;	
  	align-items: center;
  	width: 100%;
}
.post-imagem {
    width: 100%;

    margin: 0 0 10px 0;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.post-imagem-70 {
    width: 70%;

    margin: 0 0 10px 0;

    border-radius: 10px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* =========================================================
   10. SIDEBAR TECNOLOGIA
========================================================= */
.snq-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;

    position: sticky;
    top: 96px;
}

.snq-side-card {
    width: 100%;

    padding: 22px 20px;

    border-radius: 14px;

    background: #f7f7f9;
    border: 1px solid #ccd2e5;

    box-shadow: 0 12px 28px rgba(0, 31, 63, 0.05);
}

.snq-side-card h3 {
    margin: 0 0 18px 0;

    font-family: inter-black;
    font-size: 14pt;
    line-height: 1.2;

    color: #0b2545;
}

.snq-side-card-h2 {
	margin: 0 0 18px 0;

    font-family: inter-black;
    font-size: 14pt;
    line-height: 1.2;

    color: #0b2545;
}

/* =========================================================
   11. LINKS SIDEBAR
========================================================= */
.snq-side-link {
    display: grid;
    grid-template-columns: 24px 1fr 12px;

    align-items: center;
    gap: 10px;

    padding: 8px 0;

    text-decoration: none;

    color: #0b2545;

    font-family: inter-medium;
    font-size: 11pt;
    line-height: 1.35;
}

.snq-side-link:hover span,
.snq-side-link:hover strong {
    color: var(--cor-secundaria);
}

.snq-side-icon {
    color: var(--cor-secundaria);
    font-size: 13pt;
    text-align: center;
}

.snq-side-link strong {
    color: #0b2545;

    font-family: inter-bold;
    font-size: 15pt;
    line-height: 1;
}

/* =========================================================
   12. TECNOLOGIAS EM DESTAQUE
========================================================= */
.snq-tech-item {
    display: grid;
    grid-template-columns: 84px 1fr;

    gap: 12px;
    align-items: center;

    margin-bottom: 14px;

    text-decoration: none;
}

.snq-tech-item-titulo {
   font-family: inter-medium;
    font-size: 10pt;
    line-height: 1;
    color: #0b2545;
}
.snq-tech-item-titulo:hover {
	color: var(--cor-secundaria);
}
.snq-tech-item:last-child {
    margin-bottom: 0;
}

.snq-tech-item img {
    width: 84px;
    height: 54px;

    object-fit: cover;

    border-radius: 6px;
}

.snq-tech-item strong {
    display: block;

    margin-bottom: 4px;

    font-family: inter-black;
    font-size: 10pt;
    line-height: 1.25;

    color: #0b2545;
}

.snq-tech-item span {
    display: block;

    font-family: inter-regular;
    font-size: 9.5pt;
    line-height: 1.2;

    color: #536176;
}

.snq-tech-item:hover strong {
    color: var(--cor-secundaria);
}

/* =========================================================
   13. LEIA TAMBÉM
========================================================= */
.snq-read-link {
    display: grid;
    grid-template-columns: 24px 1fr;

    gap: 10px;
    align-items: flex-start;

    margin-bottom: 14px;

    text-decoration: none;
}

.snq-read-link:last-child {
    margin-bottom: 0;
}

.snq-read-link span {
    color: var(--cor-secundaria);

    font-family: inter-bold;
    font-size: 12pt;
    line-height: 1.35;
}

.snq-read-link p {
    margin: 0;

    font-family: inter-medium;
    font-size: 10pt;
    line-height: 1.35;

    color: #0b2545;
}

.snq-read-link:hover p {
    color: var(--cor-secundaria);
}

/* =========================================================
   14. CTA SIDEBAR
========================================================= */
.snq-side-cta p {
    margin: 0 0 18px 0;

    font-family: inter-regular;
    font-size: 10.5pt;
    line-height: 1.45;

    color: #536176;
}

.snq-side-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;
    color: #ffffff;

    border-radius: 5px;

    background: var(--cor-primaria);
   
    text-decoration: none;

    font-family: inter-bold;
    font-size: 10pt;
    line-height: 1;

    box-shadow: 0 8px 18px rgba(0, 31, 63, 0.16);
}

.snq-side-btn:hover {
    background: var(--cor-secundaria);
    color: #ffffff;
}

.snq-mobile-card-h2-mobile {
	font-family: inter-black;
    text-align: left;
    font-size: 20pt;
    line-height: 1.52;
    color: #133156;
    margin: 0;
}
.snq-mobile-card-h3-mobile {
	font-family: inter-black;
    text-align: left;
    font-size: 13pt;
    line-height: 1.52;
    color: #133156;
    margin: 0;
}

/* =========================================================
   15. MOBILE
========================================================= */
.inicio-painel-mobile {
    width: 100%;

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

    padding: 108px 0 20px 0;
}

.inicio-logo-mobile {
    width: 170px;
    max-width: 80%;
    height: auto;

    opacity: 0.96;
}


/* =========================================================
   REFERÊNCIAS & LINKS
========================================================= */

.snq-referencias-wrap {

    width: 100%;

    margin-top: 30px;
    margin-bottom: 40px;

    padding: 40px;

    border-radius: 22px;

    background: linear-gradient(
        to bottom,
        #fbfcfe 0%,
        #f5f7fb 100%
    );

    border: 1px solid #e5eaf2;
}

.snq-referencias-topo {
    margin-bottom: 30px;
}

.snq-referencias-mini {

    position: relative;

    display: inline-block;

    padding-bottom: 12px;

    font-family: inter-bold;
    font-size: 10pt;

    letter-spacing: .8px;
    text-transform: uppercase;

    color: #3047d3;
}

.snq-referencias-mini::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 30px;
    height: 3px;

    border-radius: 999px;

    background: #3047d3;
}

.snq-referencias-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 34px;
}

.snq-ref-col {

    position: relative;

    padding-right: 20px;
}

.snq-ref-col:not(:last-child)::after {

    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 1px;
    height: 100%;

    background: #e7ebf3;
}

.snq-ref-topo {

    display: flex;
    align-items: flex-start;

    gap: 14px;

    margin-bottom: 22px;
}

.snq-ref-icon {

    width: 54px;
    height: 54px;

    min-width: 54px;

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

    border-radius: 50%;

    background: #eef2ff;
}

.snq-ref-icon img {

    width: 32px;
    height: 32px;

    object-fit: contain;
}

.snq-ref-textos h3 {

    margin: 0 0 6px 0;

    font-family: inter-bold;
    font-size: 14pt;

    color: #0b2545;
}

.snq-ref-textos p {

    margin: 0;

    font-family: inter-regular;
    font-size: 10.5pt;
    line-height: 1.6;

    color: #6b7280;
}

.snq-ref-lista {

    margin: 0;
    padding: 0;

    list-style: none;
}

.snq-ref-lista li {

    margin-bottom: 12px;
}

.snq-ref-lista a {

    display: flex;
    align-items: center;

    gap: 10px;

    text-decoration: none;

    font-family: inter-medium;
    font-size: 10.5pt;
    line-height: 1.4;

    color: #3047d3;

    transition: all .2s ease;
}

.snq-ref-lista a:hover {

    transform: translateX(2px);

    color: #0ea5a4;
}

.snq-ref-bullet {

    font-size: 7px;

    color: #3047d3;
}

.snq-referencias-footer {

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 40px;
    padding: 26px 30px;

    border-radius: 18px;

    background: linear-gradient(
        to right,
        #eef3ff 0%,
        #f6f8fc 100%
    );
}

.snq-referencias-footer-left {

    display: flex;
    align-items: center;

    gap: 18px;
}

.snq-referencias-footer-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

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

    border-radius: 50%;

    background: #3047d3;

    color: #ffffff;

    font-size: 18px;
}

.snq-referencias-footer h4 {

    margin: 0 0 4px 0;

    font-family: inter-bold;
    font-size: 12pt;

    color: #0b2545;
}

.snq-referencias-footer p {

    margin: 0;

    font-family: inter-regular;
    font-size: 10.5pt;

    color: #6b7280;
}

.snq-referencias-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 12px 28px;

    border-radius: 999px;

    border: 1px solid #3047d3;

    background: #ffffff;

    text-decoration: none;

    font-family: inter-bold;
    font-size: 10.5pt;

    color: #3047d3;

    transition: all .25s ease;
}

.snq-referencias-btn:hover {

    background: #3047d3;

    color: #ffffff;
}


/* =========================================================
   SOBRE O AUTOR - DESKTOP
========================================================= */

.post-autor-box {
    width: 100%;
    margin: 0px auto 0px auto;
    padding: 34px 28px;

    display: grid;
    grid-template-columns: 1.8fr 1px 1fr;
    gap: 44px;
    align-items: center;

    border: 1px solid #e1e5eb;
    border-radius: 16px;
    background: #ffffff;

    box-shadow: 0 4px 14px rgba(0, 31, 63, 0.08);
}

.post-autor-left {
    display: flex;
    align-items: center;
    gap: 34px;
}

.post-autor-img {
    width: 145px;
    height: 145px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.post-autor-info {
    max-width: 520px;
}

.post-autor-label {
    font-family: inter-bold;
    font-size: 13px !important;
    color: #00745f !important;

    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.post-autor-nome {
    display: inline-block;

    font-family: inter-black;
    font-size: 18px;
    color: #001F3F;

    margin-bottom: 12px;

    text-decoration: none;
}

.post-autor-nome:hover {
    color: #00745f;
    text-decoration: none;
}

.post-autor-info p {
    font-family: inter-regular;
    font-size: 15px;
    line-height: 1.55;
    color: #42536a;

    margin: 0 0 16px 0;
}

.post-autor-redes {
    display: flex;
    align-items: center;
    gap: 16px;
}

.post-autor-redes a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.post-autor-redes img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.post-autor-divisor {
    width: 1px;
    height: 150px;
    background: #dfe4ea;
}

.post-autor-right h3 {
    font-family: inter-black;
    font-size: 15px;
    color: #001F3F;

    margin: 0 0 18px 0;
    padding: 0;
}

.post-autor-post-link {
    display: block;

    font-family: inter-bold;
    font-size: 14px;
    line-height: 1.4;

    color: #00745f;
    text-decoration: none;

    margin-bottom: 17px;
}

.post-autor-post-link:hover {
    color: #005447;
    text-decoration: none;
}

/* =========================================================
   SOBRE O AUTOR - MOBILE
========================================================= */

@media (max-width: 768px) {

    .post-autor-mobile-box {
        margin: 20px 10px 28px 10px;
        padding: 26px 24px;

        background: #ffffff;
        border: 1px solid #e1e5eb;
        border-radius: 14px;

        box-shadow: 0 4px 14px rgba(0, 31, 63, 0.08);
    }

    .post-autor-mobile-topo {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 5px;
        align-items: start;
    }

    .post-autor-mobile-img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .post-autor-mobile-h2 {
    	font-family: inter-bold;
        font-size: 13pt !important;
        color: #001F3F !important;

        margin: 0 0 6px 0 !important;
        padding: 0 !important;

        text-align: left;
    }
    

    .post-autor-mobile-nome {
        display: inline-block;

        font-family: inter-black;
        font-size: 18px;
        color: #001F3F;

        margin-bottom: 10px;

        text-decoration: none;
    }

    .post-autor-mobile-info p {
        font-family: inter-regular;
        font-size: 15px;
        line-height: 1.45;
        color: #42536a;

        margin: 0 0 14px 0;
    }

    .post-autor-mobile-redes {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .post-autor-mobile-redes img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .post-autor-mobile-divisor {
        width: 100%;
        height: 1px;

        background: #dfe4ea;

        margin: 26px 0 20px 0;
    }

    .post-autor-mobile-posts h2 {
        font-family: inter-black;
        font-size: 16px !important;
        color: #001F3F;

        margin: 0 0 18px 0 !important;
        padding: 0 !important;

        text-align: left;
    }

    .post-autor-mobile-post-link {
        display: block;

        font-family: inter-bold;
        font-size: 15px;
        line-height: 1.35;

        color: #00745f;
        text-decoration: none;

        margin-bottom: 14px;
    }

    .post-autor-mobile-post-link:hover {
        color: #005447;
        text-decoration: none;
    }

}





/* =========================================================
   15. MOBILE
========================================================= */

.inicio-painel-mobile {
    width: 100%;

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

    padding: 108px 0 20px 0;
}

.inicio-logo-mobile {
    width: 170px;
    max-width: 80%;
    height: auto;

    opacity: 0.96;
}

/* =========================================================
   RESPONSIVO
========================================================= */

@media (max-width: 991px) {

    .snq-referencias-grid {
        grid-template-columns: 1fr 1fr;
    }

    .snq-ref-col:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 767px) {

    .snq-referencias-wrap {
        padding: 26px;
    }

    .snq-referencias-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .snq-ref-col {
        padding-right: 0;
    }

    .snq-ref-col::after {
        display: none;
    }

    .snq-referencias-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .snq-referencias-btn {
        width: 100%;
    }
}

@media (max-width: 575.98px) {

    /* =====================================================
       HERO MOBILE
    ===================================================== */

    .inicio {
        padding-top: 0 !important;
        padding-bottom: 34px !important;
    }

    .inicio .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .inicio-painel-mobile-completo {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        padding: 96px 0 10px 0;

        text-align: center;
    }

    .mobile-badge {
        margin-bottom: 18px;

        padding: 7px 12px;

        font-size: 7.5pt;
    }

    .inicio-logo-mobile {
        width: 150px;
        max-width: 70%;
        height: auto;

        margin-bottom: 22px;

        filter: drop-shadow(0 14px 24px rgba(0, 31, 63, 0.12));
    }

    .inicio-painel-mobile-completo h1 {
        margin: 0 0 14px 0;

        font-family: inter-black;
        font-size: 25pt;
        line-height: 1.08;
        letter-spacing: -0.8px;

        text-align: center;

        color: #001f3f;
    }

    .inicio-painel-mobile-completo h2 {
        max-width: 92%;

        margin: 0;

        font-family: inter-regular;
        font-size: 12.5pt;
        line-height: 1.55;

        text-align: center;

        color: #607080;
    }

    /* =====================================================
       CARD NEWSLETTER MOBILE
    ===================================================== */

    .snq-newsletter-card-mobile {
        width: 100%;

        margin-top: 28px;
        padding: 18px;

        border-radius: 20px;

        background: #ffffff;
        border: 1px solid var(--cor-focus, rgba(11, 37, 69, 0.12));

        box-shadow: 0 14px 34px rgba(0, 31, 63, 0.08);
    }
        
    

    .snq-newsletter-form-mobile {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;
    }

    .snq-newsletter-input-mobile {
        width: 100%;
        height: 50px;

        padding: 0 16px;

        border: 1px solid #dbe5ec;
        border-radius: 14px;

        background: #ffffff;
        outline: none;

        font-family: inter-medium;
        font-size: 11.5pt;

        text-align: center;

        color: #0b2545;
    }

    .snq-newsletter-input-mobile::placeholder {
        color: #8ba0b3;
    }

    .snq-newsletter-input-mobile:focus {
        border-color: var(--cor-primaria, #0b2545);

        box-shadow: 0 0 0 4px var(--cor-focus, rgba(11, 37, 69, 0.12));
    }

    .snq-newsletter-btn-mobile {
        width: 100%;
        height: 50px;

        border: none;
        border-radius: 14px;

        background: var(--cor-primaria, #0b2545);

        box-shadow: 0 10px 22px rgba(0, 31, 63, 0.16);

        font-family: inter-bold;
        font-size: 11.5pt;

        color: #ffffff;

        cursor: pointer;
    }

    .snq-newsletter-btn-mobile:hover {
        background: var(--cor-secundaria, #0ea5a4);
    }

    /* =====================================================
       CONTEÚDO MOBILE
    ===================================================== */

    .snq-mobile {
        padding: 0 14px 32px;
    }
    
    
    .snq-mobile-hero {
        margin-bottom: 18px;
        padding: 28px 18px;

        border-radius: 24px;

        background: linear-gradient(135deg, #0f766e, #0ea5e9);

        color: #ffffff;
    }

    .snq-mobile-hero h1 {
        margin-bottom: 10px;

        font-size: 1.75rem;
        font-weight: 800;
    }

    .snq-mobile-hero p {
        margin: 0;

        font-size: .98rem;
        line-height: 1.55;
    }

    .snq-mobile-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 10px;

        margin-bottom: 18px;
    }

    .snq-mobile-nav a {
        padding: 12px;

        border-radius: 16px;

        background: #ffffff;

        box-shadow: 0 8px 20px rgba(15, 23, 42, .08);

        font-size: .9rem;
        font-weight: 700;

        text-decoration: none;

        color: #0f172a;
    }

	.snq-mobile-imagem-destaque {
		margin-bottom: 18px;                
	}
	.snq-mobile-img-destaque {
		width: 100%;		  
        border-radius: 22px;        
        box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
	}
	
    .snq-mobile-card,
    .snq-mobile-destaque {
        margin-bottom: 18px;
        padding: 10px;

        border-radius: 22px;

        background: #f6f8fb;

        box-shadow: 0 10px 28px rgba(15, 23, 42, .08);
    }

    .snq-mobile-card h2 {
        margin-bottom: 12px;
		font-family: inter-black;
        font-size: 1.25rem;
        color: #0f172a;
    }

    .snq-mobile-card h3 {
        margin-top: 18px;
        margin-bottom: 8px;

        font-size: 1.05rem;
        font-weight: 800;

        color: #0f766e;
    }

    .snq-mobile-card p {
        margin-bottom: 14px;

        font-size: .97rem;
        line-height: 1.7;

        color: #334155;
    }

    .snq-mobile-destaque img,
    .snq-mobile-img {
        width: 100%;
        height: auto;

        display: block;

        margin: 14px 0;

        border-radius: 18px;
    }

    .snq-mobile-posts {
        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .snq-mobile-post {
        display: grid;
        grid-template-columns: 86px 1fr;

        align-items: center;

        gap: 12px;

        text-decoration: none;

        color: #0f172a;
    }

    .snq-mobile-post img {
        width: 86px;
        height: 64px;

        object-fit: cover;

        border-radius: 14px;
    }

    .snq-mobile-post span {
        font-size: .92rem;
        font-weight: 700;
        line-height: 1.35;
    }

    .snq-mobile-link {
        display: block;

        margin-bottom: 10px;
        padding: 13px 14px;

        border-radius: 14px;

        background: #f1f5f9;

        font-weight: 700;

        text-decoration: none;

        color: #0f172a;
    }
}