/* =========================================================
   PARACURU COM AQUINO
   SLIDE PRINCIPAL HOME V1
========================================================= */

.phero {
    position: relative;
    width: 100%;
    height: clamp(470px, 55vw, 650px);
    min-height: 470px;
    overflow: hidden;
    background: #071a35;
}

.phero-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.phero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity .65s ease,
        visibility .65s ease;
}

.phero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.phero-picture {
    position: absolute;
    inset: 0;
    display: block;
}

.phero-picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.phero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 17, 38, .82) 0%,
            rgba(3, 17, 38, .57) 38%,
            rgba(3, 17, 38, .18) 69%,
            rgba(3, 17, 38, .06) 100%
        );
}

.phero-content-wrap {
    position: relative;
    z-index: 3;
    width: min(100% - 40px, 1180px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.phero-content {
    width: min(100%, 660px);
    padding-bottom: 10px;
}

.phero-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.23);
    border-radius: 30px;
    background: rgba(255,255,255,.10);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1.2px;
}

.phero-content h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(39px, 6vw, 68px);
    line-height: .99;
    letter-spacing: -2.3px;
    text-shadow: 0 3px 20px rgba(0,0,0,.15);
}

.phero-content p {
    max-width: 570px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    line-height: 1.55;
}

.phero-button {
    width: fit-content;
    min-height: 51px;
    margin-top: 24px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 12px;
    background: #0863df;
    color: #fff !important;
    font-size: 11px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(8,99,223,.25);
    transition:
        transform .18s ease,
        background .18s ease;
}

.phero-button:hover {
    transform: translateY(-2px);
    background: #0759ca;
}

.phero-button span {
    font-size: 17px;
    line-height: 1;
}

.phero-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    background: rgba(5,22,45,.32);
    backdrop-filter: blur(7px);
    color: #fff;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
    transition:
        background .18s ease,
        transform .18s ease;
}

.phero-arrow:hover {
    background: rgba(5,22,45,.62);
    transform: scale(1.04);
}

.phero-prev {
    left: 20px;
}

.phero-next {
    right: 20px;
}

.phero-dots {
    position: absolute;
    z-index: 6;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
}

.phero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.44);
    cursor: pointer;
    transition:
        width .2s ease,
        background .2s ease,
        border-radius .2s ease;
}

.phero-dot.active {
    width: 25px;
    border-radius: 20px;
    background: #fff;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .phero {
        height: 570px;
        min-height: 570px;
    }

    .phero-picture img {
        object-position: center;
    }

    .phero-shade {
        background:
            linear-gradient(
                0deg,
                rgba(3,17,38,.94) 0%,
                rgba(3,17,38,.70) 39%,
                rgba(3,17,38,.19) 72%,
                rgba(3,17,38,.04) 100%
            );
    }

    .phero-content-wrap {
        width: min(100% - 28px, 1180px);
        align-items: flex-end;
        padding-bottom: 73px;
    }

    .phero-content {
        width: 100%;
    }

    .phero-eyebrow {
        margin-bottom: 8px;
        padding: 6px 9px;
        font-size: 7px;
    }

    .phero-content h1 {
        max-width: 100%;
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1;
        letter-spacing: -1.7px;
    }

    .phero-content p {
        margin-top: 12px;
        font-size: 12px;
        line-height: 1.45;
    }

    .phero-button {
        width: 100%;
        min-height: 50px;
        margin-top: 17px;
    }

    .phero-arrow {
        display: none;
    }

    .phero-dots {
        bottom: 26px;
    }

}
