/* input(125,15): run-time error CSS1031: Expected selector, found '&'
input(125,15): run-time error CSS1025: Expected comma or open brace, found '&' */
/* HERO (P�GINA INICIAL) */
.hero-section {
    position: relative;
    height: 480px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    margin: 20px 40px; /* ? ADICIONADO: espa�o nas laterais e topo */
    border-radius: 24px; /* ? ADICIONADO: cantos arredondados */
}


/* Para telas menores, reduzir as margens */
@media (max-width: 1200px) {
    .hero-section {
        margin: 15px 20px;
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin: 10px 15px;
        border-radius: 16px;
        height: 380px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        margin: 8px 12px;
        border-radius: 12px;
        height: 320px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero-default-bg {
    background: linear-gradient(135deg, var(--verde-pastel), var(--bege-escuro));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Ajuste para telas m�dias */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        padding: 10px 20px;
    }
}


.hero-badge {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-hero-primary {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
}

.btn-hero-secondary {
    border: 2px solid white;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
}

 MAIN CONTENT & CARDS 
.main-content {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 8px;
}

.title-underline {
    width: 60px;
    height: 5px;
    background: var(--verde-pastel);
    border-radius: 3px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

    .post-card:hover {
        transform: translateY(-8px);
    }

.post-card-img {
    height: 200px;
    position: relative;
}

    .post-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.post-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--verde-pastel);
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 700;
}

.post-card-body {
    padding: 25px;
    flex-grow: 1;
}

.post-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--cinza-escuro);
}

.post-excerpt {
    font-size: 0.95rem;
    color: var(--cinza-medio);
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: #bbb;
    border-top: 1px solid #f9f9f9;
    padding-top: 15px;
}

.post-link {
    color: var(--verde-pastel);
    font-weight: 700;
    font-size: 0.9rem;
}

/*--- ESTILOS DO POST (BANNER E CONTE�DO) --- */
.post-banner-container {
    width: 90%;
    max-width: 1200px; /* Recomendado para n�o esticar demais em telas grandes */
    margin: 0 auto; /* O SEGREDO: Isso centraliza a container na tela */
    position: relative;
    background-color: var(--bege-medio);
    border-radius: 15px; /* Arredonda os cantos j� que agora ele n�o toca as bordas */
    overflow: hidden; /* Garante que a imagem e o overlay sigam o arredondado */
}

.post-banner-image {
    width: 100%; /* Agora ocupa 100% da container que j� est� centralizada */
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.post-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
}

 /*Ajuste para o T�tulo ficar Profissional */
.post-header {
    padding: 40px 0;
    border-bottom: 1px solid var(--bege-medio);
    margin-bottom: 30px;
}

.post-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cinza-escuro);
    line-height: 1.2;
    margin-bottom: 20px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .meta-item i {
        color: var(--verde-pastel);
    }

 /*Espa�amento do Conte�do */
.post-content {
    line-height: 1.8;
    font-size: 1.15rem;
    color: #444;
}

.post-article p {
    margin-bottom: 1.5rem;
}
/* ===== CATEGORIAS EM GRUPOS (SHELVE STYLE) ===== */
.category-group-section {
    margin-bottom: 80px; /* Espa�o grande entre os grupos de categorias */
    padding-bottom: 40px;
    border-bottom: 1px solid var(--bege-medio);
}

.category-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.group-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .group-title i {
        color: var(--verde-pastel);
        font-size: 1.8rem;
    }

    .group-title h2 {
        font-size: 2rem;
        font-weight: 800;
        margin: 0;
        color: var(--cinza-escuro);
    }

.count-badge {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.btn-see-all {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
    border: 2px solid var(--verde-pastel);
    padding: 8px 18px;
    border-radius: 8px;
}

    .btn-see-all:hover {
        background: var(--verde-pastel);
        color: white;
    }

/* Grid de Posts dentro da categoria (m�ximo 6) */
.category-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Garante que a imagem do card apare�a corretamente */
.post-card-img {
    height: 200px;
    background: #eee;
    overflow: hidden;
    position: relative;
}

    .post-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Faz a imagem preencher o espa�o sem distorcer */
    }

.no-posts-alert {
    grid-column: 1 / -1;
    padding: 40px;
    background: white;
    border-radius: 12px;
    text-align: center;
    color: #999;
    border: 2px dashed var(--bege-medio);
}

@media (max-width: 768px) {
    .category-group-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-see-all {
        width: 100%;
        text-align: center;
    }

    .group-title h2 {
        font-size: 1.5rem;
    }
}

