/* =========================================
   LP Fisioterapia Rauen
   Cor de borda dos cards e listas: #b29b8d
========================================= */

/* Lista de itens com check verde (intro, atuamos e cards de área) */
.lp-check-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.lp-check-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--cor-secundaria);
    text-align: start;
}

.lp-check-list li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.lp-check-list--center {
    align-items: center;
}

.lp-check-list--center li {
    justify-content: center;
}

.lp-check-list--lg li {
    font-size: 24px;
    font-weight: 500;
}

/* =========================================
   Banner
========================================= */
.lp-banner {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    overflow: hidden;
    text-align: center;
}

.lp-banner__media {
    position: absolute;
    left: 0;
    /* Sobra de 10% no topo/base: dá espaço para o parallax vertical do banner. */
    top: -10%;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
}

.lp-banner__gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(59deg, rgba(10, 6, 1, 0.3) 1%, rgba(10, 6, 1, 0.5) 22%, rgba(10, 6, 1, 0.7) 43%, rgba(10, 6, 1, 0.85) 64%);
}

.lp-banner__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    max-width: 1200px;
    width: 100%;
    color: var(--cor-branca);
}

.lp-banner__logo {
    width: 286px;
    max-width: 80%;
    height: auto;
}

.lp-banner__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 50px;
    line-height: 1.3;
    color: var(--cor-branca);
    margin: 0;
}

.lp-banner__divider {
    display: block;
    width: 793px;
    max-width: 100%;
    height: 1px;
    background: rgba(252, 249, 248, 0.4);
}

.lp-banner__badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.lp-banner__badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
}

.lp-banner__badges img {
    width: 22px;
    height: 22px;
}

.lp-banner__subtitle {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 24px;
    line-height: 1.4;
}

.lp-banner__subtitle-strong {
    font-weight: 600 !important;
    margin: 0;
}

.lp-banner__subtitle p {
    margin: 0;
    font-weight: 300;
}

.lp-banner__scroll {
    display: inline-flex;
    margin-top: 6px;
    animation: lp-bounce 1.8s ease-in-out infinite;
}

.lp-banner__scroll img {
    width: 23px;
    height: 43px;
}

@keyframes lp-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* =========================================
   Introdução (duas colunas)
========================================= */
.lp-intro {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.lp-intro__col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-intro__col:first-child {
    flex: 0 1 auto;
    align-items: flex-start;
}

.lp-intro__col:last-child {
    flex: 0 1 auto;
}

.lp-intro__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 47px;
    line-height: 1.15;
}

.lp-intro__lead {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
}

.lp-intro__col:last-child .lp-check-list {
    margin-bottom: 8px;
}

.lp-intro__col:last-child .lp-check-list li {
    font-size: 20px;
    font-weight: 500;
    white-space: nowrap;
}

.lp-intro__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 20px;
    line-height: 1.4;
}

.lp-intro .btn-gradient {
    margin-top: 4px;
    align-self: flex-start;
}

/* =========================================
   Atuamos com
========================================= */
.lp-atuamos {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.lp-atuamos__card {
    position: relative;
    width: 794px;
    max-width: 100%;
    background-color: var(--cinza);
    border: 1px solid #b29b8d;
    border-radius: 20px;
    box-shadow: 0px 0px 60px 0px rgba(58, 49, 45, 0.02);
    padding: 50px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.lp-atuamos__watermark {
    position: absolute;
    left: -30px;
    bottom: -40px;
    font-family: var(--font-decorative);
    font-style: italic;
    font-weight: 500;
    font-size: 190px;
    line-height: 1;
    color: rgba(201, 146, 14, 0.12);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.lp-atuamos__title {
    position: relative;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
}

.lp-atuamos .lp-check-list {
    position: relative;
    max-width: 456px;
}

.lp-atuamos .btn-gradient {
    position: relative;
    margin-top: 4px;
}

/* =========================================
   Áreas de atuação
========================================= */
.lp-areas {
    max-width: 1200px;
    margin: 100px auto 0;
    padding: 0 24px;
}

.lp-areas__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
}

.lp-areas__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    max-width: 600px;
}

.lp-areas__swiper {
    width: 100%;
}

.lp-areas__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    gap: 20px;
}

