﻿/* =========================
   BASE
========================= */
.mesa-brasil {
    background: #f5f7fa;
    padding-bottom: 48px;
}

/* =========================
   HERO
========================= */
.mesa-hero {
    position: relative;
    min-height: 360px;
    padding: 90px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(13, 79, 139, 0.82), rgba(11, 60, 111, 0.78)), url('/img/mesa/banner_mesa.png') center center / cover no-repeat;
}

    .mesa-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.08));
        pointer-events: none;
    }

    .mesa-hero .container {
        position: relative;
        z-index: 2;
    }

    .mesa-hero h1 {
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        font-weight: 800;
        margin-bottom: 14px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.18);
    }

    .mesa-hero p {
        font-size: clamp(1rem, 1.8vw, 1.35rem);
        font-weight: 500;
        margin-bottom: 0;
        opacity: 0.98;
        text-shadow: 0 2px 8px rgba(0,0,0,0.14);
    }

/* =========================
   BOX PRINCIPAL
========================= */
.mesa-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px;
    margin-top: 40px;
    border: 1px solid #dfe7f1;
    box-shadow: 0 10px 30px rgba(13, 79, 139, 0.08);
}

    .mesa-box h2 {
        color: #0d4f8b;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .mesa-box p {
        color: #334155;
        font-size: 1.04rem;
        line-height: 1.85;
        margin-bottom: 0;
    }

/* BOX INTERNO */
.mesa-box-interno {
    background: linear-gradient(180deg, #f5f9fd 0%, #eef5fb 100%);
    padding: 22px;
    border-radius: 14px;
    margin-top: 24px;
    border-left: 5px solid #0d4f8b;
}

    .mesa-box-interno h5 {
        color: #0d4f8b;
        font-weight: 700;
        margin-bottom: 10px;
    }

/* =========================
   TITULO SEÇÃO
========================= */
.mesa-titulo {
    margin: 64px 0 32px;
    font-weight: 800;
    color: #0d4f8b;
    font-size: clamp(1.7rem, 2vw, 2.2rem);
}

/* =========================
   CARDS (IMPACTO)
========================= */
.mesa-card {
    background: #ffffff;
    padding: 34px 28px;
    text-align: center;
    border-radius: 18px;
    border: 1px solid #e4ebf3;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    height: 100%;
}

    .mesa-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(13, 79, 139, 0.10);
    }

    .mesa-card i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 74px;
        height: 74px;
        border-radius: 50%;
        font-size: 32px;
        color: #f36c21;
        background: rgba(243, 108, 33, 0.12);
        margin-bottom: 14px;
    }

    .mesa-card h2 {
        color: #f36c21;
        margin: 10px 0 8px;
        font-weight: 800;
        font-size: clamp(1.9rem, 2.3vw, 2.6rem);
    }

    .mesa-card p {
        color: #334155;
        font-size: 1rem;
        margin-bottom: 0;
    }

/* =========================
   LISTA
========================= */
.mesa-lista {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

    .mesa-lista li {
        position: relative;
        background: #f8fafc;
        padding: 16px 18px 16px 56px;
        border-radius: 12px;
        margin-bottom: 12px;
        border: 1px solid #e8edf4;
        color: #334155;
    }

        .mesa-lista li::before {
            content: "\f26e";
            font-family: "bootstrap-icons";
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(243, 108, 33, 0.12);
            color: #f36c21;
            font-size: 14px;
        }

/* =========================
   CONTATO
========================= */
.mesa-contato {
    background: linear-gradient(90deg, #f36c21, #d35400);
    color: #ffffff;
    padding: 40px 28px;
    border-radius: 18px;
    margin-top: 28px;
    box-shadow: 0 12px 28px rgba(243, 108, 33, 0.18);
}

    .mesa-contato h4 {
        font-weight: 800;
        margin-bottom: 12px;
        font-size: 2rem;
    }

    .mesa-contato p {
        color: rgba(255,255,255,0.95);
        margin-bottom: 20px;
    }

    .mesa-contato .btn {
        font-weight: 700;
        border-radius: 999px;
        padding: 12px 22px;
        font-size: 1rem;
        border: 0;
        box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    }

/* =========================
   IMAGENS
========================= */
.mesa-img {
    width: 100%;
    border-radius: 18px;
    height: 250px;
    object-fit: cover;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

    .mesa-img:hover {
        transform: scale(1.02);
        box-shadow: 0 14px 32px rgba(0,0,0,0.12);
    }

/* =========================
   FRASE FINAL
========================= */
.mesa-frase {
    background: #ffffff;
    padding: 26px 28px;
    border-radius: 18px;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 40px;
    border: 1px solid #dfe7f1;
    border-left: 5px solid #f36c21;
    color: #334155;
    box-shadow: 0 8px 24px rgba(13, 79, 139, 0.05);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991.98px) {
    .mesa-hero {
        min-height: 300px;
        padding: 70px 0;
        background-position: center;
    }

    .mesa-box {
        padding: 24px;
    }

    .mesa-contato h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767.98px) {
    .mesa-hero {
        min-height: 250px;
        padding: 56px 0;
    }

    .mesa-box {
        margin-top: 28px;
        padding: 20px;
        border-radius: 14px;
    }

    .mesa-card {
        padding: 26px 20px;
        border-radius: 14px;
    }

    .mesa-img {
        height: 210px;
        border-radius: 14px;
    }

    .mesa-frase {
        font-size: 1.05rem;
        padding: 20px;
        border-radius: 14px;
    }

    .mesa-lista li {
        padding: 14px 16px 14px 50px;
    }
}


.img-click {
    cursor: pointer;
}

    .img-click:hover {
        transform: scale(1.03);
    }