/* ===== P�GINA SOBRE MODERNIZADA ===== */
.about-hero-modern {
    background: var(--primary-dark);
    padding: 100px 0 150px;
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.text-gradient {
    color: var(--verde-pastel);
}

.badge-tech {
    background: rgba(167,196,181,0.2);
    color: var(--verde-pastel);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Janela de C�digo Fake */
.code-window {
    background: #1e1e1e;
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    overflow: hidden;
}

.window-header {
    background: #333;
    padding: 10px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background: #ff5f56;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #27c93f;
}

.code-content {
    padding: 20px;
    font-family: 'Consolas', monospace;
    color: #d4d4d4;
}

.main-content-about {
    margin-top: -80px;
}

/* Cards */
.about-card-modern {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.card-icon {
    font-size: 3rem;
    color: var(--verde-pastel);
}

/* Grid de Features */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.f-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

    .f-card:hover {
        transform: translateY(-10px);
        border-bottom: 4px solid var(--verde-pastel);
    }

    .f-card i {
        font-size: 2rem;
        color: var(--verde-pastel);
        margin-bottom: 15px;
    }

/* Card do Criador */
.creator-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 80px;
}

.creator-header-bg {
    height: 150px;
    background: var(--verde-pastel);
    opacity: 0.3;
}

.creator-body {
    padding: 0 40px 40px;
    display: flex;
    gap: 40px;
    margin-top: -60px;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--branco);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bege-medio);
    border: 5px solid white;
    box-shadow: var(--shadow);
}

.s-tag {
    background: var(--bege-claro);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.btn-modern-primary {
    background: var(--verde-pastel);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .code-window {
        display: none;
    }

    .creator-body {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* AJUSTES DE REFINAMENTO - P�GINA SOBRE */

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 500px;
}

/* Janela de C�digo com Cores de Syntax Highlighting Real */
.code-keyword {
    color: #569cd6;
}

.code-class {
    color: #4ec9b0;
}

.code-prop {
    color: #9cdcfe;
}

.code-string {
    color: #ce9178;
}

.main-content-about {
    margin-top: -100px; /* Sobe mais os cards para o overlap ficar elegante */
    position: relative;
    z-index: 5;
}

/* Card de Miss�o */
.card-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--bege-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-dark);
    flex-shrink: 0;
}

/* Melhorias no Grid de Features */
.f-card {
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px 25px !important;
}

.f-icon {
    font-size: 2.2rem;
    color: var(--verde-pastel);
    margin-bottom: 15px;
}

    .f-icon i {
        display: inline-block;
        width: 100%;
    }

/* Melhorias no Card do Criador */
.creator-card-modern {
    border: none;
    background: #fff;
    margin-top: 40px;
    position: relative; /* ? ADICIONE ESTA LINHA */
    overflow: hidden; /* ? ADICIONE ESTA LINHA */
}

/* A faixa verde - ajuste para n�o aparecer atr�s da foto */
.creator-header-bg {
    background: linear-gradient(90deg, var(--primary-dark), var(--verde-pastel));
    height: 120px;
    opacity: 0.15; /* ? MUDE DE 0.8 PARA 0.15 (bem mais suave) */
    position: relative; /* ? ADICIONE ESTA LINHA */
    z-index: 0; /* ? ADICIONE ESTA LINHA */
}

/* O corpo do criador - para sobrepor a faixa */
.creator-body {
    padding: 0 40px 40px;
    display: flex;
    gap: 40px;
    margin-top: -60px;
    position: relative; /* ? ADICIONE ESTA LINHA */
    z-index: 1; /* ? ADICIONE ESTA LINHA */
}

/* Foto do criador - garantir que a faixa n�o aparece atr�s */
.creator-photo-wrapper {
    position: relative; /* ? ADICIONE ESTA LINHA */
    z-index: 2; /* ? ADICIONE ESTA LINHA */
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--branco);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--bege-medio);
    border: 5px solid white;
    box-shadow: var(--shadow);
    overflow: hidden; /* ? ADICIONE ESTA LINHA */
    position: relative; /* ? ADICIONE ESTA LINHA */
    z-index: 3; /* ? ADICIONE ESTA LINHA */
}

.dev-tag {
    background: var(--verde-pastel);
    color: var(--cinza-escuro);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
}

.skills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.s-tag {
    border: 1px solid var(--bege-medio);
    transition: var(--transition);
}

    .s-tag:hover {
        background: var(--verde-pastel);
        border-color: var(--verde-pastel);
        color: white;
    }

/* Bot�o Moderno */
.btn-modern-primary {
    background: var(--primary-dark);
    color: white !important;
    padding: 18px 45px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(143, 178, 163, 0.4);
    border: none;
}

    .btn-modern-primary:hover {
        background: var(--verde-pastel);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(143, 178, 163, 0.6);
    }


/* ===== P�GINA DE CONTATO MODERNIZADA ===== */

.main-content-contact {
    margin-top: -100px;
    padding-bottom: 80px;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

/* Sidebar de Info */
.contact-card-info {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.05);
}

.modern-methods {
    margin: 30px 0;
}

