html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* Sidebar Wrapper */
.sidebar {
    width: 260px;
    height: 100vh;
    transition: all 0.3s ease;
    z-index: 1045;
}

/* Sidebar Links Default */
.sidebar .nav-link {
    color: #4b5563;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar .nav-link i {
    color: #6b7280;
    transition: all 0.2s ease;
}

/* Sidebar Links Active/Hover */
.sidebar .nav-link.active,
.sidebar .nav-link:hover {
    background-color: #eff6ff !important;
    color: #2563eb !important;
    border-left: 3px solid #2563eb;
}

.sidebar .nav-link.active i,
.sidebar .nav-link:hover i {
    color: #2563eb !important;
}

/* Desktop Collapsed Mode */
@media (min-width: 768.1px) {
    .sidebar-collapsed .sidebar {
        margin-left: -260px;
        box-shadow: none;
    }
}

/* Mobile Off-Canvas */
.sidebar-overlay {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
    z-index: 1040;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -260px;
        top: 0;
        bottom: 0;
        background-color: white !important;
        box-shadow: 4px 0 10px rgba(0,0,0,0.15) !important;
    }

    .sidebar.show {
        left: 0;
    }

    .sidebar-overlay.show {
        visibility: visible;
        opacity: 1;
    }
}

.logo-text {
    letter-spacing: 0.5px;
}

.focus-ring:focus {
    box-shadow: 0 0 0 .25rem rgba(59, 130, 246, 0.25);
    border-color: #3b82f6;
    outline: 0;
}

/*.catalogo-container {
    padding: 20px;
    background: #f5f6fa;
    min-height: calc(100vh - 80px);
}

.search-box input {
    border-radius: 14px;
    border: 1px solid #d9deea;
    padding-left: 18px;
}

.search-box .btn {
    border-radius: 14px;
    padding: 0 24px;
}

.section-header h3 {
    color: #20233a;
}

.marca-card {
    display: block;
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e8ebf3;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    height: 100%;
}

    .marca-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        border-color: #d91f2d;
    }

.marca-card-body {
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.marca-img-wrap {
    width: 140px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    background: #fff;
    border-radius: 12px;
}

.marca-img {
    max-width: 140px;
    max-height: 100px;
    object-fit: contain;
}

.marca-title {
    font-size: 1rem;
    font-weight: 700;
    color: #26304a;
    text-transform: uppercase;
}

.promo-banner {
    border-radius: 18px;
    min-height: 130px;
    padding: 28px 24px;
    color: #fff;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #0b0b87 0%, #02024f 100%);
    box-shadow: 0 6px 20px rgba(6, 13, 79, 0.18);
}

    .promo-banner small {
        letter-spacing: 1px;
        opacity: .8;
    }

    .promo-banner h2 {
        margin: 8px 0 0 0;
        font-weight: 800;
    }

@@media (max-width: 768px) {
    .marca-card-body {
        height: 150px;
        padding: 14px;
    }

    .marca-img-wrap {
        width: 140px;
        height: 100px;
    }

    .marca-img {
        max-width: 140px;
        max-height: 100px;
    }

    .marca-title {
        font-size: .9rem;
    }

    .promo-banner h2 {
        font-size: 1.25rem;
    }
}*/