.lp-areas__swiper .swiper-pagination {
    display: none;
}

.lp-area-card {
    background-color: var(--cinza);
    border: 1px solid #b29b8d;
    border-radius: 16px;
    box-shadow: 0px 0px 30px rgba(58, 49, 45, 0.02);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.lp-area-card__icon {
    width: 64px;
    height: 64px;
}

.lp-area-card__title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--cor-secundaria);
}

/* =========================================
   Especialistas (reaproveita .specialist-bio)
========================================= */
.lp-specialists {
    max-width: 1066px;
    margin: 100px auto 0;
    padding: 0 24px;
}

.lp-specialists__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
}

.lp-specialists__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    max-width: 600px;
    margin: 0;
}

.lp-specialists__list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* =========================================
   Galeria de ambientes
========================================= */
.ambience {
    margin-top: 100px;
    padding-bottom: 20px;
}

.ambience__slide {
    width: 410px;
    height: 329px;
    border-radius: 33px;
    overflow: hidden;
    box-shadow: 0px 0px 100px 0px rgba(58, 49, 45, 0.02);
}

.ambience__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambience .swiper-pagination {
    margin-top: 40px;
}

/* =========================================
   CTA final + rodapé
========================================= */
.lp-cta {
    position: relative;
    margin-top: 100px;
    background-color: #f7ede8;
    border-top: 1px solid #b29b8d;
    overflow: hidden;
}

.lp-cta__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 24px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.lp-cta__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.lp-cta__brand-logo {
    width: 65px;
    height: 65px;
    /* border-radius: 50px; */
    object-fit: cover;
}

.lp-cta__brand-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    text-align: left;
}

.lp-cta__brand-name {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: var(--cor-secundaria);
}

.lp-cta__brand-handle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.4;
    color: var(--cor-secundaria);
}

.lp-cta__brand-handle img {
    width: 18px;
    height: 18px;
}

.lp-cta__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 48px;
    line-height: 1.3;
    margin-top: 8px;
}

.lp-cta__desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 24px;
    line-height: 1.4;
    max-width: 779px;
}

.lp-cta__copy {
    margin: 0;
    padding: 32px 24px;
    border-top: 1px solid #b29b8d;
    text-align: center;
    font-family: var(--font-body);
    font-size: 12px;
    line-height: 1.4;
    color: var(--cor-secundaria);
}

