/**
 * LP Carrossel com Fotos
 * Desktop: Figma 6150:1901 — Mobile: Figma 6194:909
 */

.lp-carrossel-com-fotos-wrapper {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.lp-carrossel-com-fotos {
    margin: 0;
    background: var(--primarias-principal-150);
    padding: 64px 15px;
    box-sizing: border-box;
}

.lp-carrossel-com-fotos__inner {
    display: flex;
    flex-direction: column;
    gap: 64px;
    width: 100%;
    max-width: 1446px;
    margin: 0 auto;
}

.lp-carrossel-com-fotos__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.lp-carrossel-com-fotos__intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    min-width: 0;
}

.lp-carrossel-com-fotos__pre-titulo {
    margin: 0;
    font-family: var(--fontefamiliaglobal);
    font-weight: 300;
    font-size: 24px;
    line-height: 1;
    color: var(--secundarias-secundaria-100);
}

.lp-carrossel-com-fotos__titulo {
    margin: 0;
    font-family: var(--fontefamiliaglobal);
    font-weight: 800;
    font-size: 32px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--branco);
}

.lp-carrossel-com-fotos__texto {
    margin: 0;
    font-family: var(--fontefamiliaopensans);
    font-weight: 400;
    font-size: 20px;
    line-height: 1.5;
    color: var(--branco);
}

.lp-carrossel-com-fotos__texto p,
.lp-carrossel-com-fotos__texto ul,
.lp-carrossel-com-fotos__texto ol {
    margin: 0;
    font: inherit;
    color: inherit;
}

.lp-carrossel-com-fotos__texto p + p,
.lp-carrossel-com-fotos__texto ul + p,
.lp-carrossel-com-fotos__texto p + ul {
    margin-top: 5px;
}

.site-main a.lp-carrossel-com-fotos__botao,
.site-main a.lp-carrossel-com-fotos__botao:visited,
.site-main a.lp-carrossel-com-fotos__botao:hover,
.lp-carrossel-com-fotos__botao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    margin: 0;
    padding: 16px 24px;
    border: 1px solid var(--primarias-principal-125);
    border-radius: var(--radius-g);
    background: var(--branco);
    box-shadow: 0 16px 24px -16px rgba(9, 9, 9, 0.15);
    color: var(--primarias-principal-150);
    font-family: var(--fontefamiliaglobal);
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
}

.lp-carrossel-com-fotos__botao svg {
    display: block;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin: 0;
}

.lp-carrossel-com-fotos__botao:hover {
    background: var(--primarias-principal-00);
}

.lp-carrossel-com-fotos__botao:focus-visible {
    outline: 2px solid var(--branco);
    outline-offset: 3px;
}

.lp-carrossel-com-fotos__swiper {
    width: 100%;
    overflow: visible;
}

.lp-carrossel-com-fotos__card.swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 16px;
    box-sizing: border-box;
    width: 270px;
    min-width: 270px;
    max-width: 270px;
    height: 344px;
    margin: 0;
    padding: 16px;
    border-radius: var(--radius-m);
    overflow: hidden;
    background-color: #182434;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}

.lp-carrossel-com-fotos__card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(24, 36, 52, 1) 0%, rgba(24, 36, 52, 0) 82%);
    pointer-events: none;
}

.lp-carrossel-com-fotos__card-titulo,
.lp-carrossel-com-fotos__card-texto {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    text-align: left;
}

.lp-carrossel-com-fotos__card-titulo {
    font-family: var(--fontefamiliaglobal);
    font-weight: 700;
    font-size: 32px;
    line-height: 1.1;
    color: var(--secundarias-secundaria-100);
}

.lp-carrossel-com-fotos__card-texto,
.lp-carrossel-com-fotos__card-texto p {
    font-family: var(--fontefamiliaopensans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--primarias-principal-00);
}

.lp-carrossel-com-fotos__card-texto p {
    margin: 0;
}

.lp-carrossel-com-fotos__card-texto p + p {
    margin-top: 5px;
}

@media (min-width: 768px) {
    .lp-carrossel-com-fotos {
        padding-top: 96px;
        padding-bottom: 96px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .lp-carrossel-com-fotos__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 64px;
    }

    .lp-carrossel-com-fotos__intro {
        flex: 1 1 auto;
    }

    .lp-carrossel-com-fotos__pre-titulo {
        font-size: 40px;
    }

    .lp-carrossel-com-fotos__titulo {
        font-size: 56px;
    }
}
