:root {
    --primary: #188998;
    --primary-light: #20a5b8;
    --secondary: #FF9F1C;
    --accent: #FFECD1;
    --text-dark: #1D3557;
    --text-muted: #4A5568;
    --bg-light: #F7F9FC;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius: 16px;
    --radius-pill: 50px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

/* Fix for horizontal scroll caused by absolute blobs */
.bg-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-blobs::before,
.bg-blobs::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.bg-blobs::before {
    background: var(--primary);
    top: -200px;
    right: -200px;
}

.bg-blobs::after {
    background: var(--secondary);
    bottom: -200px;
    left: -200px;
}


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Hero Section --- */
.hero {
    padding: 40px 0 20px;
    text-align: center;
}

.badge {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(24, 137, 152, 0.3);
    animation: fadeInDown 0.8s ease-out;
}



.headline {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}


.headline span {
    color: var(--secondary);
}

.subheadline {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 550px;
    margin: 0 auto 35px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}


.bonus-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow);
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.bonus-pill span.icon {
    font-size: 18px;
}


/* --- Video Section --- */
.video-container {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    margin: 0 auto 40px;
    position: relative;
    border: 4px solid var(--white);
    animation: scaleIn 0.8s ease-out 0.6s backwards;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CTA Section --- */
.cta-area {
    text-align: center;
    padding-bottom: 40px;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 18px 24px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(24, 137, 152, 0.4);
    transition: var(--transition);
    margin-bottom: 20px;
    text-transform: uppercase;
    width: 100%;
    max-width: 460px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s infinite;
}


@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 25px rgba(24, 137, 152, 0.4);
    }

    50% {
        box-shadow: 0 10px 40px rgba(24, 137, 152, 0.8);
    }

    100% {
        box-shadow: 0 10px 25px rgba(24, 137, 152, 0.4);
    }
}


.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(24, 137, 152, 0.5);
    background-color: var(--primary-light);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.social-proof {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}


/* --- Bonus Offer Summary (Inside Features) --- */
.bonus-offer-minimal {
    padding: 10px 0 20px;
    text-align: center;
    width: 100%;
}


.bonus-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 25px 0 20px;
}


.bonus-value span {
    color: #E63946;
    text-decoration: line-through;
    font-weight: 800;
    margin-left: 5px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 16px 40px;
    border-radius: var(--radius-pill);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(24, 137, 152, 0.3);
    transition: var(--transition);
}

.btn-secondary:hover {
    transform: scale(1.05);
    background-color: var(--primary-light);
}


/* --- Bonus Grid Section --- */
.bonus-grid-section {
    padding: 40px 0 30px;
    background: #fdfdfd;
}

.bonus-grid-header {
    text-align: center;
    margin-bottom: 40px;
}

.bonus-grid-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-style: italic;
}

.bonus-grid-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.bonus-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bonus-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.bonus-card-img {
    width: 100%;
    aspect-ratio: 1 / 0.6;
    overflow: hidden;
}

.bonus-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bonus-card-content {
    padding: 20px;
}

p.bonus-price {
    color: #E63946 !important;
    text-decoration: line-through !important;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    /* Ensure it's treated as a block for margins */
}



.bonus-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.bonus-card-content p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Centering the 5th bonus card */
.bonus-card:nth-child(5) {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .bonus-cards-grid {
        gap: 12px;
    }

    .bonus-card-content {
        padding: 15px;
    }

    .bonus-card:nth-child(5) {
        max-width: 100%;
        margin: 0;
    }
}


/* --- Features Section --- */
.features {
    background: var(--white);
    padding: 50px 0;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.02);
}

.features-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 40px;
    position: relative;
}


.features-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: -20px 5px 0 0 rgba(24, 137, 152, 0.2), 20px 5px 0 0 rgba(255, 159, 28, 0.2);
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: #FAFAFA;
    padding: 35px 30px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.feature-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
    align-items: center;
    text-align: center;
}



.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #f0f4f5;
    color: #456c72;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
}


.feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}


.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}