/* =========================================
   Responsivo
========================================= */
@media (min-width: 992px) and (max-width: 1199px) {
    .lp-intro {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .lp-intro__col:first-child,
    .lp-intro__col:last-child {
        flex-basis: auto;
    }

    .lp-areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .lp-banner__title {
        font-size: 38px;
    }

    .lp-intro__title,
    .lp-areas__title,
    .lp-atuamos__title,
    .lp-specialists__title,
    .lp-cta__title {
        font-size: 36px;
    }

    .lp-atuamos__watermark {
        font-size: 130px;
    }
}

@media (max-width: 991px) {
    .lp-banner {
        min-height: 0;
        padding: 50px 20px;
    }

    .lp-banner__content {
        gap: 20px;
    }

    .lp-banner__logo {
        width: 175px;
    }

    .lp-banner__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .lp-banner__badges {
        flex-direction: column;
        gap: 20px;
    }

    .lp-banner__subtitle {
        font-size: 20px;
    }

    .lp-banner__subtitle br {
        display: none;
    }

    .lp-banner__scroll {
        display: inline-flex;
        margin-top: 0;
    }

    .lp-intro,
    .lp-atuamos,
    .lp-areas,
    .lp-specialists {
        margin-top: 50px;
        padding-inline: 20px;
    }

    .lp-intro {
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    .lp-intro__col,
    .lp-intro__col:first-child,
    .lp-intro__col:last-child {
        align-items: center;
        width: 100%;
    }

    .lp-intro__title {
        font-size: 28px;
        line-height: 1.2;
    }

    .lp-intro__lead,
    .lp-intro__desc,
    .lp-intro__col:last-child .lp-check-list li {
        font-size: 20px;
    }

    .lp-intro__col:last-child .lp-check-list {
        align-items: flex-start;
        width: auto;
    }

    .lp-intro .btn-gradient,
    .lp-atuamos .btn-gradient,
    .lp-cta .btn-gradient {
        align-self: center;
        min-height: 68px;
        padding: 20px 38px;
        font-size: 20px;
    }

    .lp-atuamos__card {
        padding: 30px 35px;
        gap: 20px;
    }

    .lp-atuamos__title,
    .lp-areas__title,
    .lp-specialists__title,
    .lp-cta__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .lp-atuamos .lp-check-list {
        max-width: none;
    }

    .lp-atuamos .lp-check-list--center {
        align-items: flex-start;
    }

    .lp-atuamos .lp-check-list--center li {
        justify-content: flex-start;
        text-align: left;
    }

    .lp-check-list--lg li {
        font-size: 17px;
    }

    .lp-areas__head {
        gap: 12px;
        margin-bottom: 20px;
    }

    .lp-area-card {
        padding: 20px;
    }

    .lp-areas__swiper {
        padding: 0 12px 24px;
    }

    .lp-areas__grid {
        display: flex;
        align-items: stretch;
        gap: 0;
    }

    .lp-areas__swiper .swiper-slide {
        width: 285px;
        height: auto;
    }

    .lp-areas__swiper .swiper-pagination {
        display: block;
        margin-top: 24px;
    }

    .lp-specialists__head {
        gap: 12px;
        margin-bottom: 20px;
    }

    .lp-specialists__title {
        max-width: 600px;
    }

    .lp-specialists__list {
        gap: 50px;
    }

    .lp-specialists .specialist-bio,
    .lp-specialists .specialist-bio--reverse {
        gap: 20px;
    }

    .lp-specialists .specialist-bio__figure {
        width: min(363px, 100%);
    }

    .lp-specialists .specialist-bio__photo {
        width: 100%;
        height: auto;
    }

    .lp-specialists .specialist-bio__crm {
        bottom: 15px;
        padding: 12px 18px;
        font-size: 14px;
        white-space: nowrap;
    }

    .lp-specialists .specialist-bio__content {
        align-items: center;
        gap: 19px;
        text-align: center;
    }

    .lp-specialists .specialist-bio__name {
        font-size: 32px;
        line-height: 1.2;
    }

    .lp-specialists .specialist-bio__tags {
        justify-content: center;
    }

    .lp-specialists .specialist-bio__text p {
        font-size: 18px;
    }

    .ambience {
        margin-top: 50px;
    }

    .ambience__slide {
        width: 194px;
        height: 155px;
        border-radius: 16px;
    }

    .ambience .swiper-pagination {
        margin-top: 24px;
    }

    .lp-cta {
        margin-top: 50px;
    }

    .lp-cta__inner {
        padding: 30px 20px;
        gap: 20px;
    }

    .lp-cta__title {
        margin-top: 0;
    }

    .lp-cta__desc {
        font-size: 20px;
    }

    .lp-cta__copy {
        background-color: var(--cor-branca);
        padding: 20px;
        font-size: 16px;
        letter-spacing: 0.64px;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .lp-intro,
    .lp-atuamos,
    .lp-areas,
    .lp-specialists {
        margin-top: 50px;
    }

    .lp-intro__col:last-child .lp-check-list li {
        white-space: normal;
    }

}

@media (min-width: 768px) {
    .lp-intro {
        flex-direction: row;
    }

    .lp-intro__col:first-child {
        flex: 0 1 570;
    }

    .lp-intro__col:last-child {
        flex: 0 1 580px;
    }
}

@media (min-width: 992px) {
    .lp-check-list {
        align-items: start;
    }
}