.m-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .m-method i {
        font-size: 1.2rem;
        color: var(--primary-dark);
        background: var(--bege-claro);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .m-method span {
        display: block;
        font-size: 0.8rem;
        color: var(--cinza-medio);
        text-transform: uppercase;
        font-weight: 700;
    }

    .m-method strong {
        color: var(--cinza-escuro);
        font-size: 0.95rem;
    }

/* Formul�rio Principal */
.contact-form-main {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    border-bottom: 6px solid var(--verde-pastel);
}

.form-row-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-modern {
    margin-bottom: 25px;
}

    .form-group-modern label {
        display: block;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--cinza-escuro);
        font-size: 0.9rem;
    }

.input-modern {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid var(--bege-claro);
    border-radius: 10px;
    background: #fdfdfd;
    transition: all 0.3s ease;
    outline: none;
}

    .input-modern:focus {
        border-color: var(--verde-pastel);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(167, 196, 177, 0.1);
    }

.btn-submit-modern {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-submit-modern:hover {
        background: var(--verde-pastel);
        transform: translateY(-2px);
    }

.text-danger-sm {
    font-size: 0.8rem;
    color: #dc3545;
    margin-top: 5px;
    display: block;
}

/* �cone do Header */
.contact-icon-header {
    font-size: 8rem;
    color: rgba(255,255,255,0.1);
    transform: rotate(-15deg);
}

@media (max-width: 992px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }

    .form-row-split {
        grid-template-columns: 1fr;
    }

    .contact-icon-header {
        display: none;
    }
}

/* ===== AJUSTES ESPEC�FICOS PARA O SEU HTML DE CONTATO ===== */

.contact-page {
    padding: 60px 0;
    background-color: var(--bege-claro);
}

    .contact-page .page-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .contact-page .page-header h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--cinza-escuro);
        }

/* Organiza��o do Grid Principal */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Info na esquerda, Form na direita */
    gap: 40px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Coluna de Informa��es (Esquerda) */
.contact-info h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

    .contact-method i {
        font-size: 1.2rem;
        color: var(--verde-pastel);
        background: var(--bege-claro);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
    }

    .contact-method h4 {
        margin: 0;
        font-size: 1rem;
        color: var(--cinza-escuro);
    }

    .contact-method p {
        margin: 0;
        color: var(--cinza-medio);
    }

/* Lista de Servi�os */
.services-list {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bege-medio);
}

    .services-list ul {
        list-style: none;
        padding: 0;
    }

    .services-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--cinza-medio);
    }

    .services-list i {
        color: var(--verde-pastel);
    }

/* Formul�rio (Direita) */
.contact-form-container {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
}

.contact-form h3 {
    margin-bottom: 25px;
    font-weight: 700;
}

/* Estiliza��o dos Inputs do ASP.NET */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--bege-claro);
    border-radius: 8px;
    transition: var(--transition);
}

    .contact-form .form-control:focus {
        border-color: var(--verde-pastel);
        outline: none;
        box-shadow: 0 0 0 3px rgba(167, 196, 181, 0.2);
    }

/* Bot�o de Enviar */
.btn-submit {
    background: var(--primary-dark);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
}

    .btn-submit:hover {
        background: var(--verde-pastel);
        transform: translateY(-2px);
    }

/* Responsividade */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
}


/*AJUSTE DE FOTOS*/
/* Container para garantir centraliza��o e respiro */
.post-image-container {
    width: 100%;
    margin: 30px 0;
}

/* Classe que for�a o padr�o visual */
.img-post-padrao {
    width: 100%;
    max-width: 900px; /* Ajuste a largura m�xima que desejar */
    height: 450px; /* Altura fixa para padronizar todas */
    object-fit: cover; /* Corta as bordas da imagem para preencher sem esticar */
    display: block;
    margin: 0 auto;
}

/* Ajuste para celular para n�o ficar um buraco enorme */
@media (max-width: 768px) {
    .img-post-padrao {
        height: 250px;
    }
}


/* ===== AFFILIATE PRODUCT CARDS ===== */

.affiliate-product-card {
    display: flex;
    gap: 1.5rem;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin: 1.5rem 0;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid var(--bege-medio);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

    .affiliate-product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    }

.sponsored-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #f0ad4e;
    color: #333;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    flex: 0 0 150px;
    height: 150px;
    background: var(--cinza-claro);
    border-radius: 8px;
    overflow: hidden;
}

    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-image .no-image {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--bege-medio);
        font-size: 2rem;
    }

.product-info {
    flex: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin: 0 0 0.5rem 0;
}

.product-description {
    color: var(--cinza-medio);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.product-price {
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--cinza-medio);
    margin-left: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffc107;
    font-size: 0.8rem;
}

.rating-count {
    font-size: 0.8rem;
    color: var(--cinza-medio);
}

