﻿/* ================= RESET ================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    background: #f7f9fc;
    color: #333;
}

a {
    text-decoration: none;
    color: #2563eb;
}

    a:hover {
        text-decoration: underline;
    }

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
}

/* ================= HEADER ================= */
.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 60px;
}

/* ================= MENU ================= */
.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav li {
    position: relative;
}

.nav a {
    font-size: 15px;
    color: #374151;
    font-weight: 600;
}

    .nav a:hover {
        color: #111827;
    }

/* ================= DROPDOWN ================= */
.nav li.dropdown {
    position: relative;
}

#listaCategorias {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 0;
    width: 260px;
    z-index: 9999;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    transition: opacity .18s ease;
}

    .nav li.dropdown:hover #listaCategorias,
    #listaCategorias:hover {
        visibility: visible;
        opacity: 1;
    }

    #listaCategorias li {
        list-style: none;
        padding: 6px 12px;
    }

        #listaCategorias li a {
            display: block;
            font-size: 14px;
            color: #374151;
        }

            #listaCategorias li a:hover {
                background: #f3f4f6;
                color: #111827;
            }

/* ================= HERO ================= */
.hero {
    text-align: center;
    margin: 50px auto 60px auto;
    max-width: 800px;
}

    .hero h1 {
        font-size: 34px;
        color: #2563eb;
        margin-bottom: 10px;
    }

    .hero p {
        color: #4b5563;
        font-size: 16px;
        margin-bottom: 22px;
    }

.btnHero {
    background: #ff6b00;
    color: white !important;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
}

    .btnHero:hover {
        opacity: .85;
        text-decoration: none;
    }

/* ================= ÚLTIMOS GUIAS / REVIEWS ================= */

/* MESMA LARGURA E ALINHAMENTO */
.ultimosGuias .container,
.ultimosReviews .container {
    max-width: 1100px;
}

/* MESMO RITMO VERTICAL */
.ultimosGuias,
.ultimosReviews {
    margin-top: 50px;
}

    .ultimosGuias h2,
    .ultimosReviews h2 {
        font-size: 22px;
        margin-bottom: 18px;
    }

/* GRID FIXO: SEMPRE 2 COLUNAS */
.gridGuias {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

@media (max-width: 800px) {
    .gridGuias {
        grid-template-columns: 1fr;
    }
}

/* ================= CARD ================= */
.cardGuia {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
}

    /* TEXTO */
    .cardGuia .col-texto {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .cardGuia h3 {
        font-size: 16px;
        line-height: 1.3;
        margin: 0 0 8px;
        color: #ff6b00;
    }

    .cardGuia p {
        flex-grow: 1;
        font-size: 14px;
        line-height: 1.45;
        color: #4b5563;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* BOTÃO */
.btnCard {
    background: #eef2ff;
    color: #2563eb !important;
    border: 1px solid #c7d2fe;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    display: inline-block;
}

    .btnCard:hover {
        background: #2563eb;
        color: white !important;
        border-color: #2563eb;
        text-decoration: none;
    }

.cardGuia .btnCard {
    align-self: flex-start;
    margin-top: auto;
}

/* IMAGEM */
.cardGuia .col-img {
    width: 140px;
    height: 120px;
    min-width: 140px;
    background: #f5f6f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

    .cardGuia .col-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

/* MOBILE CARD */
@media (max-width: 768px) {
    .cardGuia {
        flex-direction: column;
    }

        .cardGuia .col-img {
            width: 100%;
            height: 180px;
        }
}

/* ================= CONFIANÇA ================= */
.trust-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    margin-top: 55px;
}

    .trust-box h2 {
        margin-bottom: 10px;
    }

.trust-intro {
    color: #4b5563;
    margin-bottom: 20px;
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.trust-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 14px;
}

    .trust-item .icon {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .trust-item b {
        display: block;
        margin-bottom: 4px;
        color: #111827;
    }

    .trust-item p {
        margin: 0;
        color: #4b5563;
        font-size: 14px;
    }

/* ================= FOOTER ================= */
.footer {
    margin-top: 40px;
    background: #1d4ed8;
    color: #dbeafe;
    padding: 18px 0 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 8px;
    align-items: center;
}

.footer h3 {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer a {
    display: block;
    color: #bfdbfe;
    font-size: 13px;
    margin: 3px 0;
}

.footer-bottom {
    margin-top: 8px;
    text-align: center;
    font-size: 11px;
    width: 100%;
}

/* ================= MOBILE GERAL ================= */
@media (max-width: 800px) {

    .header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        margin: 28px auto 35px auto;
        max-width: 92%;
    }

        .hero h1 {
            font-size: 22px;
            line-height: 1.25;
        }

        .hero p {
            font-size: 14px;
            line-height: 1.35;
        }

    .btnHero {
        padding: 10px 18px;
        font-size: 14px;
    }
}
.ctaReviews {
    padding: 60px 0; /* espaço interno */
    margin: 60px 0; /* espaço externo (separa dos cards) */
    text-align: center;
    background: #f8fafc; /* fundo sutil para separar */
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}
    .ctaReviews .container {
        max-width: 720px;
    }
    .ctaReviews h2 {
        margin-bottom: 12px;
    }

    .ctaReviews p {
        margin-bottom: 24px;
        font-size: 17px;
        color: #374151;
    }
    .ctaReviews .btnHero {
        margin-top: 10px;
    }
.footer-links-primary {
    font-size: 13px;
    margin-top: 6px;
}

    .footer-links-primary a {
        display: block;
        color: #bfdbfe;
        font-weight: 600;
        margin-top: 4px;
    }
