@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&family=Work+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Artisanal Scoop B2B - Navy & Gold */
    --brand-primary: #001f3f; /* Deep Navy */
    --brand-secondary: #B8860B; /* Gold Premium */
    --brand-accent: #B8860B;
    --brand-gradient: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #daa520 100%);
    
    /* Neutral Shades */
    --bg-main: #fdfdfd;
    --bg-secondary: #f3f4f6;
    --text-primary: #001f3f;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 31, 63, 0.1);
    --glass-blur: 15px;
    --card-shadow: 0 10px 30px -10px rgba(0, 31, 63, 0.1);
    --hover-shadow: 0 20px 50px -12px rgba(184, 134, 11, 0.2);
    
    --radius-lg: 32px;
    --radius-md: 16px;
    --radius-full: 9999px;
}

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

body {
    font-family: 'Work Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, b, strong {
    font-family: 'Newsreader', serif;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

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

/* --- Navigation --- */
.header-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    transition: all 0.4s ease;
}

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-primary);
}

.btn-premium {
    background: var(--gold-gradient);
    color: white !important;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px -5px rgba(184, 134, 11, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 30px -10px rgba(59, 130, 246, 0.4);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(99, 102, 241, 0.05), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    color: var(--brand-primary);
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.text-gradient {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 580px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-outline {
    background: white;
    color: var(--brand-primary);
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.02);
    border-color: var(--brand-primary);
    transform: translateY(-2px);
}

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

.main-visual {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-visual:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    bottom: -30px;
    left: -20px;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}

.pdf-container-card {
    padding: 1.5rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* --- Features Section --- */
.section {
    padding: 8rem 0;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-top: 1rem;
    letter-spacing: -0.03em;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--card-shadow);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--hover-shadow);
    border-color: var(--brand-primary);
}

.feature-icon {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--brand-primary);
    transition: 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--brand-primary);
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* --- Stats Counter --- */
.stats {
    background: var(--text-primary);
    padding: 6rem 0;
    color: white;
    border-radius: var(--radius-lg);
    margin-bottom: 8rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* --- Footer --- */
footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--bg-secondary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-secondary);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- WhatsApp Float --- */
.wpp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wpp-float:hover {
    transform: scale(1.15) rotate(5deg);
}

.wpp-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.wpp-icon img {
    width: 32px;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; text-align: center; padding-top: 40px; }
    .hero-title { font-size: 2.8rem; }
    .hero-desc { margin: 0 auto 2.5rem auto; }
    .hero-btns { justify-content: center; flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .stat-item h2 { font-size: 2.5rem; }
}

.crm-badge {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--text-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    border: 1px solid var(--brand-primary);
    z-index: 1001;
    transition: 0.3s;
}

.crm-badge:hover {
    background: var(--brand-primary);
    transform: translateX(-5px);
}
/* --- Catalog Portal Grid --- */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.catalog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--brand-primary);
}

.catalog-thumb {
    height: 200px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.catalog-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.05));
}

.catalog-info {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.catalog-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.catalog-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.btn-view {
    width: 100%;
    background: var(--gold-gradient);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 20px -5px rgba(184, 134, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-view:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeInUp 0.8s forwards;
}