.product-platform {
    font-size: 0.8rem;
    color: var(--cinza-medio);
    margin-bottom: 0.75rem;
}

    .product-platform i {
        width: 18px;
        color: var(--verde-pastel);
    }

.affiliate-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

    .affiliate-button:hover {
        background: linear-gradient(135deg, #218838, #1aa179);
        transform: translateY(-1px);
        color: white;
    }

.affiliate-disclosure {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: 0.25rem;
}

/* Responsividade */
@media (max-width: 640px) {
    .affiliate-product-card {
        flex-direction: column;
    }

    .product-image {
        flex: 0 0 auto;
        max-width: 200px;
        margin: 0 auto;
    }

    .affiliate-button {
        justify-content: center;
        width: 100%;
    }
}

/* ===== AUTH PAGES ===== */

.auth-page {
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
    background: linear-gradient(135deg, var(--bege-claro) 0%, white 100%);
}

.auth-card {
    max-width: 450px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bege-medio);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .auth-header i {
        font-size: 2.5rem;
        color: var(--verde-pastel);
        margin-bottom: 1rem;
    }

    .auth-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: var(--cinza-escuro);
    }

    .auth-header p {
        color: var(--cinza-medio);
        font-size: 0.9rem;
    }

.auth-card .form-group {
    margin-bottom: 1.25rem;
}

.auth-card label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--cinza-escuro);
}

.input-icon {
    position: relative;
}

    .input-icon i {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--cinza-medio);
    }

    .input-icon input {
        padding-left: 40px;
    }

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

    .checkbox-label input {
        width: auto;
        margin: 0;
    }

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bege-medio);
}

    .auth-links a {
        color: var(--verde-pastel);
        text-decoration: none;
        display: inline-block;
        margin: 0.25rem 0;
    }

        .auth-links a:hover {
            text-decoration: underline;
        }

.w-100 {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* Alertas */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert i {
    margin-right: 0.5rem;
}

/* Responsivo */
@media (max-width: 576px) {
    .auth-page {
        padding: 2rem 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }
}

/* ===== PROFILE PAGE ===== */
.profile-page,
.newsletter-page {
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
}

.profile-card,
.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bege-medio);
}

.profile-header,
.newsletter-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .profile-header i,
    .newsletter-header i {
        font-size: 3rem;
        color: var(--verde-pastel);
        margin-bottom: 1rem;
    }

    .profile-header h1,
    .newsletter-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--bege-escuro);
    color: var(--cinza-escuro);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.5rem;
}

    .btn-outline:hover {
        background: var(--bege-escuro);
        color: white;
    }

.btn-danger {
    background: #dc3545;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.newsletter-info {
    text-align: center;
    margin-top: 1rem;
    color: var(--cinza-medio);
}

.text-center {
    text-align: center;
}

@media (max-width: 576px) {
    .profile-card,
    .newsletter-card {
        padding: 1.5rem;
    }
}


/* ===== PROFILE PAGE ===== */
.profile-page,
.newsletter-page {
    padding: 4rem 0;
    min-height: calc(100vh - 400px);
}

.profile-card,
.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--bege-medio);
}

.profile-header,
.newsletter-header {
    text-align: center;
    margin-bottom: 2rem;
}

    .profile-header i,
    .newsletter-header i {
        font-size: 3rem;
        color: var(--verde-pastel);
        margin-bottom: 1rem;
    }

    .profile-header h1,
    .newsletter-header h1 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }

.btn-outline {
    background: transparent;
    border: 2px solid var(--bege-escuro);
    color: var(--cinza-escuro);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    margin-left: 0.5rem;
}

    .btn-outline:hover {
        background: var(--bege-escuro);
        color: white;
    }

.btn-danger {
    background: #dc3545;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.newsletter-info {
    text-align: center;
    margin-top: 1rem;
    color: var(--cinza-medio);
}

.text-center {
    text-align: center;
}

@media (max-width: 576px) {
    .profile-card,
    .newsletter-card {
        padding: 1.5rem;
    }
}

/*Pagina about*/
.contact-info-about {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bege-medio);
}

.contact-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cinza-medio);
    font-size: 0.95rem;
}

    .contact-item i {
        color: var(--verde-pastel);
        font-size: 1.2rem;
    }

@media (max-width: 768px) {
    .contact-items {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/*CONTACT*/

.social-contact {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--bege-medio);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

    .social-icons a {
        color: var(--cinza-medio);
        font-size: 1.5rem;
        transition: var(--transition);
    }

        .social-icons a:hover {
            color: var(--verde-pastel);
            transform: translateY(-3px);
        }

.services-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cinza-medio);
    font-size: 0.9rem;
}

.services-list i {
    color: var(--verde-pastel);
}

@media (max-width: 768px) {
    .services-list ul {
        grid-template-columns: 1fr;
    }
}