:root {
    --bg-dark: #1e0040;
    --bg-card: #2d0060;
    --bg-card2: #38007a;
    --primary: #9d4edd;
    --secondary: #c77dff;
    --accent: #dd00ff;
    --money: #00ff88;
    --text: #ffffff;
    --text-dim: #c9b8e8;
    --gradient: linear-gradient(135deg, #3d0080 0%, #6a00b8 50%, #9d4edd 100%);
    --glow: 0 0 20px rgba(157, 78, 221, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: radial-gradient(ellipse at top center, #5500a8 0%, #2d0060 40%, #1a003a 100%);
    color: var(--text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #cc0020, #ff0033, #cc0020);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 1001;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(255, 0, 51, 0.5);
    animation: pulse-bar 2s infinite;
}

@keyframes pulse-bar {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.92;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 41px;
    background: rgba(29, 0, 58, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.robux-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px var(--secondary));
}

.robux-icon.large {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

nav a {
    color: var(--text-dim);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

nav a:hover {
    color: var(--text);
}

/* Online Badge Button (match image: green ONLINE button) */
.btn-online {
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.5);
    color: #00c853;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #00c853;
    border-radius: 50%;
    box-shadow: 0 0 8px #00c853;
    animation: blink 1.5s infinite;
}

.btn-online:hover {
    background: rgba(0, 200, 83, 0.25);
}

/* Hero */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-banner {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 40px;
    border-radius: 24px;
    box-shadow: 0 0 60px rgba(157, 78, 221, 0.3);
    overflow: hidden;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Trust Badges (match image style: colored gradient icon card) */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 36px 0;
    flex-wrap: wrap;
}

.trust-badge {
    background: rgba(80, 0, 160, 0.4);
    border-radius: 20px;
    padding: 20px 30px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.trust-badge:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-badge-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
}

.trust-badge-icon.pink {
    background: linear-gradient(135deg, #e91e8c, #ff5f5f);
}

.trust-badge-icon.blue {
    background: linear-gradient(135deg, #1a73e8, #42a5f5);
}

.trust-badge-icon.yellow {
    background: linear-gradient(135deg, #f9a825, #ffcc02);
}

.trust-badge-icon.green {
    background: linear-gradient(135deg, #00897b, #00e676);
}

.trust-badge span {
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-dim);
}

/* Packages */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.4rem;
    font-weight: 900;
}

.section-title h2 span {
    color: var(--secondary);
}

.section-title .stars {
    color: gold;
    font-size: 1.3rem;
    margin: 10px 0 6px;
}

.section-title .reviews {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.package-card {
    background: linear-gradient(160deg, #38007a, #2a0060);
    border-radius: 28px;
    padding: 28px;
    text-align: center;
    border: 1px solid rgba(157, 78, 221, 0.3);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Shine sweep on hover */
.package-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(30deg);
    transition: 0.6s;
    pointer-events: none;
}

.package-card:hover::after {
    left: 130%;
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--glow);
}

.pkg-header {
    margin: 16px 0;
}

.pkg-name {
    font-size: 1.4rem;
    font-weight: 800;
}

.pkg-bonus {
    color: var(--money);
    font-size: 0.8rem;
    font-weight: 700;
    background: rgba(0, 255, 136, 0.08);
    padding: 3px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 6px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.pkg-price-old {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 12px;
}

.pkg-price-now {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--money);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-buy {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    /* Pill shape - matching image */
    border: none;
    background: linear-gradient(135deg, #5a189a, #9d4edd, #c77dff);
    color: white;
    font-weight: 800;
    font-size: 1rem;
    margin-top: 18px;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 20px rgba(157, 78, 221, 0.3);
}

.btn-buy:hover {
    filter: brightness(1.2);
    box-shadow: 0 6px 30px rgba(157, 78, 221, 0.5);
    transform: translateY(-2px);
}

/* Avatar Initials (matching image: bright gradient circle) */
.avatar-initials {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Individual avatar colors like in the image */
.av-purple {
    background: linear-gradient(135deg, #7b2ff7, #c77dff);
}

.av-blue {
    background: linear-gradient(135deg, #1565c0, #42a5f5);
}

.av-orange {
    background: linear-gradient(135deg, #e65100, #ffb74d);
}

.av-green {
    background: linear-gradient(135deg, #2e7d32, #81c784);
}

.av-pink {
    background: linear-gradient(135deg, #ad1457, #f48fb1);
}

.av-teal {
    background: linear-gradient(135deg, #00695c, #4db6ac);
}

/* Feedback Cards (matching image) */
.feedback-card {
    background: linear-gradient(160deg, #38007a, #2a0060);
    border-radius: 24px;
    padding: 24px;
    border: 1px solid rgba(199, 125, 255, 0.15);
    transition: 0.35s;
    text-align: left;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: rgba(199, 125, 255, 0.45);
    box-shadow: 0 15px 40px rgba(80, 0, 160, 0.4);
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feedback-meta {
    flex: 1;
}

.feedback-name {
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.feedback-name .verified-dot {
    width: 16px;
    height: 16px;
    background: #2196f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
}

.feedback-stars {
    color: gold;
    font-size: 0.8rem;
    margin-top: 2px;
}

.feedback-text {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.feedback-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2196f3;
    font-weight: 600;
}

/* Toast Notification (matching image: "Compra Confirmada!" style) */
.notif-toast {
    position: fixed;
    bottom: 30px;
    left: 24px;
    background: #160d2a;
    border: 1px solid rgba(157, 78, 221, 0.3);
    padding: 14px 18px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    backdrop-filter: blur(20px);
    z-index: 9999;
    width: 260px;
    transform: translateX(-130%);
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.notif-toast.active {
    transform: translateX(0);
}

.notif-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.notif-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #00897b, #00e676);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.notif-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: white;
}

.notif-body {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.notif-robux-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.notif-robux-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.notif-info {
    flex: 1;
}

.notif-buyer {
    font-weight: 700;
    font-size: 0.85rem;
}

.notif-amount {
    color: var(--money);
    font-size: 0.8rem;
    font-weight: 600;
}

.notif-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.notif-time-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 5px;
}

.online-dot {
    width: 7px;
    height: 7px;
    background: var(--money);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px var(--money);
    animation: blink 1.5s infinite;
}

.notif-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #2196f3;
    font-size: 0.72rem;
    font-weight: 700;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    header ul {
        display: none;
    }

    .trust-badges {
        gap: 10px;
    }

    .trust-badge {
        padding: 16px 18px;
        min-width: 140px;
    }
}

/* Section padding */
section {
    padding: 60px 0;
}

/* Animate */
.animate-fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}