:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --accent-color: #22c55e;
    --bg-dark: #0f172a;
    --card-bg: rgba(30, 41, 59, 0.7);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: move 20s infinite alternate linear;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: #0ea5e9;
    top: 30%;
    right: 20%;
    animation-delay: -10s;
}

@keyframes move {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.2) translate(100px, 50px); }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hero {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 5rem);
    font-weight: 800;
    background: linear-gradient(
        to right, 
        #fff 20%, 
        #94a3b8 40%, 
        #fff 60%, 
        #94a3b8 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.price-tag {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-tag .label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price-tag .value {
    color: var(--accent-color);
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 5px;
    background: linear-gradient(to right, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.negotiation {
    margin-top: 15px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.bid-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.bid-link:hover {
    border-color: var(--primary-color);
    padding-bottom: 2px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.feature-card {
    padding: 32px;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: left;
}

.contact-card .icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.contact-card .info {
    display: flex;
    flex-direction: column;
}

.contact-card .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-card .contact-detail {
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-card.whatsapp:hover {
    border-color: var(--accent-color);
}

.footer {
    margin-top: 100px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 16px;
    }
    
    h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        letter-spacing: -1px;
    }

    .price-tag .value {
        font-size: 2rem;
    }

    .feature-card {
        padding: 24px;
    }

    .blob {
        filter: blur(50px);
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 30px 12px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .contact-card {
        padding: 16px;
        gap: 12px;
    }

    .contact-card .icon {
        width: 40px;
        height: 40px;
    }

    .contact-card .contact-detail {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
