
:root {
    --primary-color: #0056b3;
    --secondary-color: #ffc107;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    height: 100px;
}

.navbar-brand img {
    height: 70px;  /* Increased from 50px */
}

.nav-link {
    color: black;
    font-weight: 700;
    font-size: 16px ;  /* Bigger font size */
    padding: 0.5rem 1rem;  /* More padding around links */
}

.navbar .btn {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}

.navbar .fa-search,
.navbar .fa-user,
.navbar .fa-shopping-cart {
    font-size: 1.3rem;  /* Bigger icons */
}

.navbar-toggler {
    padding: 0.75rem;  /* Bigger toggle button */
}

.hero-carousel {
    overflow: hidden;
    margin: 0 auto;
    width: 90%;
    padding-bottom: 40px;
}

.hero-carousel img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.why-us {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.novidades {
    padding: 4rem 0;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark-color);
}

.product-price {
    font-weight: 700;
    color: var(--primary-color);
}

.btn-comprar {
    background-color: var(--primary-color);
    color: white;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    border-radius: 0 0 5px 5px;
}

.btn-comprar:hover {
    background-color: #004494;
    color: white;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    margin-right: 15px;
}

.footer-links a:hover {
    color: white;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}
.porque{
    font-weight: 700;
}
.porque h3{
    font-weight: 700;
}
.search-box {
    position: relative;
    height: 40px;
    margin-right: 1rem;
}

.search-input {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    padding: 0;
    border: none;
    border-radius: 20px;
    transition: all 0.6s ease;
    background: #f0f0f0;
    outline: none;
}

.search-btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 40px;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.search-box:hover .search-input,
.search-input:focus {
    width: 240px;
    padding: 0 40px 0 20px;
}
.mega-dropdown {
    position: static !important;
}

.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: white;
    padding: 2rem 0;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu ul li {
    margin-bottom: 0.5rem;
}

.mega-menu ul li a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.mega-menu ul li a:hover {
    color: var(--primary-color);
}

.products-grid {
    background-color: #f8f9fa;
}

.product-card {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

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

.product-card img {
    transition: transform 0.3s ease;
    object-fit: contain;
    height: 200px;
    width: 100%;
}

.product-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    background: white;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-description {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2980b9;
}

.btn-primary {
    background: #3498db;
    border: none;
    border-radius: 6px;
    padding: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-primary:disabled {
    background: #bdc3c7;
}

.badge {
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: 20px;
}

.badge.bg-warning {
    background-color: #f1c40f !important;
    color: #000;
}

.badge.bg-danger {
    background-color: #e74c3c !important;
}

.product-card {
    height: 100%;
    border-radius: 8px;
    border: 1px solid #eee;
}

.navbar .container {
    position: relative;
}

.navbar-nav.center-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 991.98px) {
    .navbar-nav.center-nav {
        position: static;
        transform: none;
    }
}

.filter-sidebar {
    width: 280px;
    position: fixed;
    left: -280px;
    top: 100px;
    bottom: 0;
    background: white;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.filter-sidebar.active {
    left: 0;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

.sort-dropdown {
    min-width: 200px;
}

.filter-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.filter-overlay.active {
    display: block;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: var(--primary-color);
}

.breadcrumb-item a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb {
    margin-bottom: 2rem;
    padding: 0.5rem 0;
}
