@media (max-height: 500px) and (orientation: landscape) {
  .container,
  .container-lg,
  .container-xl {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}


* {
    color: #12100E;
}

.anchor {
    scroll-margin-top: 90px;
}

/* Anchor base */
h2.anchor {
    position: relative;
    isolation: isolate;
}


h2.anchor::after {
    content: '';
    position: absolute;
    inset: 0; 
        background: linear-gradient(
        to right,
        rgba(195, 223, 224, 0) 0%,
        rgba(195, 223, 224, 0.35) 30%,
        rgba(195, 223, 224, 0.35) 70%,
        rgba(195, 223, 224, 0) 100%
    );
    border-radius: 1px;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}
h2.anchor:target::after {
    animation: anchorHighlight 2.2s ease-out;
}

@keyframes anchorHighlight {
    0% {
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


font {
  all: unset;
  all: inherit;
  display: contents;
}/*  PRO GOOGLE NÃO QUEBRAR OS ESTILOS AO TRADUZIR */

a{
    text-decoration: none;
}

a.card-link{
    display: block;
    transition: transform .2s ease;
    will-change: transform;
}

a.card-link:hover{
    transform: scale(1.02) translateZ(0);
    cursor:default;
}

.card img {
    aspect-ratio: 16 / 9; width: 100%; height: auto;
}


/*HOME INTRO*/

.container.home-intro h1{
color: gold; /*cornsilk*/
filter: drop-shadow(0 4px 10px rgba(0,0,0,.9));
}

.container.home-intro p{
color: floralwhite;
filter: drop-shadow(0 4px 10px rgba(0,0,0,.9));
}

.container.main-sections{
    padding: 0rem;
}

@media (max-width: 767.98px) { /* telas menores que md */
  .container.main-sections {
    padding: 0rem;  /* ajusta o espaçamento horizontal */
  }
  .container.main-sections > .row > .col-md-6{
    padding: 0 !important;
  }
}

.container.main-sections .bg-main-sections{
background-color: lightslategray;
border-radius: 3px;
}



.container.main-sections .bg-main-sections h2{
color: cornsilk;
}
.container.main-sections .bg-main-sections p{
color: #15201b;
text-align:left;
}

.container.main-sections .bg-main-sections img{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  display: block;
  border-radius: 3px 3px 0 0;
}




/*HOME INTRO*/









.card-home .col .card{
    background-color: #26272C;
}

.card-home .card-body{
    padding: 10px 5px 5px 5px;
}

.card-image-wrapper{
    position: relative;
    display: block;
}


.card-home .card-title-overlay{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;              /* margem inferior */
    padding: 6px 12px;
    background: linear-gradient(
    to right,
    rgba(0,0,0,.8) 0%,
    rgba(0,0,0,.5) 50%,
    rgba(0,0,0,0) 100%
);
}

.card-home .card-title {
    color: #C3DFE0;
    font-size: 1rem;
    line-height: 1.2;
    text-align: left; /* combina melhor com gradiente */
    text-transform: uppercase;
    margin-bottom: 3px;
}

.card-home .card:hover{
    transform: scale(1.02) translateZ(0);
    transition: 0.5s ease;
    will-change: none;
}


.card-home .card-text{
    font-size: .9rem;
    line-height: 1.2;
    color: #ddd;
    text-overflow: ellipsis; /* adiciona ... */
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;   /* número de linhas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin:3px 0;
}
.card-home .card-section{
    margin: 0;
    line-height: 1.2;
}
.card-home .card-section a{
    color: #0B5D1E;
    font-size: .8rem;
}

.card-home .card-section a:hover{
    color: #0B5D1E;
    opacity: 0.7;
}


/* PAGINAÇÃO */

.active a.page-link{
    background-color:#26272C;
    border-color:#0B5D1E;
    color: #C3DFE0;
}
a.page-link{
    color:#26272C;
    background-color: #dddddd;
}
a.page-link:hover{
    color:#C3DFE0;
    background-color: #26272C;
    border-color:#0B5D1E;
}

a.page-link:focus {
    box-shadow: 0 0 0 0.15rem rgba(11, 93, 30, 0.25);
}



ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}


body, html{
    background-color: #12100E;
    color: #dee2e6;
}

.bg-home {
    background-color: #6C757D;
}

img {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.06);
    transition: opacity 0.8s ease, filter 0.8s ease, transform 0.8s ease;
}

img.loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}


p {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
    color: #222222;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    text-align: justify;
}
hr {
  border: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    #ffffff 25%,
    #ffffff 50%,
    #ffffff 75%,
    transparent 100%
  );
  margin: 1em 0;
}

