:root { 
    --bg: #15100c; 
    --text: #e6e6e6; 
    --gold: #d4af37; 
    --gold-light: #f3e5ab;
    --muted: #a0a0a0; 
    --card-bg: #1e1814; 
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Merriweather', serif; 
    line-height: 1.7; 
    overflow-x: hidden; 
}
h1 {
    font-size: 22px;
}
/* Container Responsivo */
.container { 
    max-width: 900px;
    margin: 0 auto; 
    padding: 0 20px; 
    position: relative; 
    z-index: 2; 
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-bottom: 50px;
    background: #cecece;
    
}

/* BACKGROUND IMAGES */
.hero-bg-left, .hero-bg-right {
    position: absolute;
    top: 0; 
    height: 100%; 
    width: 53%;
    background-size: cover; 
    opacity: 1; 
    z-index: 1;
}

.hero-bg-left {
    left: 0; 
    background-position: right top;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.hero-bg-right {
    right: 0; 
    background-position: right top;
    transform: scaleX(-1); 
    opacity: 0.9;
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(21,16,12,1) 80%);
    z-index: 2;
}

.hero-content {
    position: relative; 
    z-index: 3; 
    width: 100%; 
    text-align: center; 
    padding-bottom: 30px;
    border-bottom: dashed 1px #f8c06d38;
}

.blog-tag {
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; 
    font-size: 14px;
    text-transform: uppercase; 
    letter-spacing: 3px; 
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px; 
    display: block;
}

.logo-hero { 
    height: 60px; 
    margin-bottom: 20px; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); 
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif; 
    font-size: 13px; 
    color: var(--gold);
    text-transform: uppercase; 
    letter-spacing: 2px; 
    margin-bottom: 10px; 
    font-weight: 700;
}

