:root {
    /* Google Studio Modern Palette (Brescia v4.6.5) */
    --primary: #6366f1; /* Indigo */
    --secondary: #4f46e5; /* Deep Indigo */
    --accent: #8b5cf6; /* Modern Purple */
    --background: #f8fafc;
    --surface: #ffffff;
    --ink: #1e293b;
    --sunset: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
    --glass: rgba(255, 255, 255, 0.9);
    
    /* Fonts */
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
    --font-title: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.highlight {
    font-weight: 400;
    opacity: 0.6;
    margin-left: 5px;
}

/* Header & Glassmorphism */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.6rem;
    font-weight: 900;
    color: white;
    font-family: var(--font-title);
}

.logo-trends {
    font-weight: 300;
    opacity: 0.7;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.user-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-align: right;
}

.user-info {
    font-size: 0.75rem;
}

.user-name {
    font-weight: 800;
    display: block;
}

.user-role {
    opacity: 0.6;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
}

.logout-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.logout-icon:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Slider Base */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: var(--ink);
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
:root {
    /* Artisanal Scoop B2B Premium Palette (Brescia v5.0) */
    --primary: #001f3f; /* Deep Navy */
    --secondary: #B8860B; /* Gold Premium */
    --accent: #B8860B;
    --background: #fdfdfd;
    --surface: #ffffff;
    --ink: #001f3f;
    --sunset: linear-gradient(135deg, #001f3f 0%, #003366 100%);
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #daa520 100%);
    --glass: rgba(255, 255, 255, 0.98);
    
    /* Fonts: Editorial Premium */
    --font-main: 'Work Sans', system-ui, -apple-system, sans-serif;
    --font-title: 'Newsreader', serif;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--background);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: none; /* Editorial style uses normal case or serif caps */
}

.highlight {
    font-weight: 400;
    opacity: 0.6;
    margin-left: 5px;
}

/* Header & Glassmorphism */
header {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-title);
    letter-spacing: -1px;
}

.logo-trends {
    font-weight: 300;
    opacity: 0.7;
    font-size: 1.4rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.user-status {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-align: right;
}

.user-info {
    font-size: 0.75rem;
}

.user-name {
    font-weight: 800;
    display: block;
}

.user-role {
    opacity: 0.6;
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 600;
}

.logout-icon {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.logout-icon:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Slider Base */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: var(--ink);
    color: white;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    opacity: 0.5; filter: brightness(0.7);
    transition: transform 10s linear;
}

.hero-slide.active .hero-image {
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    font-size: 5.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.btn-white {
    background: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Video Section Badge */
.saiba-badge {
    color: var(--primary);
    font-weight: 900;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    display: block;
}

/* Buttons */
.btn-primary {
    background: var(--gold-gradient);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(99, 102, 241, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--ink);
    padding: 1.2rem 3rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    display: inline-block;
    transition: all 0.3s;
}

/* Glass Cards (Trends) */
.trends {
    padding: 10rem 0;
    background: var(--background);
}

.trends h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--ink);
}

.trends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.trend-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.trend-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

/* AI News Section */
.ai-section {
    background: var(--ink);
    color: white;
    padding: 8rem 0;
}

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

.news-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.news-card:hover {
    background: rgba(255,255,255,0.1);
}

/* WhatsApp Utility */
.wpp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
    z-index: 1000;
}

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

.animate {
    animation: fadeInUp 0.8s forwards;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}
/* Events Module 2026 (Studio Grid) */
.events-section {
    padding: 8rem 0;
    background: #f8fafc;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.event-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(99,102,241,0.15);
}

.event-image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.event-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.event-card:hover .event-image-wrapper img {
    transform: scale(1.1);
}

.event-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(0, 31, 63, 0.3);
    z-index: 2;
}

.event-body {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-category {
    font-size: 0.75rem;
    font-weight: 800;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
}

.event-body h3 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.2rem;
    color: var(--ink);
}

.event-body p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.event-footer {
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-event {
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-event:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .events-grid { grid-template-columns: 1fr; }
}
.hero-content h1, .hero-content p { text-shadow: 0 5px 25px rgba(0,0,0,0.8) !important; }

/* Shop Style Components */
.shop-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.shop-card-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    background: #f1f5f9;
    object-fit: contain;
    padding: 10px;
}

.shop-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    font-family: var(--font-title);
}

.shop-card-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-shop-details {
    margin-top: auto;
    background: var(--background);
    color: var(--primary);
    padding: 0.6rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    border: 1px solid rgba(99, 102, 241, 0.2);
    transition: all 0.2s;
}

.shop-card:hover .btn-shop-details {
    background: var(--primary);
    color: white;
}
