/* 
  Refatoração do Tema ATLINK - Design Corporativo
*/

:root {
    /* Paleta Principal */
    --color-brand-green: #184530;       /* Verde escuro principal (Hero, Navbar) */
    --color-brand-green-dark: #123324;  /* Para hover */
    --color-brand-green-light: #205c40; /* Para backgrounds mais claros */
    --color-brand-yellow: #f0b530;      /* Amarelo botões e destaques */
    --color-brand-yellow-hover: #dba62c;
    
    /* Fundo e Texto */
    --color-bg-light: #F4F6F5;          /* Fundo seção contato e produtos */
    --color-bg-white: #FFFFFF;          /* Fundo branco padrão */
    --color-bg-dark: #141A18;           /* Footer */
    
    --color-text-dark: #1E1E1E;
    --color-text-gray: #666666;
    --color-text-light: #F9F9F9;
    
    /* Fontes */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Outros */
    --transition: 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-gray);
    background-color: var(--color-bg-white);
    line-height: 1.6;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.text-white { color: #FFF !important; }
.text-green { color: var(--color-brand-green) !important; }
.text-yellow { color: var(--color-brand-yellow) !important; }
.text-dark { color: var(--color-text-dark) !important; }
.bg-light { background-color: var(--color-bg-light) !important; }
.mt-4 { margin-top: 1rem; }
.full-width { width: 100%; display: block; text-align: center; }

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 80px 0;
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text-gray);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.section-desc {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 40px;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-yellow {
    background-color: var(--color-brand-yellow);
    color: #111;
}
.btn-yellow:hover {
    background-color: var(--color-brand-yellow-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-brand-green-light);
    color: #FFF;
}
.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-outline-dark {
    background-color: transparent;
    border: 1px solid #CCC;
    color: var(--color-text-dark);
}
.btn-outline-dark:hover {
    border-color: var(--color-brand-green);
    color: var(--color-brand-green);
    background-color: rgba(24, 69, 48, 0.05);
}

.btn-dark {
    background-color: var(--color-brand-green);
    color: #FFF;
}
.btn-dark:hover {
    background-color: var(--color-brand-green-dark);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    background-color: var(--color-brand-green);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
    display: flex;
    align-items: baseline;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
}
.logo-at { 
    color: #FFF; 
    transition: color var(--transition);
}
.logo-link { color: var(--color-brand-yellow); }

.nav-menu {
    display: flex;
    gap: 32px;
}
.nav-link {
    color: var(--color-text-light);
    font-size: 0.95rem;
}
.nav-link:hover {
    color: var(--color-brand-yellow);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #FFF;
    cursor: pointer;
    transition: color var(--transition);
}

/* Hero */
.hero {
    color: #FFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: -30vh;
    left: 0;
    width: 100%;
    height: 160vh;
    object-fit: cover;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
    transform: translate3d(0,0,0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(24, 69, 48, 0.65) 0%, rgba(18, 51, 36, 0.45) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 550px;
}

.hero-content .badge {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--color-brand-yellow);
    color: var(--color-brand-yellow);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    color: #FFF;
    font-size: 3.5rem;
    margin-bottom: 24px;
}
.hero-title .highlight {
    color: var(--color-brand-yellow);
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.stat-item h4 {
    color: var(--color-brand-yellow);
    font-size: 1.5rem;
    margin-bottom: 4px;
}
.stat-item p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

/* Hero Image/Mockup placeholder */
.mockup-circle {
    width: 500px;
    height: 500px;
    background-color: var(--color-brand-green-light);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.platform-mockup {
    width: 80%;
    background: #FFF;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    color: var(--color-text-dark);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 12px;
}

.mockup-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #F5F5F5;
    font-size: 0.95rem;
}

/* Sobre */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.building-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
}

.about-text {
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.benefits-list {
    margin-top: 32px;
}
.benefits-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--color-text-dark);
}
.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(24, 69, 48, 0.1);
    color: var(--color-brand-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.product-card {
    background: #FFF;
    border-radius: var(--border-radius-lg);
    border: 1px solid #EAEAEA;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-text-dark);
    color: #FFF;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    z-index: 2;
}

.product-badge.yellow {
    background: var(--color-brand-yellow);
    color: #111;
}

.product-image-container {
    height: 260px;
    background-color: var(--color-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 32px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    margin-bottom: 12px;
}
.product-info p {
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.product-info ul {
    margin-bottom: 32px;
    flex: 1;
}

.product-info ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--color-text-dark);
}

.product-info ul li i {
    color: var(--color-brand-green);
    width: 18px;
}

.product-card-green {
    background-color: var(--color-brand-green);
    border-color: var(--color-brand-green);
}
.product-card-green .product-info h3 { color: #FFF; }
.product-card-green .product-info p { color: rgba(255,255,255,0.8); }
.product-card-green .product-info ul li { color: #FFF; }

.platform-icon-large {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-yellow);
}

/* Como Funciona */
.how-it-works-section {
    background-color: var(--color-brand-green);
    color: #FFF;
    text-align: center;
}
.how-it-works-section .section-title {
    color: #FFF !important;
}
.how-it-works-section .section-desc {
    color: rgba(255,255,255,0.8);
    margin: 0 auto 60px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

/* Linha conectando os itens */
.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    z-index: 1;
}

.timeline-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-brand-green-dark);
    border: 2px solid var(--color-brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand-yellow);
    margin-bottom: 24px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--color-brand-yellow);
    color: #111;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.timeline-item h4 {
    color: #FFF;
    margin-bottom: 12px;
}
.timeline-item p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* Contato */
.contact-section {
    background-color: var(--color-bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-card {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    background: #FFF;
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid #EAEAEA;
}

.info-card i {
    color: var(--color-brand-green);
}
.info-card h5 {
    margin-bottom: 4px;
    font-size: 1rem;
}
.info-card p {
    color: var(--color-text-gray);
    font-size: 0.95rem;
}

.btn-whatsapp-large {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.contact-form-card {
    background: #FFF;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid #EAEAEA;
}
.contact-form-card h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}
input, select, textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #DDD;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-brand-green);
}

.btn-submit {
    margin-top: 16px;
    justify-content: space-between;
}

/* Footer */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-text {
    margin-top: 20px;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    max-width: 300px;
}

.footer-links-col h4 {
    color: #FFF;
    margin-bottom: 24px;
}

.footer-links-col ul li {
    margin-bottom: 12px;
}
.footer-links-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}
.footer-links-col ul li a:hover {
    color: var(--color-brand-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.social-icons {
    display: flex;
    gap: 16px;
}
.social-icons a {
    color: #FFF;
}
.social-icons a:hover {
    color: var(--color-brand-yellow);
}

/* Responsividade */
@media (max-width: 992px) {
    .hero-container, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title { font-size: 2.8rem; }
    
    .mockup-circle {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 40px auto 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline::before { display: none; }
    .timeline {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-brand-green);
        padding: 24px;
        gap: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        animation: slideDownMenu 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
        z-index: 1001;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translate3d(0, -10px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    .navbar .nav-menu.active .nav-link {
        width: 100%;
        font-size: 1.1rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 8px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: block;
    }

    .navbar .nav-menu.active .nav-link:hover {
        color: var(--color-brand-yellow) !important;
    }

    .navbar .nav-menu.active .nav-link:last-child {
        border-bottom: none;
    }

    .navbar .nav-menu.active .nav-dropdown {
        width: 100%;
        display: block;
    }

    .navbar .nav-menu.active .nav-dropdown .dropdown-content {
        position: static;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: none;
        border-radius: 8px;
        margin-top: 10px;
        padding: 8px 16px;
        display: none;
    }

    .navbar .nav-menu.active .nav-dropdown.open .dropdown-content {
        display: flex;
        flex-direction: column;
    }

    .navbar .nav-menu.active .nav-dropdown .dropdown-content a {
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar .nav-menu.active .nav-dropdown .dropdown-content a:last-child {
        border-bottom: none;
    }

    .navbar .nav-menu.active .nav-dropdown .dropdown-content a:hover {
        background-color: transparent;
        color: var(--color-brand-yellow) !important;
    }

    .nav-dropdown.open .dropdown-content {
        display: flex !important;
        flex-direction: column;
    }

    .nav-link i, .nav-btn i {
        transition: transform 0.3s ease;
    }

    .nav-btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }

    .mobile-toggle i {
        width: 24px;
        height: 24px;
        display: block;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Se��o Parceiros */
.partners-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.partners-section .section-title {
    text-align: center;
}

.partners-section .section-desc {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.slider-container::before,
.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255,255,255,0) 100%);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255,255,255,0) 100%);
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 35s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    flex-shrink: 0;
}

.partner-icon {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    position: relative;
}

.partner-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.partner-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-name {
    font-weight: 600;
    color: #1c2b23;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 768px) {
    .partner-icon {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
    .partner-item {
        width: 120px;
    }
    .slider-track {
        gap: 20px;
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 10px)); }
    }
}

