@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@700;800;900&display=swap');

:root {
    --accent: #059669;
    --accent-light: #10b981;
    --accent-glow: rgba(5, 150, 105, 0.3);
    --bg: #050f0a;
    --bg2: #0a1810;
    --card-bg: rgba(255, 255, 255, 0.04);
    --card-border: rgba(255, 255, 255, 0.08);
    --text: #f1f5f9;
    --dim: #94a3b8;
    --font-head: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    background: rgba(5, 15, 10, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
}

.nav-logo span {
    color: var(--accent-light);
}

.nav-cta {
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.nav-cta:hover {
    background: var(--accent-light);
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 5rem;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(5, 150, 105, 0.18) 0%, transparent 70%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(5, 150, 105, 0.12);
    border: 1px solid rgba(5, 150, 105, 0.3);
    color: var(--accent-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--accent-light);
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--dim);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--accent-light);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--dim);
}

/* SECTIONS */
section {
    padding: 5rem 2rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-sub {
    color: var(--dim);
    max-width: 560px;
}

/* BRANDS */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-top: 3rem;
}

.brand-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 1.75rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.brand-card:hover {
    border-color: rgba(5, 150, 105, 0.4);
    transform: translateY(-4px);
}

.brand-card.own {
    border-color: rgba(5, 150, 105, 0.25);
    background: rgba(5, 150, 105, 0.06);
}

.brand-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.brand-card h3 {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.brand-card .since {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.brand-card p {
    color: var(--dim);
    font-size: 0.85rem;
}

.own-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.2);
    color: var(--accent-light);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

/* MAESTRO FEATURE */
.maestro-section {
    background: var(--bg2);
}

.maestro-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.maestro-text {
    flex: 1;
    min-width: 280px;
}

.maestro-products {
    flex: 1;
    min-width: 280px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.product-chip {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-chip i {
    color: var(--accent-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.product-chip span {
    font-size: 0.88rem;
    font-weight: 600;
}

/* CARDS GENERICAS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2rem;
    transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
    border-color: rgba(5, 150, 105, 0.4);
    transform: translateY(-4px);
}

.card-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(5, 150, 105, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon-box i {
    color: var(--accent-light);
    font-size: 1.2rem;
}

.card h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.card p {
    color: var(--dim);
    font-size: 0.9rem;
}

/* BENEFITS */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(5, 150, 105, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--accent-light);
}

.benefit-item h4 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.benefit-item p {
    color: var(--dim);
    font-size: 0.85rem;
}

/* CTA */
.cta-section {
    text-align: center;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(5, 150, 105, 0.14) 0%, transparent 70%);
}

.cta-section h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--dim);
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 30px var(--accent-glow);
    transition: all 0.3s;
}

.btn-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--text);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid var(--card-border);
    transition: border-color 0.2s;
}

.btn-secondary:hover {
    border-color: rgba(5, 150, 105, 0.4);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

footer {
    background: var(--bg2);
    border-top: 1px solid var(--card-border);
    padding: 2rem;
    text-align: center;
    color: var(--dim);
    font-size: 0.85rem;
}

footer a {
    color: var(--accent-light);
    text-decoration: none;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 640px) {
    nav {
        padding: 1rem;
    }

    .hero {
        padding: 7rem 1.25rem 4rem;
    }

    section {
        padding: 3.5rem 1.25rem;
    }

    .maestro-products {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}