﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container-pachete-body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
}

.container-pachete {
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a0000 100%);
    min-height: 100vh;
}

/* Hero Header */
.pachete-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.pachete-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(90deg, rgba(193, 2, 6, 0.2), rgba(193, 2, 6, 0.1));
    border: 1px solid rgba(193, 2, 6, 0.6);
    color: #ff6b6b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(193, 2, 6, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(193, 2, 6, 0.6);
    }
}

.pachete-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #ff3333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pachete-subtitle {
    color: #999;
    font-size: 13px;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}

/* Problem/Solution Cards */
.comparison-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.comparison-card {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-problem {
    background: #1a1a1a;
    border: 1px solid #333;
}

.card-solution {
    background: linear-gradient(135deg, #C10206 0%, #7a0104 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(193, 2, 6, 0.4);
}

.card-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-problem .card-icon {
    background: rgba(255, 255, 255, 0.1);
}

.card-solution .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-text {
    font-size: 11px;
    line-height: 1.3;
    opacity: 0.8;
}

/* Package Cards */
.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.package-card {
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .package-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .package-card.selected {
        border-color: #C10206;
        background: linear-gradient(135deg, rgba(193, 2, 6, 0.1) 0%, rgba(193, 2, 6, 0.05) 100%);
    }

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.package-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.package-price-box {
    text-align: right;
}

.package-price {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.package-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.package-description {
    color: #999;
    font-size: 12px;
    margin-bottom: 12px;
}

.package-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.feature-pill {
    background: rgba(193, 2, 6, 0.15);
    color: #ff9999;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    border: 1px solid rgba(193, 2, 6, 0.3);
}

/* CTA Section */
.cta-container {
    background: linear-gradient(135deg, #1a0000 0%, #2a0000 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(193, 2, 6, 0.3);
    position: relative;
    overflow: hidden;
}

    .cta-container::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(193, 2, 6, 0.1) 0%, transparent 60%);
        animation: rotate 10s linear infinite;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-price-display {
    text-align: center;
    margin-bottom: 20px;
}

.cta-selected-package {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.cta-final-price {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

    .cta-final-price small {
        font-size: 18px;
        color: #999;
    }

.cta-button {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 50%, #990000 100%);
    color: #fff;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .cta-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .cta-button:hover::before {
        left: 100%;
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
    }

.cta-button-icon {
    display: inline-block;
    margin-right: 8px;
    animation: flame 1s ease-in-out infinite;
}

@keyframes flame {
    0%, 100% {
        transform: scale(1) translateY(0);
    }

    50% {
        transform: scale(1.1) translateY(-2px);
    }
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.trust-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.trust-label {
    font-size: 9px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-value {
    font-size: 11px;
    color: #fff;
    font-weight: 600;
    margin-top: 2px;
}

/* Reviews Section */
.reviews-container {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #2a2a2a;
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #FFD700;
    font-size: 18px;
}

.rating-number {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.rating-count {
    font-size: 11px;
    color: #999;
}

.review-platforms {
    display: flex;
    gap: 8px;
}

.platform-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Testimonial Slider */
.testimonial-card {
    background: rgba(193, 2, 6, 0.1);
    border-left: 3px solid #C10206;
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-author {
    font-size: 11px;
    color: #999;
    font-weight: 600;
}

.verified-badge {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Guarantee Strip */
.guarantee-strip {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    border: 1px solid #333;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #ccc;
}

    .guarantee-item .check {
        color: #25d366;
        font-weight: bold;
    }

/* Timer Urgency */
.urgency-timer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

.timer-label {
    font-size: 10px;
    color: #ffc107;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.timer-countdown {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    font-family: 'Courier New', monospace;
}