/* Efeito suave para o Hero Video */
.hero-video-wrapper {
    animation: fadeInVideo 2.5s ease-in-out forwards;
}

@keyframes fadeInVideo {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --- Cinematic Elements & Enhancements --- */

/* 1. Efeitos de Revelação Suave (Scroll) */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* 2. Efeito Vignette Cinematográfico no Hero */
.hero-overlay {
    background: linear-gradient(135deg, rgba(24, 69, 48, 0.65) 0%, rgba(18, 51, 36, 0.45) 100%),
                radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.7) 100%) !important;
}

/* 3. Efeito Ken Burns (Zoom suave) nos Cards e Hover nos Cards */
.product-image-container {
    overflow: hidden;
}
.product-image {
    transition: transform 1.2s ease-out;
}
.product-card:hover .product-image {
    transform: scale(1.08);
}
.product-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* 4. Navbar Glassmorphism no scroll */
.navbar {
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    border-bottom: 1px solid rgba(24, 69, 48, 0.1);
}
.navbar.scrolled .nav-link {
    color: var(--color-brand-green) !important;
}
.navbar.scrolled .nav-link:hover {
    color: var(--color-brand-yellow-hover) !important;
}
.navbar.scrolled .logo-at {
    color: var(--color-brand-green) !important;
}
.navbar.scrolled .mobile-toggle {
    color: var(--color-brand-green) !important;
}