/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* --- App Pro Section --- */
.bonus-app-pro {
    background: var(--white);
    border-radius: 24px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.bonus-app-img {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.bonus-app-img img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

/* --- Final Offer Section --- */
.final-offer-section {
    padding: 60px 0 80px;
    background: #fdfdfd;
}

.final-offer-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    max-width: 500px;
    margin: 0 auto;
}

.timer-box {
    background: #F4F9FA;
    padding: 25px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.timer-box p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.time-block {
    background: #112F41;
    color: var(--white);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
}

.time-block span {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.time-block small {
    font-size: 9px;
    opacity: 0.8;
    margin-top: 3px;
    text-transform: uppercase;
}

.countdown .colon {
    font-size: 20px;
    font-weight: 800;
    color: #112F41;
}

.timer-slogan {
    font-style: italic;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px !important;
    margin-bottom: 0 !important;
}

.timer-slogan i {
    width: 14px;
    height: 14px;
    color: #6C5CE7;
}

.final-offer-content {
    padding: 35px 40px;
}

.final-offer-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.3;
}

.final-offer-features {
    list-style: none;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.final-offer-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.final-offer-features i {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.final-offer-bonuses {
    margin-bottom: 30px;
}

.final-offer-bonuses>p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.final-offer-bonuses ul {
    list-style: none;
}

.final-offer-bonuses li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.final-offer-bonuses li>div {
    display: flex;
    align-items: center;
}

.final-offer-bonuses i {
    color: #FF9F1C;
    stroke: #FF9F1C;
    width: 18px;
    height: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}


.final-offer-bonuses span {
    color: #E63946;
    text-decoration: line-through;
    font-weight: 800;
}

.price-box {
    background: #EAF7F5;
    border: 1px solid #D1EAE6;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    margin-bottom: 25px;
}

.total-value {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 5px;
}

.total-value span {
    color: #E63946;
    text-decoration: line-through;
    font-weight: 800;
}

.current-price {
    font-size: 46px;
    font-weight: 900;
    color: #21C17B;
    line-height: 1;
    margin-bottom: 8px;
}

.savings-text {
    color: #FF8A00;
    font-weight: 700;
    font-size: 13px;
}

.final-offer-content .btn-primary {
    max-width: 100%;
}


.bonus-app-content {
    padding: 30px 40px;
}

.bonus-app-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.bonus-app-price {
    color: #E63946;
    font-weight: 800;
    font-size: 18px;
    text-decoration: line-through;
}

.badge-gratis {
    background: #FF8A00;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 6px;
    text-transform: uppercase;
}

.bonus-app-pro h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.bonus-app-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.bonus-app-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    list-style: none;
    margin-bottom: 25px;
}

.bonus-app-list li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: start;
    gap: 10px;
}

.bonus-app-list i {
    width: 18px;
    height: 18px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.bonus-app-ideal {
    font-style: italic;
    color: #f06292;
    font-size: 15px;
    margin-bottom: 30px;
}

.bonus-app-summary {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-muted);
    font-size: 15px;
}

.summary-strike {
    color: #E63946;
    font-weight: 800;
    text-decoration: line-through;
}

.bonus-app-btn {
    width: auto;
    max-width: 100%;
    font-size: 16px;
    padding: 18px 40px;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .headline {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-card {
        padding: 15px;
        border-radius: 20px;
    }

    .feature-card h3 {
        font-size: 13px;
    }

    .feature-card p {
        font-size: 11px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        margin-bottom: 12px;
    }

    .feature-icon i {
        width: 16px;
        height: 16px;
    }

    .feature-card:last-child {
        grid-column: span 2;
        max-width: 100%;
        margin: 0;
        align-items: center;
        text-align: center;
    }

    .bonus-app-list {
        grid-template-columns: 1fr;
    }

    .bonus-app-content {
        padding: 20px;
    }

    .bonus-app-pro h3 {
        font-size: 20px;
    }

    .bonus-app-img {
        aspect-ratio: auto;
    }

    /* Final Offer Mobile Adjustments */
    .final-offer-section {
        padding: 30px 0 40px;
    }

    .timer-box {
        padding: 12px 15px;
    }

    .timer-box p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .timer-slogan {
        font-size: 11px !important;
    }

    .time-block {
        min-width: 35px;
        padding: 4px 6px;
    }

    .time-block span {
        font-size: 14px;
    }

    .countdown .colon {
        font-size: 14px;
    }

    .final-offer-content {
        padding: 15px 20px;
    }

    .final-offer-title {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .final-offer-features {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

    .final-offer-features li {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .final-offer-features i {
        width: 12px;
        height: 12px;
        margin-top: 1px;
    }

    .final-offer-bonuses {
        margin-bottom: 20px;
    }

    .final-offer-bonuses>p {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .final-offer-bonuses li {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .final-offer-bonuses i {
        color: #FF9F1C;
        stroke: #FF9F1C;
        width: 14px;
        height: 14px;
        margin-right: 5px;
    }

    .price-box {
        padding: 12px;
        margin-bottom: 15px;
        border-radius: 12px;
    }

    .total-value {
        font-size: 11px;
    }

    .current-price {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .savings-text {
        font-size: 11px;
    }

    .final-offer-content .btn-primary {
        font-size: 12px;
        padding: 12px 15px;
    }
}

/* --- Scroll Fade Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Sales Notification Popup --- */
.sales-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px 10px 10px;
    z-index: 1000;
    max-width: 260px;
    border-left: 5px solid #22c55e;
    transform: translateX(-150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s;
    pointer-events: none;
}

.sales-notification.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.sales-notification-icon {
    width: 28px;
    height: 28px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sales-notification-icon i {
    color: #16a34a;
    width: 14px;
    height: 14px;
    stroke: #16a34a;
}

.sales-notification-content {
    display: flex;
    flex-direction: column;
}

.sales-notification-name {
    font-size: 11px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 3px;
}

.sales-notification-name span {
    font-weight: 500;
    color: var(--text-muted);
}

.sales-notification-text {
    font-size: 10px;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.sales-notification-product {
    font-size: 10px;
    font-weight: 700;
    color: #16a34a;
    line-height: 1.2;
}

.sales-notification-time {
    font-size: 9px;
    color: #94a3b8;
    margin-top: 3px;
}

.sales-notification-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    cursor: pointer;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.sales-notification-close i {
    width: 10px;
    height: 10px;
}

.sales-notification-close:hover {
    color: #94a3b8;
}

@media (max-width: 480px) {
    .sales-notification {
        bottom: 12px;
        left: 12px;
        right: auto;
        max-width: 260px;
        transform: translateX(-150%);
    }

    .sales-notification.show {
        transform: translateX(0);
    }
}