hr.separator-1{
  border: 0;
  border-top: 2px solid #0a4948;
  height: 4px;
  background: linear-gradient(to right, transparent, #0a4948, #093332, #0a4948, transparent);
  margin: 1rem 0;
}

hr.separator-2{
  border: 0;
  border-top: 2px solid #0a4948;
  height: 4px;
  background: linear-gradient(to right, transparent, #0a4948, #093332, #0a4948, transparent);
  margin: 2rem 0;
}

hr.separator-3{
    border: 0;
    border-top: 2px solid #0a4948;
    height: 4px;
    background: linear-gradient(to right, transparent, #0a4948, #093332, #0a4948, transparent);
    margin: 3rem 0;
    overflow: auto;
}
br.both{
    clear: both; /* ou left */
}
.breadcrumb a {
    text-decoration: none;
    color: #0B5D1E; /* opcional: cor dourada */
    font-family: Arial, Helvetica, sans-serif; /* fonte neutra padrão */
    font-size: 0.9rem; /* um pouco menor que o texto normal, opcional */
    font-weight: 500;  /* opcional, um pouco mais leve que títulos */
}
.breadcrumb a:hover {
    opacity: 0.7;
}

@media (max-width: 767.98px) {
    .main-padding-rec,
    .sidebar-paddding-rec {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

section nav.navbar div.container-fluid a{
    padding: 0;
}



section.img-background {
    position: relative;
    overflow: visible;
    background-color: #12100E;
    padding-top: 20px;
    padding-bottom: 20px;
}

section.img-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow:inset 0 10px 22px rgba(0, 0, 0, 0.48);


    background-size: 100% auto !important;
    background-position: top center;
    background-repeat: no-repeat;

    opacity: 0;
    transition: opacity 1.2s ease;

    z-index: 0;
}

.bg-main-background-img{
    background-size: cover;      /* a imagem cobre todo o espaço */
    background-position: top; /* centraliza a imagem */
    background-repeat: no-repeat;
}

.bg-sprite{
    background-size: cover;      /* a imagem cobre todo o espaço */
    background-position: top; /* centraliza a imagem */
    background-repeat: no-repeat;
}

section.img-background.loaded::before {
    opacity: 1;
}

section.img-background > * {
    position: relative;
    z-index: 1;
}



div.bg-main-content{
    background-color: #6C757D;
}
.custom-btn {
  background-color: #0B5D1E; /* verde Dakn */
  color: #fff;               /* texto branco */
  border-color: #0B5D1E;     /* borda combina */
  opacity: 0.3;
}

.custom-btn:hover {
  background-color: #094A17; /* verde mais escuro no hover */
  border-color: #094A17;
  opacity: 1;
  transition: background-color .25s ease,
              color .25s ease,
              box-shadow .25s ease,
              transform .2s ease;
}

.btn-back {
  padding: 0.25rem 0.5rem; /* menos que btn-sm */
  font-size: 0.8rem;       /* menor fonte */
  transition: background-color .25s ease,
              color .25s ease,
              box-shadow .25s ease,
              transform .2s ease;
}

.btn-back:hover {
  transform: translateY(1px);
  box-shadow: 0 .25rem .5rem rgba(0,0,0,.15);
}

.card-title-section {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);

    /* controle de espaço */
    padding: 0.5rem 0.5rem 0 0.5rem;

    /* linha única garantida */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    /* correções importantes */
    display: block;
    max-width: 100%;
    box-sizing: border-box;

    text-align: center;
    color: #fff4d3;

    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    background:
        /* luz suave */
        radial-gradient(circle at 35% 40%, rgba(255, 239, 225, 0.10), transparent 65%),
        radial-gradient(circle at 70% 30%, rgba(255, 239, 225, 0.05), transparent 70%),

        /* cor base com leve profundidade */
        linear-gradient(160deg, #26272C, #26272C);
}





/*LISTAS PERSONALIZADAS*/

ul.list-style-1 a{
    color: #222222;
}

ul.list-style-1 a:hover{
    opacity: 0.9;
}

ul.list-style-2 a{
    color: #cccccc;
}



/*PARTE DA IMAGEM DE CARDS SPRITE*/


.row .col .card .bg-sprite{
    position: relative;
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center; 
    align-items: center;     
}
.row .col .card .bg-sprite .sprite {
    --width: 640px;
    --height:2432px;
    --mult:4;
    --icon:32px;
  width:    calc(var(--icon) * var(--mult));
  height:   calc(var(--icon) * var(--mult));  
  
  background-repeat: no-repeat;         
  transform-origin: center;
  background-size:  calc(var(--width) * var(--mult)) calc(var(--height) * var(--mult));
}

.row .col .card .bg-sprite .sprite-everlasting-flower{
    --icon:32px; --mult:4; --col: -17; --row: -25;
    background-position: calc(((var(--col) * var(--mult)) + var(--mult)) * var(--icon)) calc(((var(--row) * var(--mult)) + var(--mult)) * var(--icon));
}
.sprite-shield  { background-position: -32px -0px; }
.sprite-potion  { background-position: -64px -0px; }
.sprite-helmet  { background-position: -96px -0px; }




/*PARTE DOS SPRITES NO POST*/


main article .bg-sprite{
    position: relative;

    height: auto;
    display: flex;
    justify-content: center; 
    align-items: center;     
}
main article .bg-sprite .sprite {
    --width: 640px;
    --height:2432px;
    --mult:4;
    --icon:32px;
  width:    calc(var(--icon) * var(--mult));
  height:   calc(var(--icon) * var(--mult));  

  background-repeat: no-repeat;         
  transform-origin: center;
  background-size:  calc(var(--width) * var(--mult)) calc(var(--height) * var(--mult));
}

main article .bg-sprite .sprite-everlasting-flower{
    --icon:32px; --mult:4; --col: -17; --row: -25;
    background-position: calc(((var(--col) * var(--mult)) + var(--mult)) * var(--icon)) calc(((var(--row) * var(--mult)) + var(--mult)) * var(--icon));
}
.sprite-shield  { background-position: -32px -0px; }
.sprite-potion  { background-position: -64px -0px; }
.sprite-helmet  { background-position: -96px -0px; }












.section-wrapper h1{
    color: #2C3E50;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

article.section-wrapper h3, article.section-wrapper h2{
    color: #2C3E50;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    font-size: 1.5rem;
}


article.section-wrapper div.skill-block h3{
    color: #fff;
}

article.section-wrapper p.title {
  font-size: 0.98rem;
  font-weight: 600;
  color: #2c3e50;
  line-height: 1.35;
  letter-spacing: 0.2px;
  padding-top: 0.2rem;
}

article.section-wrapper p.title strong{
    color: #2c3e50;
    font-weight: 700;
}


.section-wrapper strong{
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.section-index {
    margin: 1em 0 1.5em 0;
}


.section-index ul {
    display: inline-flex;
    flex-wrap: wrap;

    list-style: none;
    padding: 0;
    margin: 0;
}

.section-index li {
    display: inline;
    margin-right: 1em;
}

li.section-index-icon {
    font-weight: 700;
    color: #000;
    margin-right: 0.3em;
}

.section-index a {
    color: #0B5D1E;
    text-decoration: none;
    font-size: 0.95rem;
}

.section-index a:hover {
    opacity: 0.7;
}












/*LINK EM DESTAQUE DENTRO DO POST*/

a.content-inline-link{
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(11, 93, 30, 0.25);
  transition: border-color .15s ease;
}

a.content-inline-link:hover {
  border-bottom-color: currentColor;
}








/* =========================================================
 CARD ESTILO STORE (HOVER LIMPO)
   ========================================================= */
.store-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-card {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.7s ease, transform 0.7s ease;
}

.store-card i{
    color: #fff;
    font-size: 2rem
}

.store-card span small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    color: #fff;
}

.store-card span strong {
    font-size: 1.05rem;
    color: #26272C;
    background-color: #fff;
    padding: 0.063rem 0.2rem;
    border-radius: 2px;
}


/* cores */
.store-card.steam {
    background: linear-gradient(135deg, #22364d, #345d7a);
}

.store-card.steam:hover {
    background: linear-gradient(135deg, #294462, #3e7396);
}


.store-card.google {
    background: linear-gradient(135deg, #104a8f, #216c38);
}

.store-card.google:hover {
    background: linear-gradient(135deg, #155bb5, #2a8645);
}


.date-updated{
    margin: 50px 0 0 0;
}


div.sidebar-section{
    visibility: hidden;
    height: 0px;
    z-index: -99999;
}



/* =========================
   FOOTER BASE
   ========================= */


footer .footer-title{
    font-size: 1.25rem;
    color: #0B5D1E;
    font-weight: 600;
    margin-bottom: 10px;
}


.footer-gw {
    width: 100%;
}

/* =========================
   BACKGROUNDS
   ========================= */

.bg-footer {
    background-color:#26272C; /* footer principal */
}

.bg-footer-legal {
    background-color: #26272C; /* barra legal */
    border-top: 1px solid #1f1f1f;
}

/* =========================
   FOOTER CONTENT
   ========================= */

.footer-gw .bg-footer .container {
    padding: 40px 0;
    color: #dcdcdc;
}

.footer-gw .flex-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.footer-gw .flex-column a {
    color: #cfcfcf;
    text-decoration: none;
}

.flex-column a:hover {
    color: #ffffff;
}

/* =========================
   FOOTER LEGAL
   ========================= */

.bg-footer-legal .container {
    padding: 14px 0;
}

.footer-legal-inner {
    text-align: center;
}

.footer-legal-inner p {
    margin: 0;
    font-size: 0.85rem;
    color: #8a8a8a;
    line-height: 1.4;
}

.footer-legal-inner span {
    display: block;
    font-size: 0.75rem;
    color: #6a6a6a;
}

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

@media (max-width: 768px) {
    .bg-footer .container {
        padding: 30px 0;
    }

    .footer-legal-inner p {
        font-size: 0.8rem;
    }
}

/* =========================
   DISCLAIMER
   ========================= */

.disclaimer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #cccccc;          /* texto claro */
    text-align: center;
    opacity: 0.85;           /* suaviza */
}




/* =========================
   TABLE TABELA
   ========================= */





.dark-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  font-size: 0.95rem;
  background-color: #26272C; /* fundo bem escuro */
  border: 1px solid #2a2a2a;
  color: #eaeaea; /* texto claro */
}

.dark-table th, 
.dark-table td {
  border: 1px solid #2a2a2a;
  padding: 0.8rem 1rem;
  text-align: left;
  color: #BBBBBB;
}

.dark-table th {
  background-color: #1f1f1f;
  color: #C3DFE0;
  font-weight: bold;
}

.dark-table tr:nth-child(even) {
  background-color: #1a1a1a;
}

.dark-table tr:nth-child(odd) {
  background-color: #121212;
}

.dark-table tr:hover {
  background-color: #2d2d2d;
  transition: background-color 0.2s ease;
}