/* 5. Timeline Hover Effects */
.timeline-item {
    transition: transform 0.3s ease;
}
.timeline-item:hover {
    transform: translateX(10px);
}

/* --- Additional Premium & Performance Enhancements --- */

/* Custom premium scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #0d1210;
}
::-webkit-scrollbar-thumb {
    background: var(--color-brand-green);
    border-radius: 5px;
    border: 2px solid #0d1210;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-brand-yellow);
}

/* Custom premium selection */
::selection {
    background-color: var(--color-brand-green);
    color: var(--color-brand-yellow);
}

/* Snappy and smooth transitions */
.nav-link, .btn, .product-card, .info-card, .timeline-item, .partner-icon, input, select, textarea {
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

/* Slide underline effect for Nav Links */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-brand-yellow);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Input elements focus halo */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(24, 69, 48, 0.15) !important;
}

/* Info card hover scale-up and outline active */
.info-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--color-brand-green-light);
}

/* Glow and highlight for active green product cards */
.product-card-green:hover {
    border-color: var(--color-brand-yellow) !important;
    box-shadow: 0 20px 45px rgba(24, 69, 48, 0.35), 0 0 25px rgba(240, 181, 48, 0.12) !important;
}

/* Optimize scroll performance with 3D translations */
.reveal {
    transform: translate3d(0, 30px, 0);
}
.reveal.active {
    transform: translate3d(0, 0, 0);
}
