/* ================================================================================
   ABI INSIGHT - TACTICAL GAMING WEBSITE STYLESHEET
   
   Project: Arena Breakout Infinite Gaming Resource Site
   Developer: Marcus Machado
   Purpose: Level 5 Full Stack Web Development Portfolio Project
   
   This stylesheet provides comprehensive styling for a responsive gaming website
   including navigation, hero sections, card layouts, galleries, and interactive elements.
   
   KEY CSS TECHNIQUES DEMONSTRATED:
   - CSS Custom Properties (CSS Variables) for maintainable theming
   - Flexbox and CSS Grid for modern responsive layouts
   - CSS-only mobile menu using checkbox hack (no JavaScript)
   - Pseudo-elements (::before, ::after) for decorative overlays
   - Position: fixed for sticky disclaimer banner
   - Transform and transition animations for smooth interactions
   - Media queries for mobile-first responsive design
   - Z-index layering for complex element stacking
   - Object-fit for responsive video backgrounds
   - Gradient backgrounds and box-shadows for depth
   
   TABLE OF CONTENTS:
   1. Global Styles & CSS Reset
   2. Top Disclaimer Banner
   3. Navigation Bar & Mobile Menu
   4. Hero Section with Video Background
   5. Section Titles & Typography
   6. Navigation Cards Grid
   7. Horizontal Scrolling Cards
   8. Footer & Social Media Icons
   9. Responsive Design (Media Queries)
   10. Utility Classes & Animations
   ================================================================================ */

/* ============================================
   1. GLOBAL STYLES & CSS RESET
   Establishes baseline styling and removes browser default margins/padding
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures padding and border are included in the element's total width and height */
}

/* Variable for the fixed top disclaimer height (Used to push the body content down) */
:root {
    --disclaimer-height: 50px;  /* Was 22px, now 50px - Ultra-compact height for mobile disclaimer banner */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    padding-top: var(--disclaimer-height); /* CRUCIAL: Pushes content below the fixed top banner */
}

/* ============================================
   TOP FIXED DISCLAIMER BANNER (ULTRA COMPACT)
   ============================================ */

.top-disclaimer-banner {
    position: fixed; /* Keeps the banner visible at the top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0d0d0d; /* Dark background matching the navbar */
    color: #909090; /* Subtle gray text */
    padding: 0.2rem 1rem; /* Compact vertical padding */
    text-align: center;
    z-index: 10001; /* High z-index to ensure it sits above the navbar */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); 
    border-bottom: 1px solid #1f1f1f;
}

.top-disclaimer-banner p {
    margin: 0;
    font-size: 0.75rem; /* Small font size for compactness */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.top-disclaimer-banner .warning-icon {
    margin-right: 3px; 
    color: #ffc107; /* Warning yellow */
}


/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background-color: #0d0d0d;
    padding: 0; /* Vertical padding is now handled by the container-fluid below */
    border-bottom: 1px solid #2a2a2a;
}

/* Restoring the original padding inside the container now that the navbar parent has 0 padding */
.navbar .container-fluid {
    padding: 1rem; 
    border-bottom: 1px solid #2a2a2a; 
}


.navbar-brand {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: scale(1.1) rotate(5deg); /* Hover animation for the logo icon */
}

