/* ===========================
   TÍTULO
=========================== */

.titulo-servicos {
    text-align: center;
    font-family: "Evo2", Arial, sans-serif;
    font-size: clamp(32px, 4vw, 60px);
    font-weight: 900;
    color: #ffffff;
    margin: 40px 0 30px;
    text-shadow:
        0 0 10px rgba(102,204,255,0.9),
        0 0 25px rgba(102,204,255,0.7);
}

/* ===========================
   LISTA DE SERVIÇOS
=========================== */

.servicos-lista {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 70px;
    padding: 20px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ===========================
   CARTÕES GLASS CLOUD
=========================== */

.servico-bloco {
    display: block;
    padding: 26px 30px;
    border-radius: 16px;

    background: radial-gradient(circle at top left,
                rgba(102,204,255,0.25),
                rgba(0,0,0,0.75));
    background-color: rgba(0,0,0,0.55);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(102,204,255,0.45);
    box-shadow:
        0 0 22px rgba(102,204,255,0.45),
        inset 0 0 18px rgba(102,204,255,0.25);

    text-decoration: none;
    color: #ffffff;

    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

/* Estado visível (JS adiciona esta classe) */
.servico-bloco.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hover premium */
.servico-bloco:hover {
    background: radial-gradient(circle at top left,
                rgba(102,204,255,0.4),
                rgba(0,0,0,0.85));
    border-color: #66ccff;
    box-shadow:
        0 0 28px rgba(102,204,255,0.75),
        0 0 55px rgba(102,204,255,0.55),
        inset 0 0 20px rgba(102,204,255,0.35);
    transform: translateY(-4px);
}

/* ===========================
   TÍTULO DO SERVIÇO
=========================== */

.servico-bloco h2 {
    font-family: "Evo2", Arial, sans-serif;
    font-size: clamp(22px, 2.5vw, 32px);
    font-weight: 800;
    margin-bottom: 12px;
    color: #66ccff;
    text-shadow:
        0 0 10px rgba(102,204,255,0.7),
        0 0 18px rgba(102,204,255,0.5);
}

/* ===========================
   DESCRIÇÃO
=========================== */

.servico-bloco p {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.6;
    color: #e6f7ff;
}

/* ===========================
   RESPONSIVIDADE
=========================== */

@media (max-width: 480px) {
    .servicos-lista {
        padding: 10px;
        gap: 20px;
    }

    .servico-bloco {
        padding: 20px;
    }
}
