:root {
    --primary: #8a2be2;
    --primary-hover: #7b26c9;
    --bg-main: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --text-main: #111827;
    --text-muted: #6b7280;
    --accent: #2563eb;
    --border: rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
}

h1, h2, h3, .logo {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    color: var(--primary);
    font-size: 28px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -1px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 32px;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f9fafb;
}

.glow-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(138,43,226,0.08) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(138, 43, 226, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-subtitle strong {
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.btn-secondary {
    background: #e5e7eb;
    color: var(--text-main);
}

.btn-secondary:hover {
    background: #d1d5db;
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid #d1d5db;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-block {
    width: 100%;
    margin-top: 24px;
}

/* Packages Section */
.packages-section {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.package-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
}

.package-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: var(--shadow-hover);
}

.package-card.featured {
    border-color: var(--primary);
    border-width: 2px;
    position: relative;
}

.badge-popular {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
}

.package-header h3 {
    font-size: 24px;
    margin-bottom: 24px;
}

.package-price {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-item span {
    color: var(--text-muted);
    font-size: 14px;
}

.price-item strong {
    font-size: 20px;
    color: var(--text-main);
}

.package-features {
    list-style: none;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.package-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
    margin-right: 12px;
}

.package-features li.highlight {
    color: var(--accent);
}

.package-features li.highlight::before {
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-main) 0%, rgba(138,43,226,0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-text h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-text p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 16px;
}

.warning-text {
    padding: 16px;
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    color: #991b1b !important;
    font-size: 15px !important;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.contact-btn:hover {
    transform: translateX(5px);
    background: var(--bg-card-hover);
    box-shadow: var(--shadow-hover);
}

.contact-btn.whatsapp:hover {
    border-color: #25D366;
    color: #25D366;
}

.contact-btn.email:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    background-color: var(--bg-main);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}

.privacy-link {
    color: var(--text-muted);
    text-decoration: none;
}

.privacy-link:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-content {
        flex-direction: column;
        gap: 16px;
    }
    .nav-links {
        display: none;
    }
}
