/* Shared theme styles extracted from inline LP blades (property / lp2 / lp3) */

.lp-banner-bg {
    height: auto !important;
    min-height: 50vh;
    background-size: cover;
    position: relative;
}

.lp-banner-overlay {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.lp-header-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
    color: #fff;
    padding: 50px 0 30px 0;
}

.lp-badge-delivery {
    white-space: normal !important;
    font-size: 0.9em;
    line-height: 1.3em;
}

.lp-form-panel {
    padding: 5%;
    margin-left: auto;
}

.lp-form-panel--centered {
    margin-left: auto;
    margin-right: auto;
}

.lp-cta-section {
    height: auto !important;
    position: relative;
    background-size: cover;
}

.lp-cta-padding {
    padding: 80px 0 40px 0;
}

.lp-cta-box {
    margin: 0 auto !important;
}

.lp-cta-inner {
    background: rgba(0, 0, 0, 0.64) !important;
    padding: 5%;
}

.lp-about-section {
    background-color: #fff;
}

.lp-about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-about-title {
    color: #000 !important;
}

.lp-about-text {
    color: #837f7f !important;
    font-size: 1.1em !important;
}

.lp-info-cards {
    display: flex;
    justify-content: space-around;
    color: #fff;
}

.lp-info-card {
    padding: 20px;
    border-radius: 8px;
}

.lp-info-card--dark {
    background-color: #000;
}

.lp-info-card--light {
    box-shadow: 0 0 7px #c1c1c1;
    color: #000;
}

.lp-info-card--brand {
    background-color: var(--azul-crecido);
}

.lp-section-pad {
    padding: 100px 0;
    position: relative;
}

.lp-section-pad--sm {
    padding: 20px 0 100px 0;
    position: relative;
}

.lp-leisure-row,
.lp-characteristics-row {
    display: flex;
    justify-content: center;
}

.lp-leisure-item,
.lp-characteristic-item {
    font-size: 1.6em;
    line-height: 1.6em;
    margin: 15px 0;
}

.lp-leisure-label,
.lp-characteristic-label {
    font-weight: 500;
    font-size: 0.75em;
}

.lp-privacy {
    display: none;
    margin: 5px auto;
    text-align: left;
}

a.pol_link {
    color: lightgray;
}

a.pol_link:hover {
    color: var(--marca-cor-primaria);
}

.lp-banner-inner-pad {
    padding-bottom: 160px;
}

.custom-slide-in {
    animation: lpSlideIn 0.5s ease forwards;
}

@keyframes lpSlideIn {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.lp-footer {
    padding: 20px;
    background: var(--azul-crecido);
    color: white;
}

.lp-whatsapp-header {
    background-color: var(--azul-crecido);
    display: flex;
    align-items: center;
}

.lp-modal-dark .modal-content {
    background: rgba(0, 0, 0, 0.6);
}

.lp-modal-title {
    font-weight: 800;
    color: var(--marca-cor-secundaria);
}

.lp-modal-subtitle {
    font-weight: 900;
    font-size: 1em;
    color: var(--marca-cor-secundaria);
}

.iti {
    display: block !important;
}

/* ---- Plantas (LP) ---- */
.lp-plans {
    padding: 72px 0;
    background: #f4f5f7;
}

.lp-plans__subtitle {
    color: #6b7280;
    margin: 0 0 2rem;
    font-size: 1rem;
}

.lp-plan-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.lp-plan-card__media {
    position: relative;
    background: #eef1f5;
    aspect-ratio: 4 / 3;
}

.lp-plan-swiper,
.lp-plan-swiper .swiper-wrapper,
.lp-plan-swiper .swiper-slide {
    height: 100%;
}

.lp-plan-card__zoom {
    display: block;
    position: relative;
    height: 100%;
    text-decoration: none;
}

.lp-plan-card__zoom img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    display: block;
}

.lp-plan-card__zoom-hint {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.lp-plan-card:hover .lp-plan-card__zoom-hint {
    opacity: 1;
}

.lp-plan-swiper__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lp-plan-swiper__prev {
    left: 10px;
}

.lp-plan-swiper__next {
    right: 10px;
}

.lp-plan-swiper__pagination {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    z-index: 2;
    text-align: center;
}

.lp-plan-swiper__pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.55;
}

.lp-plan-swiper__pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--azul-crecido, #1c315e);
}

.lp-plan-card__placeholder {
    height: 100%;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #9ca3af;
}

.lp-plan-card__placeholder i {
    font-size: 2rem;
}

.lp-plan-card__body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.lp-plan-card__title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.lp-plan-card__subtitle {
    margin: 0;
    color: #6b7280;
    text-align: center;
    font-size: 0.95rem;
}

.lp-plan-card__specs {
    list-style: none;
    margin: 0.25rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.lp-plan-card__specs li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.7rem;
    border-radius: 10px;
    background: #f8fafc;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
}

.lp-plan-card__specs i {
    color: var(--azul-crecido, #1c315e);
    width: 1rem;
    text-align: center;
}

.lp-plan-card__extras {
    margin-top: auto;
    padding-top: 0.5rem;
}

.lp-plan-card__extras-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.lp-plan-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.lp-plan-card__chip {
    display: inline-block;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(28, 49, 94, 0.08);
    color: var(--azul-crecido, #1c315e);
    font-size: 0.75rem;
    font-weight: 600;
}

@media (max-width: 575.98px) {
    .lp-plans {
        padding: 48px 0;
    }

    .lp-plan-card__specs {
        grid-template-columns: 1fr;
    }

    .lp-plan-card__zoom-hint {
        opacity: 1;
    }
}
