/* Desafio 30 Dias Mounjaro — estilos custom da LP */

.gradient-text-lime {
    background: linear-gradient(135deg, #A3E635 0%, #84CC16 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #6B21A8 0%, #4C1D95 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-glow {
    box-shadow: 0 0 25px rgba(132, 204, 22, 0.4);
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.6); }
    70% { box-shadow: 0 0 0 18px rgba(132, 204, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0); }
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.glass-card-dark {
    background: rgba(24, 24, 27, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(132, 204, 22, 0.2);
}

/* Destaque das imagens nas seções 50/50 */
.lp-media-feature {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    isolation: isolate;
}

.lp-media-feature img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.lp-media-feature:hover img {
    transform: scale(1.04);
}

.lp-media-feature--light {
    border: 2px solid rgba(76, 29, 149, 0.25);
    box-shadow:
        0 25px 50px -12px rgba(46, 16, 101, 0.35),
        0 0 0 1px rgba(132, 204, 22, 0.15);
}

.lp-media-feature--dark {
    border: 2px solid rgba(132, 204, 22, 0.55);
    box-shadow:
        0 0 40px rgba(132, 204, 22, 0.25),
        0 25px 50px -12px rgba(0, 0, 0, 0.55);
}

.lp-media-feature--glow::before {
    content: "";
    position: absolute;
    inset: -6px;
    z-index: -1;
    border-radius: 1.75rem;
    background: linear-gradient(135deg, #A3E635, #6B21A8, #84CC16);
    opacity: 0.55;
    filter: blur(14px);
    pointer-events: none;
}

@media (min-width: 768px) {
    .lp-media-feature img {
        min-height: 0;
    }
}

/* Hero — background + overlay roxo → transparente */
.hero-lp {
    background-color: #2E1065;
}

.hero-lp__bg {
    background-image: url("../images/img-hero-karina.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-lp__overlay {
    background:
        linear-gradient(
            90deg,
            rgba(46, 16, 101, 0.96) 0%,
            rgba(46, 16, 101, 0.85) 32%,
            rgba(76, 29, 149, 0.35) 52%,
            rgba(76, 29, 149, 0) 68%,
            rgba(76, 29, 149, 0) 100%
        ),
        linear-gradient(
            180deg,
            rgba(46, 16, 101, 0.35) 0%,
            rgba(46, 16, 101, 0) 35%,
            rgba(46, 16, 101, 0) 70%,
            rgba(15, 23, 42, 0.25) 100%
        );
}

@media (max-width: 767px) {
    .hero-lp__bg {
        background-position: 70% center;
        
    }

    .hero-lp__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(46, 16, 101, 0.9) 0%,
                rgba(46, 16, 101, 0.72) 50%,
                rgba(46, 16, 101, 0.4) 75%,
                rgba(15, 23, 42, 0.55) 100%
            ),
            linear-gradient(
                90deg,
                rgba(46, 16, 101, 0.65) 0%,
                rgba(76, 29, 149, 0) 100%
            );
    }
}
