:root {
    --amarelo-marca: #ffc107; 
    --amarelo-claro: #ffe082;
    --texto-escuro: #1a1a1a;
    --texto-cinza: #555555;
    --fundo-pagina: #fdfbf7;
    --fonte-titulos: 'Outfit', sans-serif;
    --fonte-textos: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--fundo-pagina);
    color: var(--texto-escuro);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: var(--fonte-textos);
}

h1, h2, h3, h4 {
    font-family: var(--fonte-titulos);
}

/* --- HEADER CLEAN --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: relative;
    z-index: 10;
    background: var(--texto-escuro);
}

.btn a {
    text-decoration: none;
    color: var(--amarelo-marca);
    border: 2px solid var(--amarelo-marca);
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn a:hover {
    background-color: var(--amarelo-marca);
    color: var(--texto-escuro);
}

/* --- HERO SECTION */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 80px 5%; /* Ajustado para % para melhor responsividade */
    background: var(--amarelo-marca);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
}

/* --- ANIMAÇÃO DO CELULAR FLUTUANTE --- */
.hero-imagem {
    display: flex;
    justify-content: center;
    position: relative;
    align-items: center;
    background: var(--texto-escuro);
}

.celular-flutuante {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0px 30px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

.celular-flutuante img {
    max-height: 70vh; /* Ajustado para não estourar em telas pequenas */
    width: auto;
    max-width: 100%;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-conteudo {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    width: 100%; /* Corrigido de 90vh para 100% */
    height: auto; /* Corrigido de 50vh para auto */
    text-align: left;
    gap: 20px;
}

.titulo {
    font-size: 3rem;
    color: #000;
    font-weight: 600;
    font-family: var(--fonte-titulos);
}

.titulo-destaque {
    font-size: 3rem;
    color: #fff;
}

.card-card p {
    color: #1a1a1a;
    font-size: 1.2rem;
    text-align: left;
}

/* --- BOTÃO DE AÇÃO --- */
.btn-primary {
    text-decoration: none;
    background-color: transparent;
    color: #000;
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #000;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
}

/*sobre*/
.sobre-section {
    background: var(--fundo-pagina);
    padding: 80px 5%;
}

.container-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.imagem img {
    max-height: 60vh;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.sobre-conteudo {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

.sobre-conteudo h1 {
    font-size: 2.5rem;
    color: var(--amarelo-marca);
    text-align: left;
}

.sobre-conteudo span {
    color: var(--texto-escuro);
}

/*app*/
.cards-section {
    padding: 80px 5%;
    background: var(--amarelo-marca);
}

.header-section {
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding-bottom: 30px;
}

.header-section h1 {
    font-size: 2.5rem;
}

.header-section h1,
.header-section p {
    text-align: center;
    color: #000;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    gap: 25px 40px; 
    align-items: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.center-mockup {
    grid-column: 2;
    grid-row: 1 / span 3;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-mockup img {
    width: 100%;
    max-width: 280px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: opacity 0.3s ease;
}

.card-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Cards Escuros */
.card-dark {
    background-color: var(--texto-escuro); 
}

.card-dark h3, 
.card-dark p {
    color: #ffffff;
}

.card-left::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -14px; 
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #ffffff; 
}

.card-right::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -14px; 
    transform: translateY(-50%);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-right: 14px solid #ffffff;
}

.card-left.card-dark::after { border-left-color: var(--texto-escuro); }
.card-right.card-dark::after { border-right-color: var(--texto-escuro); }

.pos-l-1 { grid-column: 1; grid-row: 1; }
.pos-l-2 { grid-column: 1; grid-row: 2; }
.pos-l-3 { grid-column: 1; grid-row: 3; }

.pos-r-1 { grid-column: 3; grid-row: 1; }
.pos-r-2 { grid-column: 3; grid-row: 2; }
.pos-r-3 { grid-column: 3; grid-row: 3; }

/*vantagens*/
.vantagens-section {
    padding: 80px 5%;
    background: var(--fundo-pagina); 
}

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

.card-vantagem {
    display: flex;
    flex-direction: column;
    background: #ebebeb;
    padding: 30px;
    border-radius: 10px;
    gap: 15px;
}

.card-vantagem-title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.number {
    color: var(--amarelo-marca);
    font-size: 1.5rem;
    font-weight: 600;
}

#vantagens-grid-section {
    grid-template-columns: 1fr 1.5fr;
}

.vantagem-descricao p {
    font-size: 0.90rem;
    text-align: left;
}

/*benedicios*/
.beneficios-section {
    padding: 80px 5%;
    background-color: var(--fundo-pagina);
    margin: 0 auto;
}

.header-section {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px auto;
}

.header-section h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.destaque-amarelo {
    color: var(--amarelo-marca);
}

.texto-escuro {
    color: var(--texto-escuro);
}

.subtitulo-beneficios {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.badge-amarelo {
    background-color: var(--amarelo-marca);
    color: var(--texto-escuro);
    padding: 3px 12px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    margin: 0 4px;
    font-size: 1.05rem;
}

.steps-container {
    display: flex;
    align-items: flex-start; 
    justify-content: space-between;
    gap: 15px;
}

.step-card {
    flex: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

#step-destaque {
    background: var(--amarelo-marca);
    border-radius: 50px;
    padding: 20px;
}

#step-destaque p {
    color: #000;
    font-weight: 600;
}

.step-icon {
    background-color: #ffffff;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    margin-bottom: 25px;
    border: 2px solid var(--amarelo-marca);
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: scale(1.1) translateY(-5px);
}

.step-icon img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.step-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
}

.step-connector {
    flex: 0.6;
    height: 2px;
    background: repeating-linear-gradient(to right, transparent, transparent 6px, #b3b3b3 6px, #b3b3b3 12px);
    margin-top: 80px; 
    position: relative;
    margin-right: 40px;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -6px;
    width: 12px;
    height: 12px;
    border-top: 3px solid #b3b3b3;
    border-right: 3px solid #b3b3b3;
    transform: rotate(45deg);
}

/*pagamento*/
.pagamento-section {
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    background: var(--texto-escuro);
}

.plano {
    max-width: 90%;
    height: auto;
    filter: drop-shadow(0px 30px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
}

.plano img {
    max-height: 70vh;
    width: auto;
    max-width: 100%;
}

#plano-conteudo span,
#plano-conteudo p {
    color: #fff;
}

.valor {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.valor h3 {
    color: #fff;
    font-size: 1.2rem;
}

.valor h2 {
    color: var(--amarelo-marca);
    font-size: 2rem;
}

.conteudo-plano {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.conteudo-plano p {
    color: #fff;
    font-weight: 600;
}

.cta-final{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: var(--texto-escuro);
   
}

.container-cta-final{
    padding: 80px 40px;;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    background: var(--amarelo-marca);
    width: 100%;

}

/*final*/
.app-final {
    padding: 80px 5%;
}

.btn-lojas {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}

.btn-lojas img {
    height: 60px;
    cursor: pointer; 
    border-radius: 12px; 
    border: 2px solid transparent; 
    transition: all 0.3s ease; 
}

.btn-lojas img:hover {
    transform: translateY(-6px); 
    border-color: var(--texto-escuro); 
}

/*blog-section*/
.blog-section {
    padding: 80px 5%;
    background: #f4f4f4; 
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.card-blog {
    display: flex;
    flex-direction: column;
    background: #fff;
    padding: 10px;
    gap: 20px;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 1px solid #f1f1f1;
}

.card-blog:hover {
    transform: translateY(-5px);
}

.img-card {
    width: 100%;
}

.img-card img {
    width: 100%;
    object-fit: cover;
}

.card-blog-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    padding: 10px;
}

.card-blog-text h3 {
    font-size: 1.1rem;
}

.card-blog-text p {
    color: #555;
    font-size: 0.95rem;
}

.button-bottom {
    padding: 15px;
    background: var(--texto-escuro);
}

.button-bottom a {
    text-decoration: none;
    color: var(--amarelo-marca);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-bottom img {
    height: 20px;
}


/* PÁGINA DO BLOG  */

.page-blog {
    background: var(--fundo-pagina);
}

.blog-main {
    padding-bottom: 40px;
}

.blog-hero {
    padding: 60px 5%;
}

.blog-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden; 
    border: 1px solid rgba(0,0,0,0.04);
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.02);
}

.blog-hero-img {
    height: 100%;
    min-height: 350px;
}

.blog-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-hero-texto {
    padding: 60px 40px;
    position: relative;
    overflow: hidden; 
}

.decor-circle-edge {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--amarelo-marca);
    border-radius: 50%;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15; 
    z-index: 0;
}

.blog-hero-texto h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--texto-escuro);
    margin: 15px 0 20px 0;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.blog-hero-texto p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.blog-topicos {
    padding: 60px 5%;
    background: var(--amarelo-marca);
}

.blog-topicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.topico-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.topico-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--texto-escuro);
}

