:root {
    --honey-primary: #FFA500;
    --honey-secondary: #FFB347;
    --honey-light: #FFD166;
    --honey-dark: #E68A00;
    --honey-bg: #FFF9E6;
    --honey-card: #FFFBF0;
    --honey-border: #FFE4A1;
    --honey-text: #5A3921;
    --honey-gradient: linear-gradient(135deg, #FFA500 0%, #FFB347 50%, #FFD166 100%);
}

body {
    background-color: var(--honey-bg);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--honey-text);
    overflow-x: hidden;
}

.honey-navbar.sticky-top {
    background: var(--honey-gradient) !important;
    box-shadow: 0 4px 20px rgba(255, 179, 71, 0.3);
    padding: 0.8rem 1rem;
    position: -webkit-sticky; 
    position: sticky;
    top: 0;
    z-index: 1030;
    overflow: hidden;
}

.honey-navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}
.navbar-brand {
    font-weight: bold;
    color: white !important;
    position: relative;
    margin-left: 0;
    padding-left: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: white !important;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 8rem 0 5rem;
    background: var(--honey-bg);
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--honey-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--honey-text);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-image-stack {
    position: relative;
    display: inline-block;
    perspective: 1200px;
}

.hero-dashboard {
    width: 100%;
    border-radius: 20px;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--honey-border);
    background: white;
}
.orange-bg-section {
    padding: 5rem 0;
    background: var(--honey-gradient);
    position: relative;
    overflow: hidden;
}

.orange-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><path d="M30,15 L70,15 L85,50 L70,85 L30,85 L15,50 Z" fill="white"/></svg>');
    background-size: 80px;
}

.orange-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.orange-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.traceability-section {
    padding: 5rem 0;
}

.traceability-process {
    position: relative;
    padding: 3rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--honey-primary);
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.process-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 6px 18px rgba(255, 179, 71, 0.15);
    flex: 1;
    backdrop-filter: blur(10px);
}

.process-title {
    font-weight: 700;
    color: var(--honey-text);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-description {
    color: #7a5c2e;
    font-size: 1rem;
    margin: 0;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 5rem 0;
}

.partner-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(255, 179, 71, 0.15);
    border: 2px solid var(--honey-border);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.partner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--honey-gradient);
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 179, 71, 0.25);
}

.partner-logo-container {
    margin-bottom: 1.5rem;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    max-height: 80px;
    max-width: 180px;
    transition: all 0.3s ease;
}

.partner-name {
    font-weight: 700;
    color: var(--honey-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partner-description {
    color: #7a5c2e;
    line-height: 1.6;
    margin: 0;
}

/* ===== MOBILE APP SECTION ===== */
.mobile-app-section {
    padding: 6rem 0 5rem;
    background: var(--honey-bg);
    position: relative;
}

.mobile-app-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--honey-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-app-subtitle {
    font-size: 1.2rem;
    color: var(--honey-text);
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-weight: 500;
}

.mobile-app-description {
    font-size: 1rem;
    color: #7a5c2e;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.mobile-app-image-container {
    position: relative;
    display: inline-block;
    max-width: 250px; 
}

.mobile-app-image {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--honey-border);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mobile-app-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

/* ===== HONEY BUTTONS ===== */
.honey-btn {
    background: white;
    border: none;
    color: var(--honey-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
    font-size: 1.1rem;
}

.honey-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.4);
    color: var(--honey-dark) !important;
    background: white;
}

.honey-btn-outline {
    background: transparent;
    border: 2px solid var(--honey-primary);
    color: var(--honey-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

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

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
}

.cta-buttons .btn {
    min-width: 160px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--honey-text);
    color: white;
    padding: 1rem 0 1rem;
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: var(--honey-light);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title, .mobile-app-title, .partners-title {
        font-size: 2rem;
    }
    
    .process-step, .process-step:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .process-icon {
        margin: 0 auto 1.5rem;
    }
    
    .mobile-app-image-container {
        max-width: 220px;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        text-align: center;
    }
    
    .partner-item {
        margin-bottom: 2rem;
    }
    
    .section-separator {
        padding: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .mobile-app-title, .partners-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}