:root {
    /* Colors */
    --background: 240 10% 2%;
    --foreground: 0 0% 98%;
    --card: 240 10% 3.9%;
    --card-foreground: 0 0% 98%;
    --primary: 47 95% 58%;
    /* Gold */
    --primary-foreground: 240 5.9% 10%;
    --muted: 240 3.7% 10%;
    --muted-foreground: 240 5% 64.9%;
    --border: 240 3.7% 15.9%;

    /* Fonts */
    --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('../fonts/Geist-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-family: var(--font-sans);
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.div-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 1200px;
}

/* Utilities */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: hsl(var(--primary));
}

.text-muted {
    color: hsl(var(--muted-foreground));
}

.w-full {
    width: 100%;
}

.relative {
    position: relative;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4.5rem;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.5);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    font-weight: 500;
    padding: 0.6rem 1.25rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    border: none;
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    background: hsl(var(--primary));
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px hsla(var(--primary), 0.2);
    opacity: 0.9;
}

.btn-ghost {
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Hero */
.hero {
    padding: 10rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(var(--muted-foreground));
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

/* Modern Card Design */
.feature-card {
    position: relative;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    min-height: 240px;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: hsla(var(--primary), 0.3);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.pilar-content {
    position: relative;
    z-index: 2;
}

.pilar-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(47, 95, 58, 0.1);
    /* hsl(var(--primary)) alpha */
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: hsl(var(--primary));
    border: 1px solid hsla(var(--primary), 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover .pilar-icon {
    transform: scale(1.1) rotate(-5deg);
    background: hsla(var(--primary), 0.2);
}

.pilar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.pilar-desc {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Layout do Bento Grid (Pilares) */
@media (min-width: 768px) {
    .pilar-1 {
        grid-column: span 8;
    }

    .pilar-2 {
        grid-column: span 4;
    }

    .pilar-3 {
        grid-column: span 6;
    }

    .pilar-5 {
        grid-column: span 6;
    }

    .pilar-6 {
        grid-column: span 12;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: hsla(var(--primary), 0.3);
    background: radial-gradient(circle at top right, hsla(var(--primary), 0.1), transparent);
}

.pricing-card.featured:hover {
    border-color: hsla(var(--primary), 0.6);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 1rem 0;
    color: #fff;
}

.price span {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
    font-weight: 400;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}