/* =========================
HERO HOME
========================= */
.hero-home{
    width:100%;
    min-height:420px;
    background-image:url("https://guiadecomprador.com.br/wp-content/uploads/2026/03/ofertas-online-guia-de-comprador.webp");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
    padding:60px 20px;
}

.hero-container{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.hero-col{
    flex:1;
}

.hero-col-texto{
    max-width:600px;
}

.hero-col-texto h1{
    color:#fff;
    font-size:40px;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-col-texto span{
    color:#F09F53;
}

.hero-col-texto p{
    color:#ffc;
    margin-bottom:12px;
}

.aprovado{
    font-size:13px;
    color:#fff !important;
    margin-top:15px;
}

/* =========================
PROCESSO
========================= */
.gc-processo{
    padding:20px 20px;
    background:#fff;
    text-align:center;
}

.gc-titulo{
    font-size:32px;
    margin-bottom:15px;
	}

.gc-subtitulo{
    max-width:700px;
    margin:0 auto 40px auto;
    color:#666;
}

/* GRID CARDS */
.gc-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    max-width:1100px;
    margin:0 auto;
	}

/* CARD */
.gc-card{
    background:#7a3505;
    color:#fff;
    padding:30px 25px 10px;
    border-radius:10px;
    transition:0.3s;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.gc-card-dark{
    background:#111;
}

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

.gc-icon{
    font-size:36px;
    margin-bottom:15px;
}

.gc-card h3{
    font-size:20px;
    margin-bottom:10px;
	color:#ffc;
}

.gc-card p{
    font-size:15px;
}

/* =========================
PROVA SOCIAL
========================= */
.gc-prova-social{
    padding:20px 20px;
    background:#f7f7f7;
}

.gc-prova-titulo{
    text-align:center;
    font-size:30px;
    margin-bottom:15px;
}

.gc-prova-desc{
    text-align:center;
    max-width:750px;
    margin:0 auto 40px auto;
    color:#666;
}

/* GRID DEPOIMENTOS */
.gc-depoimentos{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    max-width:1000px;
    margin:0 auto;
}

/* CARD DEPOIMENTO ***************************************************** */
.gc-depoimento{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.gc-depoimento img{
    width:100px;
    height:100px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:5px;
}

.gc-local{
    font-size:13px;
    color:#777;
    display:block;
    margin-bottom:5px;
}

.gc-estrelas{
    color:#f5b301;
    margin-bottom:5px;
}

/* =========================
GOOGLE CTA
========================= ***************************************************** */
.gc-google-cta{
    margin:20px auto;
    padding:10px 20px;
    background:#fff;
    border-radius:12px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    max-width:900px;
}

.gc-google-btn{
    display:inline-block;
    background:#F09F53;
    color:#fff;
	margin:20px 0px 30px;
    padding:14px 28px;
    border-radius:6px;
    font-weight:600;
}

.gc-google-btn:hover{
    background:#e65c00;
}

/* =========================
FAQ
========================= ***************************************************** */
.faq-section{
    padding:10px 20px;
    background:#f7f7f7;
}

.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-container h2{
    text-align:center;
    margin-bottom:10px;
}

.faq-item{
    background:#fff;
    padding:20px;
    margin-bottom:15px;
    border-radius:8px;
    border:1px solid #e5e5e5;
}
.affiliate-disclaimer{
	padding-top:30px;
	font-size:13px;
}
.amazon-disclaimer{
	font-size:13px;
}
/* =========================
RESPONSIVO
========================= */
@media (max-width: 768px){
.hero-home{
    background-image:url("https://guiadecomprador.com.br/wp-content/uploads/2026/03/ofertas-imperdiveis-guia-de-comprador.webp");
    padding:170px 20px 30px;
}

    /* HERO */
    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-col-texto h1{
        font-size:26px;
    }

    .hero-col-espaco{
        display:none;
    }

    /* CARDS */
    .gc-cards{
        grid-template-columns:1fr;
    }

    /* DEPOIMENTOS */
    .gc-depoimentos{
        grid-template-columns:1fr;
    }

    /* TEXTOS */
    .gc-titulo{
        font-size:24px;
    }

    .gc-prova-titulo{
        font-size:24px;
    }

}