.hero-title {
    font-family: 'Montserrat', sans-serif; 
    font-size: 48px; 
    line-height: 1.1;
    font-weight: 900; 
    text-transform: uppercase; 
    color: #fff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8); 
    margin: 0 20px;
}
/* BOTÃO VOLTAR */
    .btn-back {
        position: absolute;
        top: 25px;
        left: 25px;
        z-index: 20; /* Fica acima de tudo no hero */
        width: 45px;
        height: 45px;
        border-radius: 50%;
        background: rgba(0,0,0,0.4);
        border: 1px solid rgba(255,255,255,0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-back:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: #15100c;
        transform: scale(1.1);
    }
    
    .btn-back svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
/* TIPOGRAFIA */
p { 
    margin-bottom: 30px; 
    color: #ccc; 
    font-weight: 300; 
    font-size: 18px; 
    line-height: 1.8; 
}

strong { color: #fff; font-weight: 700; }

h2 {
    font-family: 'Montserrat', sans-serif; 
    font-size: 28px; 
    font-weight: 800;
    color: var(--gold-light); 
    margin: 60px 0 30px;
    border-left: 5px solid var(--gold); 
    padding-left: 20px;
    line-height: 1.2;
}

.gene-badge {
    display: inline-block; 
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4); 
    color: var(--gold-light);
    font-family: 'Montserrat', sans-serif; 
    font-weight: 700; 
    font-size: 14px;
    padding: 8px 15px; 
    border-radius: 50px; 
    margin: 5px 5px 5px 0;
}

.gene-highlight {
    background: rgba(203, 191, 170, 0.1); 
    padding: 2px 3px; 
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif; 
    font-weight: bold; 
    color: #cbcbcb; 
    font-size: 0.9em;
}

/* RESULTADOS */
.results-box {
    background: #1e1814; 
    padding: 40px; 
    border-radius: 16px; 
    border: 1px solid #3e3630;
}

.res-row {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    border-bottom: 1px solid #332b26; 
    padding: 18px 0; 
    font-family: 'Montserrat', sans-serif; 
    font-size: 18px;
}

.res-row:last-child { border: 0; }

.res-val { 
    font-weight: 800; 
    color: var(--gold); 
}

.glossary-box {
    background: rgba(255,255,255,0.03); 
    padding: 35px; 
    border-radius: 12px; 
    border-left: 4px solid #555; 
    margin: 40px 0; 
    font-size: 1rem;
}

.glossary-box li { margin-bottom: 15px; }

.cta-wrapper { 
    margin: 80px 0 50px; 
    text-align: center; 
}

.btn-main {
    display: inline-block; 
    background: var(--gold); 
    color: #15100c;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 800; 
    text-transform: uppercase;
    padding: 20px 45px; 
    border-radius: 50px; 
    border: none; 
    font-size: 18px;
    box-shadow: 0 5px 20px rgba(203, 191, 170, 0.3); 
    margin-top: 25px; 
    text-decoration: none;
}

.btn-main:hover { 
    transform: translateY(-3px); 
    background: #e0d4be; 
}

/* CTA FIXO (botão do scroll) */
.sticky-cta-wrapper {
    position: fixed; 
    bottom: 0px; 
    left: 0; 
    width: 100%;
    display: flex; 
    justify-content: center; 
    pointer-events: none; 
    z-index: 999;
    background: #251508db;
    padding: 20px;

    /* invisível por padrão */
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sticky-cta-wrapper.visible {
    opacity: 1;
    pointer-events: auto;
}

.btn-gold {
    pointer-events: auto; 
    background: #cba363; 
    color: #241b14;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 900; 
    font-size: 16px;
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    padding: 5px 25px; 
    border-radius: 10px;
    text-decoration: none; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.2s, background 0.2s; 
    border: 2px solid #fff2;
    text-align: center;
    width: 100%;
}

.btn-gold:hover { 
    transform: translateY(-3px) scale(1.05); 
    background: #deb97b; 
}

/* FOOTER */
footer {
    text-align: center; 
    font-size: 12px; 
    color: #555; 
    padding: 50px 0 120px 0;
    border-top: 1px solid #222; 
    margin-top: 60px; 
    font-family: 'Montserrat';
}

/* MOBILE */
@media(max-width: 768px) {
    .container { max-width: 100%; padding: 0 20px; }
    .hero-section { height: 420px; }
    .hero-title { font-size: 28px; }
    .logo-hero { height: 40px; }
    p { font-size: 16px; margin-bottom: 25px; }
    h2 { font-size: 22px; margin: 40px 0 20px; }
    .results-box { padding: 25px; }
    .res-row { font-size: 16px; padding: 15px 0; }
    .glossary-box { padding: 25px; font-size: 0.95rem; }
    .btn-main { padding: 18px 35px; font-size: 16px; }
}
.subtitulo_botao {
   font-size: 11px;
    font-weight: 100;
}
.autor-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 50px 0 20px;
    opacity: 0.8;
    
}

.autor-mini:hover {
    opacity: 1;
}

.autor-mini-foto {
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #857e74;
}

.autor-mini-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.autor-mini-nome {
    font-family: 'Montserrat';
    font-size: 14px;
    color: #fff;
    font-weight: 700;
}

.autor-mini-desc {
    font-size: 12px;
    color: #bbb;
}
.insta-box {
    text-align: center;
    margin: 40px 0 10px;
}

.insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat';
    font-size: 14px;
    transition: 0.2s ease;
}

.insta-link:hover {
    background: rgba(255,255,255,0.15);
}

.insta-ico {
    height: 22px;
    
}
.criador {
    font-size: 11px;
    color: #ddb475;
    margin-top: 2px;
}
.link-copy { color: #ccc; text-decoration: none; }
.buttons_app {
            display:flex;
            justify-content:center;
            gap:10px;
	margin-top: 7px;
	margin-bottom: 40px;
        }

        .store-btn img {

            transition:0.2s;
            cursor:pointer;
        }

        .store-btn img:hover {
            transform:scale(1.05);
        }
        .copy-social { width: 100%; margin-top: 10px; }


.copy-social { width: 100%; margin-top: 10px; }
.item-social {width: 30px;margin: 3px;}


.analise-transmissao-box {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--gold);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}
.analise-transmissao-box p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 12px;
}
.analise-transmissao-box p:last-child { margin-bottom: 0; }
.ver_detalhes {
    border-radius: 6px;
    color: #1e1814;
    font-size: 12px;
    margin-left: 5px;
    background: #cba363;
    padding: 3px;
}
/* NOVA CLASSE PARA A IMAGEM DO RESULTADO */
.res-img {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid var(--gold);
    background: #000;
}
