/* ===== LANDING PAGE RESPONSIVE STYLES ===== */
/* This file handles all landing page responsive behavior */

/* DESKTOP STYLES (769px and above) */
    @media (min-width: 769px) {
        /* Show desktop topbar */
        .landing-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--bg);
            border-bottom: 1px solid var(--black);
            border-left: 1px solid var(--black);
            border-right: 1px solid var(--black);
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
            padding: 12px 24px;
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 20px;
            z-index: 100;
            min-height: 90px;
        }


        .landing-header-brand {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            text-align: center;
            flex: 1;
            margin-bottom: 0;
        }

        .landing-header-logo-link {
            text-decoration: none;
            display: inline-block;
            padding-bottom: 10px;
        }

        .landing-header-logo-vertical {
            width: 100px;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .landing-header-logo-horizontal {
            width: 200px;
            display: block;
            margin: 0 auto;
            transition: transform 0.3s ease;
        }

        .landing-header-logo-link:hover .landing-header-logo-vertical,
        .landing-header-logo-link:hover .landing-header-logo-horizontal {
            transform: scale(1.02);
        }

        .landing-header-brand .brand-tagline {
            font-family: "Montserrat", sans-serif;;
            font-size: 14px;
            color: var(--black);
            margin: 10px 0 0 0;
            padding: 0;
            line-height: 1.4;
        }

        .landing-search-bar {
            flex: 0 0 280px;
            position: relative;
            margin-bottom: 4px;
        }

        .landing-search-bar input {
            width: 100%;
            padding: 10px 14px 10px 36px;
            border: none;
            border-radius: 20px;
            font-size: 14px;
            background: var(--subtle);
            color: var(--black);
            font-family: inherit;
        }

        .landing-search-bar input:focus {
            outline: none;
            background: var(--card-bg);
        }

        .landing-search-bar svg {
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: var(--muted);
            stroke: currentColor;
            stroke-width: 2;
        }

        .landing-sugestoes {
            position: absolute;
            top: calc(100% + 6px);
            left: 0;
            right: 0;
            background: var(--white);
            border: 1px solid var(--subtle);
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: none;
            max-height: 300px;
            overflow-y: auto;
        }

        .landing-sugestoes.ativo {
            display: block;
        }

        .landing-sugestao-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            border-bottom: 1px solid var(--subtle);
        }

        .landing-sugestao-item:last-child {
            border-bottom: none;
        }

        .landing-sugestao-item:hover {
            background: var(--card-bg);
        }

        .landing-sugestao-item-titulo {
            font-size: 14px;
            font-weight: 500;
            color: var(--black);
        }

        .landing-sugestao-item-sub {
            font-size: 12px;
            color: var(--muted);
        }

        .landing-header-buttons {
            display: flex;
            gap: 8px;
            flex: 0 0 auto;
            margin-bottom: 4px;
            text-align: center;
        }

        /*.landing-header-buttons a {*/
        /*    padding: 10px 14px 10px 36px;*/
        /*    font-size: 12px;*/
        /*    white-space: normal;*/
        /*}*/

        /* Adjust home container for fixed topbar */
        .home {
            padding-top: 140px;
        }
        .bottom-nav {
            display: none;
        }
        .bottom-nav a {
            display: none;
        }
    }
