/* GRID */
.grid {
    display: grid;
    gap: 25px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

/* CARDS */
.card {
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.2s ease;
    text-align: center;
}

.card:hover {
    transform: translateY(-5px);
}

/* ================================
   BOTÃO FLUTUANTE WHATSAPP – L&M
   ================================ */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float img {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 6px rgba(37, 211, 102, 0.6));
    transition: transform 0.25s ease;
}

/* Hover e animação */
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    background: rgba(37, 211, 102, 0.15);
}

.whatsapp-float:hover img {
    transform: rotate(8deg);
}

/* Responsividade */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 45px;
        height: 45px;
    }
}

/* ============================
   TRILHA DE NAVEGAÇÃO (BREADCRUMB)
   ============================ */

.breadcrumb {
    padding: 20px 0 0 0;
    font-size: 14px;
    color: #666;
}

.breadcrumb a {
    color: #666;
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #00A651;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb span[aria-current="page"] {
    color: #1E1E1E;
    font-weight: 600;
    margin: 0;
}

/* ============================
   CARD GENÉRICO (TÍTULO + TEXTO)
   ============================ */

.info-card-corp {
    background: #fff;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    text-align: left;
}

.info-card-corp h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.info-card-corp p {
    text-align: left;
    max-width: none;
    margin: 0;
    color: #555;
    font-size: 15px;
}

/* ============================
   CITAÇÃO / DESTAQUE
   ============================ */

.destaque-quote {
    max-width: 800px;
    margin: 40px auto 0 auto;
    padding: 22px 30px;
    background: #eafaf0;
    border-left: 5px solid #00A651;
    border-radius: 8px;
    font-size: 18px;
    font-style: italic;
    color: #1E1E1E;
    text-align: center;
}

/* ============================
   RODAPÉ - LINK LEGAL
   ============================ */

.footer-legal {
    margin-top: 8px;
    font-size: 13px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

.footer-legal a:hover {
    color: #00A651;
}

/* ============================
   CONTEÚDO JURÍDICO (TEXTO CORRIDO)
   ============================ */

.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 50px 0 80px 0;
}

.legal-content h1 {
    font-size: clamp(24px, 5.5vw, 32px);
    margin-bottom: 8px;
}

.legal-content .legal-updated {
    color: #777;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 14px;
}

.legal-content p {
    text-align: left;
    max-width: none;
    margin: 0 0 16px 0;
}

.legal-content ul {
    margin: 0 0 16px 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

/* ============================
   BANNER DE COOKIES (LGPD)
   ============================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #1E1E1E;
    color: #fff;
    padding: 20px 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 -4px 18px rgba(0,0,0,0.25);
}

.cookie-banner p {
    margin: 0;
    font-size: 14px;
    max-width: 780px;
    color: rgba(255,255,255,0.9);
}

.cookie-banner p a {
    color: #4ADE80;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: #00A651;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #008f45;
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}

.cookie-btn-reject:hover {
    border-color: #fff;
}

@media (max-width: 600px) {
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .cookie-banner-actions {
        justify-content: center;
    }

    .legal-content {
        padding: 30px 0 50px 0;
    }
}