.topico-item p {
    font-size: 0.95rem;
    color: #333; 
    font-weight: 500;
    line-height: 1.6;
}

.blog-feed {
    padding: 80px 5% 100px 5%;
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.card-blog {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f1f1;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.card-blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.img-card {
    width: 100%;
    height: 220px; 
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.card-blog-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    flex: 1; 
}

.card-blog-text h3 {
    font-size: 1.25rem;
    line-height: 1.3;
    color: var(--texto-escuro);
}

.card-blog-text p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.button-bottom {
    padding: 20px 25px;
    background: var(--texto-escuro);
    margin-top: auto;
}

.button-bottom a {
    text-decoration: none;
    color: var(--amarelo-marca);
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.button-bottom img {
    height: 16px;
    transition: transform 0.3s ease;
}

.card-blog:hover .button-bottom img {
    transform: translateX(6px); 
}

.paginacao {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 600;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.page-link:hover, .page-link.ativo {
    background: var(--amarelo-marca);
    color: var(--texto-escuro);
    border-color: var(--amarelo-marca);
}


/*footer*/
.footer {
    background-color: var(--texto-escuro);
    padding: 80px 5%;
    font-family: var(--fonte-textos);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto 40px auto;
}

.footer-box {
    border-radius: 32px;
    padding: 40px;
    display: flex;
    transition: transform 0.3s ease;
}

.footer-box:hover {
    transform: translateY(-5px);
}

.box-app {
    grid-column: 1 / span 3;
    background-color: var(--amarelo-marca);
    color: var(--texto-escuro);
    justify-content: space-between;
    align-items: center;
}

.app-texto h2 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.app-texto p {
    font-size: 1.1rem;
    font-weight: 500;
}

.app-lojas {
    display: flex;
    gap: 20px;
}

.app-lojas img {
    height: 50px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    border: 2px solid #000;
}

.app-lojas img:hover {
    transform: scale(1.05);
}

.box-logo {
    grid-column: 4 / span 1;
    justify-content: center;
    align-items: center;
}

.box-logo img {
    height: 55px;
}

.box-contato {
    grid-column: 1 / span 2;
    color: #ffffff;
    justify-content: space-between;
    align-items: center;
}

.box-contato p {
    font-size: 1.4rem;
}

.contato-icons {
    display: flex;
    gap: 15px;
}

.contato-icons img {
    height: 60px;
    padding: 10px;
    transition: all 0.3s ease;
}

.contato-icons a:hover img {
    transform: scale(1.1);
}

.box-links {
    grid-column: 3 / span 2;
    background-color: #eae7e0; 
    justify-content: space-evenly;
    align-items: center;
}

.box-links a {
    color: var(--texto-escuro);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
}

.box-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--amarelo-marca);
    transition: width 0.3s ease;
}

.box-links a:hover::after {
    width: 100%;
}

.footer-final {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    font-size: 0.90rem;
    color: #b3b3b3;
}

.footer-final a {
    color: #b3b3b3;
    text-decoration: none;
}

/* ========================================= */
/* --- PÁGINA DE LEITURA (ESTRUTURA DE PORTAL) --- */
/* ========================================= */

.page-artigo-full {
    background: #fdfdfd;
}

.artigo-main-full {
    width: 100%;
}

/* --- CABEÇALHO GIGANTE (COVER) --- */
.artigo-hero-cover {
    position: relative;
    width: 100%;
    height: 60vh; /* Ocupa 60% da altura da tela */
    min-height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end; /* Alinha o conteúdo na base */
}

/* Camada escura por cima da foto para dar leitura no texto */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-conteudo-interno {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5% 60px 5%;
}

.btn-voltar-branco {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.btn-voltar-branco:hover {
    opacity: 1;
    color: var(--amarelo-marca);
}

.hero-conteudo-interno h1 {
    font-size: 3.5rem;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 900px;
}

.artigo-meta {
    color: #d1d1d1;
    font-size: 1.05rem;
    font-weight: 500;
}

.artigo-estrutura-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr; 
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5%;
}

.artigo-texto-completo {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2a2a2a;
    text-align: justify;
    
}

.artigo-texto-completo p {
    margin-bottom: 25px;
}

.artigo-texto-completo h2 {
    font-family: var(--fonte-titulos);
    font-size: 2.2rem;
    color: var(--texto-escuro);
    margin: 50px 0 20px 0;
}

.artigo-texto-completo h3 {
    font-family: var(--fonte-titulos);
    font-size: 1.6rem;
    color: var(--texto-escuro);
    margin: 40px 0 15px 0;
}

.artigo-texto-completo ul, .artigo-texto-completo ol {
    margin: 0 0 30px 25px;
}

.artigo-texto-completo li {
    margin-bottom: 10px;
}

.artigo-texto-completo img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.artigo-texto-completo strong {
    font-weight: 700;
    color: #000;
}

.artigo-texto-completo blockquote {
    border-left: 5px solid var(--amarelo-marca);
    padding-left: 20px;
    font-size: 1.3rem;
    font-style: italic;
    color: #555;
    margin: 40px 0;
    background: #fdfbf7;
    padding: 20px;
    border-radius: 0 12px 12px 0;
}

/* --- BARRA LATERAL (SIDEBAR) --- */
.artigo-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-box h3 {
    font-size: 1.3rem;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.social-share {
    display: flex;
    gap: 15px;
}

.social-share img {
    height: 45px;
    background: #f1f1f1;
    padding: 10px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.social-share a:hover img {
    transform: scale(1.1);
    background: var(--amarelo-marca);
}

.sidebar-feed {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--texto-escuro);
    transition: transform 0.2s ease;
}

.sidebar-card:hover {
    transform: translateX(5px);
}

.sidebar-card img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.sidebar-card h4 {
    font-size: 1rem;
    line-height: 1.4;
}

.sidebar-banner-app {
    background: var(--texto-escuro);
    color: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.sidebar-banner-app h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.sidebar-banner-app p {
    color: #b3b3b3;
    margin-bottom: 25px;
}


@media (max-width: 1024px) {
    /* App (Cards de Setinhas) */
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .center-mockup {
        grid-column: 1;
        grid-row: 1; 
        margin-bottom: 30px;
    }
    
    .pos-l-1, .pos-l-2, .pos-l-3, .pos-r-1, .pos-r-2, .pos-r-3 {
        grid-column: 1;
        grid-row: auto;
    }

    .card-left::after, .card-right::after {
        display: none; 
    }

     .artigo-estrutura-grid {
        grid-template-columns: 1fr; 
    }
    
    .artigo-sidebar {
        margin-top: 40px;
        padding-top: 40px;
        border-top: 1px solid #eaeaea;
    }
}

@media (max-width: 992px) {
    /* Hero e Global */
    .container-grid, .container-grid-section {
        text-align: center;
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .hero-conteudo {
        align-items: center;
        text-align: center;
    }

    .card-card p {
        text-align: center;
    }

    /* Sobre */
    .sobre-section {
        padding: 40px 5%;
    }
    
    .sobre-conteudo {
        align-items: center;
        text-align: justify;
    }

    .sobre-conteudo h1{
        text-align: center;
    }

    .header-section p{
        text-align: justify;
    }

    .app-final{
        padding: 20px !important;
    }

    /* Vantagens */
    .card-vantagens-grid, #vantagens-grid-section {
        grid-template-columns: 1fr;
    }

    /* Benefícios */
    .steps-container {
        flex-direction: column; 
        align-items: center;
        gap: 30px;
    }

    .step-card {
        max-width: 100%;
    }

    .step-connector {
        flex: none;
        width: 2px;
        height: 50px;
        background: repeating-linear-gradient(to bottom, transparent, transparent 6px, #b3b3b3 6px, #b3b3b3 12px);
        margin: 0 auto; 
    }

    .step-connector::after {
        right: -5px; 
        top: auto;
        bottom: -2px;
        border-top: none;
        border-left: none;
        border-bottom: 3px solid #b3b3b3;
        border-right: 3px solid #b3b3b3;
    }

    /* Blog */
    
    .footer-container {
        grid-template-columns: 1fr;
    }

    .box-app, .box-logo, .box-contato, .box-links {
        grid-column: 1 / span 2;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .app-lojas, .contato-icons {
        justify-content: center;
    }

    .footer-final {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .blog-hero-grid, 
    .blog-topicos-grid, 
    .blog-grid {
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    
    .blog-hero-texto {
        padding: 40px 5%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    .titulo, .titulo-destaque, .header-section h2, .header-section h1 {
        font-size: 2.2rem;
    }
    
    .btn-lojas {
        flex-direction: column;
        gap: 15px;
    }

    .hero-conteudo-interno h1 {
        font-size: 2.5rem;
    }
    .artigo-hero-cover {
        height: 50vh;
    }
}