
.granato-exames-site{
    width:100%;
}

.granato-exames-search{
    display:flex;
    align-items:center;
    gap:12px;
    width:100%;
    min-height:54px;
    margin:0 0 26px;
    padding:0 18px;
    background:#fff;
    border:1px solid #dbe6e7;
    border-radius:14px;
    box-sizing:border-box;
}

.granato-exames-search:focus-within{
    border-color:#00776d;
    box-shadow:0 0 0 3px rgba(0,119,109,.08);
}

.granato-exames-search-icon{
    font-size:18px;
    color:#00776d;
}

.granato-exames-search-input{
    width:100%;
    min-height:52px;
    margin:0!important;
    padding:0!important;
    border:0!important;
    outline:0!important;
    box-shadow:none!important;
    background:transparent!important;
    font-family:Montserrat,Arial,sans-serif;
    font-size:15px;
    color:#233b47;
}

.granato-exames-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.granato-exame-public-card{
    display:flex;
    flex-direction:column;
    min-height:220px;
    padding:24px;
    background:#fff;
    border:1px solid #e1e9ea;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(28,61,70,.05);
}

.granato-exame-public-copy{
    flex:1;
}

.granato-exame-public-card h3{
    margin:0 0 22px;
    font-family:Montserrat,Arial,sans-serif;
    font-size:17px;
    line-height:1.4;
    font-weight:700;
    color:#243b46;
}

.granato-exame-public-price span{
    display:block;
    margin-bottom:3px;
    font-size:11px;
    line-height:1.3;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#8a989d;
}

.granato-exame-public-price strong{
    font-size:17px;
    line-height:1.3;
    color:#00776d;
}

.granato-exame-public-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:42px;
    margin-top:22px;
    padding:10px 16px;
    border-radius:10px;
    background:#00776d;
    color:#fff!important;
    font-family:Montserrat,Arial,sans-serif;
    font-size:13px;
    font-weight:700;
    text-decoration:none!important;
    transition:.2s ease;
    box-sizing:border-box;
}

.granato-exame-public-btn:hover{
    background:#00685f;
    color:#fff!important;
    transform:translateY(-1px);
    box-shadow:0 7px 18px rgba(0,119,109,.18);
}

.granato-exames-empty,
.granato-exames-error{
    padding:24px;
    border:1px dashed #d8e3e5;
    border-radius:14px;
    text-align:center;
    color:#718087;
    font-family:Montserrat,Arial,sans-serif;
}

@media (max-width:980px){
    .granato-exames-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:640px){
    .granato-exames-grid{
        grid-template-columns:1fr;
    }
}


/* Feedback ao abrir disponibilidade - v0.8.3 */
.granato-exames-site{
    position:relative;
}

.granato-exames-processing{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(244,248,248,.82);
    backdrop-filter:blur(3px);
}

.granato-exames-processing.is-visible{
    display:flex;
}

.granato-exames-processing-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:8px;
    width:min(360px,calc(100vw - 48px));
    padding:26px;
    border:1px solid #dbe7e7;
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 50px rgba(27,60,70,.14);
    text-align:center;
    color:#61747b;
}

.granato-exames-processing-box strong{
    font-size:16px;
    color:#153743;
}

.granato-exames-processing-box > span:last-child{
    font-size:13px;
}

.granato-exames-processing-spinner{
    width:30px;
    height:30px;
    margin-bottom:4px;
    border:3px solid rgba(0,119,109,.16);
    border-top-color:#00776d;
    border-radius:50%;
    animation:granato-exames-spin .75s linear infinite;
}

.granato-exame-public-btn.is-loading{
    pointer-events:none;
    opacity:.78;
}

@keyframes granato-exames-spin{
    to{transform:rotate(360deg);}
}


/* Navegação por categorias - v0.8.5 */
.granato-exames-head{
    margin-bottom:20px;
}

.granato-exames-eyebrow{
    display:block;
    margin-bottom:5px;
    font-size:11px;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:#00776d;
}

.granato-exames-title{
    margin:0 0 5px;
    font-family:Montserrat,Arial,sans-serif;
    font-size:28px;
    line-height:1.2;
    color:#102f3d;
}

.granato-exames-subtitle{
    margin:0;
    font-size:14px;
    color:#718087;
}

.granato-exames-categorias{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
}

.granato-exame-categoria-card{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    min-height:64px;
    padding:16px 18px;
    border:1px solid #dce6e7;
    border-radius:13px;
    background:#fff;
    color:#173542;
    text-align:left;
    cursor:pointer;
    transition:border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.granato-exame-categoria-card:hover{
    border-color:#9fcac6;
    box-shadow:0 8px 20px rgba(26,70,77,.07);
    transform:translateY(-1px);
}

.granato-exame-categoria-card strong{
    font-size:14px;
    line-height:1.3;
    font-weight:700;
}

.granato-exame-categoria-card span{
    flex:0 0 auto;
    font-size:12px;
    color:#6f8187;
}

.granato-exames-detalhes-head{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:22px;
}

.granato-exames-detalhes-head h3{
    margin:0;
    font-size:24px;
    color:#102f3d;
}

.granato-exames-voltar{
    flex:0 0 auto;
    min-height:40px;
    padding:9px 14px;
    border:1px solid #cfe0e1;
    border-radius:10px;
    background:#fff;
    color:#00776d;
    font-weight:700;
    cursor:pointer;
}

.granato-exames-voltar:hover{
    background:#f3f8f7;
}

.granato-exames-grupo[hidden],
.granato-exames-detalhes[hidden],
.granato-exames-categorias[hidden]{
    display:none!important;
}

@media (max-width:980px){
    .granato-exames-categorias{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:640px){
    .granato-exames-categorias{
        grid-template-columns:1fr;
    }

    .granato-exames-detalhes-head{
        flex-direction:column;
        gap:12px;
    }

    .granato-exames-voltar{
        width:100%;
    }
}
