.wc_slide_title{
    text-indent: -9999px;
    position: absolute;
}

.wc_slides{
    padding: 0 !important;
    display: block;
    position: relative;
    background: #000;
}

.wc_slide_item{
    display: block;
    width: 100%;
    position: relative;
    display: none;
}

.wc_slide_item.first{
    display: block;
}

.wc_slide_item_desc{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 20px;
    background: rgba(10,46,99,0.78);
    color: #fff;
}

.wc_slide_item_desc h1{
    font-family: "Crossten", "Arial Black", system-ui, sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    line-height: 1.2;
}

.wc_slide_item_desc a{
    color: inherit;
    text-decoration: none;
}

.wc_slide_item_desc a:hover{
    text-decoration: underline;
}

.wc_slide_item_desc p{
    font-family: "Eras ITC", "Trebuchet MS", system-ui, sans-serif;
    font-size: 0.8em;
    line-height: 1.5;
    color: #eee;
}

.wc_slide_item_desc p a::after{
    content: " \2192";
    font-weight: 700;
}

.wc_slide_pager{
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: block;
    text-align: right;
}

.wc_slide_pager span{
    display: inline-block;
    width: 25px;
    height: 25px;
    font-size: 1em;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    margin: 0 6px;
}

.wc_slide_pager span:hover{
    background: #fff;
}

.wc_slide_pager span.active{
    background: rgba(255,255,255,0.7);
}

@media (max-width: 40em){
    /* No celular a descrição não fica sobreposta na imagem (position:relative
       em vez de absolute) — sem esse tratamento ela vira um bloco de texto
       cru, sem cara de cartão do site. Damos raio, sombra e respiro. */
    .wc_slide_item_desc{
        position: relative;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 4px 12px rgba(16,24,42,0.16);
        padding: 14px 16px 16px;
    }

    .wc_slide_item h1{
        font-size: 1em;
    }

    .wc_slide_pager{
        top: 20px;
        right: 10px;
    }

    /* Touch target: each link must be >= 44px tall and have enough spacing.
       display:flex + min-height ensures the <a> always meets the minimum
       even when the text is short, without affecting the desktop overlay. */
    .wc_slide_item_desc h1 a,
    .wc_slide_item_desc p a {
        display: flex;
        align-items: center;
        min-height: 44px;
    }
}