/* ===========================
   TÍTULO
=========================== */

.area-cliente-titulo {
    text-align: center;
    font-family: "Evo2", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 900;
    color: #ffffff;
    margin: 40px 0 40px;
    text-shadow:
        0 0 10px rgba(102,204,255,0.9),
        0 0 25px rgba(102,204,255,0.7);
}

/* ===========================
   GRID
=========================== */

.area-cliente-grid {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 80px;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* ===========================
   CARTÕES GLASS CLOUD
=========================== */

.area-card {
    display: block;
    padding: 32px;
    border-radius: 18px;

    background: radial-gradient(circle at top left,
                rgba(102,204,255,0.28),
                rgba(0,0,0,0.78));
    background-color: rgba(0,0,0,0.55);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(102,204,255,0.55);
    box-shadow:
        0 0 26px rgba(102,204,255,0.55),
        inset 0 0 20px rgba(102,204,255,0.28);

    text-decoration: none;
    color: #ffffff;

    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background 0.35s ease;
}

/* Visível (JS adiciona esta classe) */
.area-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover premium */
.area-card:hover {
    background: radial-gradient(circle at top left,
                rgba(102,204,255,0.45),
                rgba(0,0,0,0.88));
    border-color: #66ccff;
    box-shadow:
        0 0 32px rgba(102,204,255,0.75),
        0 0 60px rgba(102,204,255,0.55),
        inset 0 0 22px rgba(102,204,255,0.35);
    transform: translateY(-4px);
}

/* ===========================
   ÍCONES
=========================== */

.area-icone {
    font-size: 48px;
    margin-bottom: 18px;
    text-shadow: 0 0 12px rgba(102,204,255,0.75);
}

/* ===========================
   TÍTULOS
=========================== */

.area-card h2 {
    font-family: "Evo2", Arial, sans-serif;
    font-size: clamp(22px, 2.4vw, 34px);
    font-weight: 900;
    margin-bottom: 18px;
    color: #66ccff;
    text-shadow:
        0 0 12px rgba(102,204,255,0.75),
        0 0 22px rgba(102,204,255,0.55);
}

/* ===========================
   DESCRIÇÃO
=========================== */

.area-card p {
    font-size: clamp(15px, 1.5vw, 19px);
    color: #e6f7ff;
    margin-bottom: 20px;
    line-height: 1.55;
}

/* ===========================
   BOTÃO
=========================== */

.area-botao {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 12px;

    background: rgba(102,204,255,0.25);
    border: 1px solid rgba(102,204,255,0.55);
    color: #ffffff;
    font-weight: bold;

    transition: 0.3s ease;
}

.area-card:hover .area-botao {
    background: rgba(102,204,255,0.45);
    border-color: #66ccff;
    box-shadow: 0 0 18px rgba(102,204,255,0.55);
}

/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 480px) {
    .area-card {
        padding: 24px;
    }
}
