/* ----------------------------
   RESET BÁSICO
----------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f6fa;
    color: #222;
    line-height: 1.6;
}

/* ----------------------------
   HEADER
----------------------------- */

.site-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem 0.5rem;
}

.site-header-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.site-logo img,
.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    object-fit: cover;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.25);
}

.site-title-block {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.site-title-main {
    font-weight: 700;
    font-size: 1.05rem;
    color: #111827;
}

.site-title-sub {
    font-size: 0.85rem;
    color: #6b7280;
}

.site-title-tag {
    font-size: 0.78rem;
    color: #1d4ed8;
}


/* ----------------------------
   HERO / CABEÇALHO DO REVIEW
----------------------------- */

.hero {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding: 0 1.25rem 2rem;
}

.hero-label {
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e6f2ff;
    color: #0056b3;
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 0.4rem;
    color: #111827;
}

.hero h2 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 1rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.hero-meta .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #16a34a;
}

/* GRID HERO */

.hero-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 1.5rem;
    align-items: stretch;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

/* BOX LATERAL HERO */

.hero-sidebox {
    background: #0f172a;
    color: #e5e7eb;
    padding: 1.4rem 1.3rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.55);
}

.hero-sidebox strong {
    font-size: 1rem;
}

.hero-sidebox ul {
    list-style: none;
    margin-left: 0;
}

.hero-sidebox li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
}

.hero-sidebox li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4ade80;
    font-size: 0.85rem;
}

/* ----------------------------
   LAYOUT GERAL
----------------------------- */

main {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

article {
    background: #fff;
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

aside.sidebar {
    position: sticky;
    top: 1.5rem;
    align-self: flex-start;
}

/* ----------------------------
   BOTÕES / CTAs
----------------------------- */

.btn-primary {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    border-radius: 999px;
    padding: 0.75rem 1.7rem;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(22, 163, 74, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
    text-align: center;
}

.btn-primary small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.btn-primary:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 16px 32px rgba(22, 163, 74, 0.55);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

/* ----------------------------
   SIDEBAR / CARD DE RESUMO
----------------------------- */

.card {
    background: #ffffff;
    padding: 1.4rem 1.3rem 1.6rem;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.card h3 {
    font-size: 1.05rem;
    color: #111827;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.rating .stars {
    color: #f59e0b;
    letter-spacing: 0.05em;
}

/* foto do produto no card */
.product-thumb {
    width: 100%;
    max-width: 220px;
    margin: 0 auto 0.8rem;
    display: block;
    height: auto;
}

/* ----------------------------
   TIPOGRAFIA DO CONTEÚDO
----------------------------- */

article h2 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #111827;
}

article h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.5rem;
    color: #111827;
}

article p {
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
    color: #374151;
}

article ul,
article ol {
    margin: 0.5rem 0 1rem 1.1rem;
    font-size: 0.96rem;
    color: #374151;
}

article li {
    margin-bottom: 0.4rem;
}

/* Imagem inline dentro do artigo */
.image-inline {
    margin: 1.2rem 0 1.5rem;
    text-align: center;
}

.image-inline img {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.image-inline figcaption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

/* ----------------------------
   RODAPÉ
----------------------------- */

footer {
    max-width: 1100px;
    margin: 1.5rem auto 2rem;
    padding: 0 1.25rem;
    font-size: 0.78rem;
    color: #6b7280;
    text-align: center;
}

/* ----------------------------
   MOBILE / RESPONSIVO
----------------------------- */

@media (max-width: 900px) {

    main {
        grid-template-columns: 1fr;
        margin-top: 1.5rem;
    }

    aside.sidebar {
        position: static;
        margin-top: 0.5rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-bottom: 1.5rem;
    }

    .site-header {
        padding: 0.75rem 1rem 0.25rem;
    }
}

@media (max-width: 640px) {

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h2 {
        font-size: 0.98rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    article {
        padding: 1.25rem;
    }

    .card {
        padding: 1.25rem;
    }
    
    /* ----------------------------
   FAQ-Bereich
----------------------------- */

.faq {
    margin: 1.5rem 0 2rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.faq-item + .faq-item {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed #e5e7eb;
}

.faq-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.3rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: #4b5563;
}

/* ----------------------------
   Testimonials / Leserberichte
----------------------------- */

.testimonials {
    margin: 2rem 0 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.testimonial-card {
    background: #f9fafb;
    border-radius: 12px;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
    color: #374151;
}

.testimonial-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 0.35rem;
    gap: 0.5rem;
}

.testimonial-location {
    display: block;
    font-size: 0.82rem;
    color: #6b7280;
}

.testimonial-stars {
    font-size: 0.9rem;
    color: #f59e0b;
    white-space: nowrap;
}

.testimonials-note {
    margin-top: 0.75rem;
    font-size: 0.82rem;
    color: #6b7280;
}

/* Responsivo para os depoimentos */
@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


    
}

/* ----------------------------
   CTA FIXO NO MOBILE (se estiver usando)
----------------------------- */

@media (max-width: 640px) {
    .mobile-cta-sticky {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 0.6rem 0.9rem;
        background: rgba(15, 23, 42, 0.96);
        display: flex;
        justify-content: center;
        z-index: 999;
        box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.4);
    }

    .mobile-cta-sticky .btn-primary {
        width: 100%;
        max-width: 480px;
    }

    body {
        padding-bottom: 4rem;
    }
}