.brand-icon {
    color: #28a745; /* Primary green accent color */
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.nav-icons {
    display: flex;
    gap: 1rem;
}

.btn-icon {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon:hover {
    color: #28a745;
    transform: scale(1.1);
}

.hamburger-icon svg {
    transition: all 0.3s ease;
}

/* Rotate hamburger when menu is open */
.menu-checkbox:checked ~ nav .hamburger-icon svg,
.menu-checkbox:checked ~ .navbar .hamburger-icon svg {
    transform: rotate(90deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    height: 60vh;
    /* Background with a dark linear gradient and a repeating diagonal pattern */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
                repeating-linear-gradient(45deg, #1a1a1a 0px, #1a1a1a 10px, #252525 10px, #252525 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    border-bottom: 3px solid #28a745;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.5; /* Makes the video subtle */
    object-fit: cover;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    z-index: 1; /* Dark overlay on top of the video */
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Radial gradients for a subtle "muzzle flash" or glow effect */
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    z-index: 2; /* Ensures content is visible above overlays */
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    /* Glow/Shadow effect using the green accent color */
    text-shadow: 0 0 20px rgba(40, 167, 69, 0.5), 2px 2px 8px rgba(0, 0, 0, 0.9);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: #28a745;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.btn-cta {
    background-color: #28a745;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-cta:hover {
    background-color: #34ce57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

.content-section {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid #2a2a2a;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: #ffffff;
    padding-left: 0.5rem;
    border-left: 4px solid #28a745; /* Green accent border on the left */
}

.section-title-btn {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    margin-bottom: 2rem;
    border-width: 3px;
    transition: all 0.3s ease;
    display: inline-block;
}

.section-title-btn:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

/* ============================================
   HORIZONTAL SCROLLING CARDS
   ============================================ */

.cards-container {
    display: flex;
    overflow-x: auto; /* Enables horizontal scrolling */
    gap: 1.2rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory; /* Makes cards snap into place when scrolling */
    -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar styling for the card container */
.cards-container::-webkit-scrollbar {
    height: 8px;
}

.cards-container::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 4px;
}

.cards-container::-webkit-scrollbar-thumb {
    background: #28a745;
    border-radius: 4px;
}

.card-horizontal {
    min-width: 300px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, #252525 0%, #1f1f1f 100%);
    border-radius: 10px;
    overflow: hidden;
    scroll-snap-align: start;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #2a2a2a;
}

.card-horizontal:hover {
    transform: translateY(-5px);
    border-color: #28a745;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.2);
}

.card-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #08c928 0%, #3a3a3a 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #28a745;
}

.card-image::after {
    content: none; 
    font-size: 2.5rem;
    opacity: 0.4;
    filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.3));
}

.map-image {
    background: linear-gradient(135deg, #08c928 0%, #3a3a3a 100%);
}

.map-image::after {
    content: none;
}

.gear-image {
    background: linear-gradient(135deg, #08c928 0%, #3a3a3a 100%);
}

.gear-image::after {
    content: none;
}
.intel-image {
    background: linear-gradient(135deg, #08c928 0%, #3a3a3a 100%);
}

.intel-image::after {
    content: none;
}

.badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #28a745;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.4);
    animation: pulse 2s infinite; /* Animation to draw attention */
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.badge-tier {
    display: inline-block;
    background: linear-gradient(90deg, #28a745 0%, #34ce57 100%);
    color: #ffffff;
    padding: 0.3rem 0.7rem;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 3px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-body-custom {
    padding: 1.2rem;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-custom {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-text-custom {
    font-size: 0.9rem;
    color: #b0b0b0;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    flex-grow: 1; /* Texto ocupa espaço disponível */
    margin-bottom: 1.2rem;
}

.btn-card {
    background: linear-gradient(145deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #ffffff;
    border: 1px solid #4a4a4a;
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 1px;
}

.btn-card:hover {
    background: linear-gradient(145deg, #28a745 0%, #34ce57 100%);
    border-color: #28a745;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.grid-cards {
    display: flex;
    gap: 1rem;
}

/* ============================================
    HOME BUTTON
   ============================================ */

.icon-btn-home {
    position: fixed;
    top: 90px;
    left: 0;
    z-index: 9998;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    border-radius: 0 50% 50% 0; /* Creates a pill shape on the left edge */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.5);
    padding-left: 8px;
}

.icon-btn-home:hover {
    width: 70px;
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
    box-shadow: 5px 5px 20px rgba(40, 167, 69, 0.6);
}

.icon-btn-home svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

/* ============================================
   CSS-ONLY MOBILE MENU
 ============================================ */

/* Hide the checkbox input completely (used for the menu toggle state) */
.menu-checkbox {
    display: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

/* Menu Overlay - starts hidden */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

/* Mobile Menu - starts off-screen */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Off-screen to the right */
    width: 300px;
    height: 100vh;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-left: 2px solid #28a745;
    z-index: 10000;
    transition: right 0.3s ease; /* Slide transition */
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    padding-top: 32px; /* 22px disclaimer + 10px spacing */
}

/* MAGIC: When checkbox is checked, slide menu into view */
.menu-checkbox:checked ~ .mobile-menu {
    right: 0;
}

/* MAGIC: When checkbox is checked, show overlay */
.menu-checkbox:checked ~ .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Alternative selectors for different HTML structures */
body:has(.menu-checkbox:checked) .mobile-menu {
    right: 0;
}

body:has(.menu-checkbox:checked) .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Header */
.mobile-menu-header {
    padding: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-title {
    color: #28a745;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.mobile-menu-close:hover {
    color: #28a745;
    transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    padding: 2rem 0;
}

.mobile-menu-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-menu-nav a:hover {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.2) 0%, transparent 100%);
    border-left-color: #28a745;
    padding-left: 2rem;
}

.mobile-menu-nav a.active {
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.3) 0%, transparent 100%);
    border-left-color: #28a745;
    color: #28a745;
}

/* ============================================
   FOOTER STYLES (ULTRA COMPACT)
   ============================================ */

.site-footer {
    /* Reduced vertical padding for a compact footer */
    background-color: #0d0d0d; 
    padding: 1.5rem 1rem 0.8rem; 
    border-top: 1px solid #2a2a2a;
    text-align: center;
    position: relative; 
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem; /* Reduced gap between elements (icons and text) */
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1f1f1f 0%, #0d0d0d 100%);
    border: 2px solid #2a2a2a;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(40, 167, 69, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    border-color: #28a745;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: #28a745;
    filter: drop-shadow(0 0 2px rgba(40, 167, 69, 0.5));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link:hover svg {
    fill: #34ce57;
    filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.8));
    transform: scale(1.1);
}

/* Copyright and Disclaimer Text */
.footer-text {
    font-size: 0.75rem; /* Smaller font size for compactness */
    color: #b0b0b0; 
    line-height: 1.3; /* Tighter line spacing */
    max-width: 600px;
}

.footer-text p {
    margin-bottom: 0.2rem; /* Reduced space between text paragraphs */
}

.footer-text .project-note {
    color: #888888;
    font-style: italic;
    font-size: 0.75rem; 
}


/* ============================================
   TABLET RESPONSIVE (768px+)
   ============================================ */

@media (min-width: 768px) {
    /* Adjusted disclaimer height for tablet/desktop */
    :root {
        --disclaimer-height: 26px;
    }
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .card-horizontal {
        min-width: 340px;
    }

    .card-vertical {
        min-width: 340px;
    }

    .content-section {
        padding: 3.5rem 2rem;
    }

    .card-image {
        height: 160px;
    }

    .card-image::after {
        font-size: 3.5rem;
    }

    .card-image-vertical {
        height: 160px;
    }

    .card-image-vertical::after {
        font-size: 2.5rem;
    }

    /* Footer adjustments for tablet */
    .site-footer {
        padding: 2.5rem 2rem 1rem; 
    }
    .footer-content {
        gap: 1rem;
    }
    .social-link {
        width: 50px;
        height: 50px;
    }
    .social-link svg {
        width: 22px; 
        height: 22px;
    }
}

/* ============================================
   DESKTOP RESPONSIVE (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .hero-section {
        height: calc(70vh - var(--disclaimer-height)); /* Compensa disclaimer */
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 4rem 4rem;
    }

    .card-horizontal {
    flex: 1 1 0;  /* ← Change auto to 0 */
    min-width: 0;
    max-width: 400px;
}

    .card-vertical {
        min-width: 380px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card-image {
        height: 180px;
    }

    .card-image::after {
        font-size: 4rem;
    }

    .card-image-vertical {
        height: 180px;
    }

    .card-image-vertical::after {
        font-size: 3rem;
    }
}

/* ============================================
   HIGH RESOLUTION (1280px+)
   ============================================ */

@media (min-width: 1280px) {
    .hero-section {
        height: calc(75vh - var(--disclaimer-height));
    }

    .hero-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
    }

    .content-section {
        padding: 5rem 6rem;
        max-width: 2400px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .cards-container {
        gap: 1.5rem;
        overflow-x: visible;
        justify-content: space-between;
    }

    .card-horizontal {
    flex: 1 1 0;  /* ← Change auto to 0 */
    min-width: 0;
    max-width: 400px;
}

    .card-vertical {
        min-width: 400px;
        flex: 0 0 400px;
    }

    .card-image {
        height: 200px;
    }

    .card-image::after {
        font-size: 4.5rem;
    }

    .card-image-vertical {
        height: 200px;
    }

    .card-image-vertical::after {
        font-size: 3.5rem;
    }
}
/* ========================================
   BUG FIX #2: Mobile Responsive Layout
   ======================================== */

/* Prevent horizontal overflow on all devices */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    max-width: 100vw; /* CRITICAL - prevents mobile layout breaking */
    overflow-x: hidden;
}

/* Ensure all major containers respect viewport width */
.navbar,
.hero-section,
.content-section,
.site-footer,
.mobile-menu {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Hero video specific fix */
.hero-video,
.hero-video video {
    max-width: 100vw;
    width: 100%;
    overflow: hidden;
}

/* Ensure no element exceeds viewport */
* {
    max-width: 100%;
}

/* Images and media */
img,
video,
iframe {
    max-width: 100%;
    height: auto;
}
/* Mobile CTA fix */
@media (max-width: 767px) {
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        letter-spacing: 1px;
        max-width: 90%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .btn-cta {
        font-size: 0.7rem;
        padding: 0.7rem 1.2rem;
    }
}
/* Desktop Navigation */
.desktop-nav {
    display: none; /* Hidden on mobile */
}

@media (min-width: 992px) {
    /* Show desktop nav */
    .desktop-nav {
        display: flex;
        gap: 2rem;
        align-items: center;
    }
    
    .desktop-nav .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 0.5rem 1rem;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }
    
    .desktop-nav .nav-link:hover {
        color: #28a745;
        border-bottom-color: #28a745;
    }
    
    .desktop-nav .nav-link.active {
        color: #28a745;
        border-bottom-color: #28a745;
    }
    
    /* Hide hamburger on desktop */
    .hamburger-icon {
        display: none !important;
    }
}
@media (min-width: 992px) and (max-width: 1279px) {
    .desktop-nav {
        gap: 1rem; /* Menos espaço */
    }
    
    .desktop-nav .nav-link {
        font-size: 0.8rem; /* Fonte menor */
        padding: 0.5rem 0.7rem; /* Padding menor */
    }
}