.logo-container {
    text-align: center;
    padding: 1rem 0 0px 0px;
    background-color: rgba(255, 255, 255, 0.95);
}

.logo-container img {
    max-height: 140px;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.section-title i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #0066cc;
}

.product-card {
    margin: 0 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
}

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

.product-info {
    padding: 15px;
}

.product-title {
    font-weight: 600;
    margin-bottom: 5px;
    overflow: hidden;
}

.product-price {
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.category-section {
    margin-bottom: 3rem;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: rgb(0, 204, 68) !important;
}

.bi {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .carousel-inner {
        overflow: visible;
    }

    .carousel-inner .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin-left: -10px;
        margin-right: -10px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .carousel-inner .col-md-3 {
        flex: 0 0 80%;
        max-width: 80%;
        scroll-snap-align: start;
        padding-left: 5px;
        padding-right: 5px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    .product-card {
        margin: 0;
    }
}


.floating-btn-container {
    position: fixed;
    bottom: 20px;
    right: 10px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    z-index: 9999;
}

.main-floating-btn {
    border-radius: 50%;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgb(24, 255, 35), rgb(10, 204, 74));
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.main-floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.main-floating-btn:active {
    transform: translateY(1px);
}

.store-btn {
    background: linear-gradient(135deg, #f5f7fa, #e4e8eb);
    color: #2c3e50;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-width: 60px;
    text-align: center;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #e4e8eb, #d5d9dc);
}

.particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f5f5f7 0%, #e1e1e5 100%);
    overflow: hidden;
}

.particle {
    position: absolute;
    background-color: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

.container-fluid {
    background-color: rgba(255, 255, 255, 0.95);
    position: relative;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 102, 204, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .carousel-inner.mobile-adapted .row {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        padding-bottom: 15px;
        margin-right: -15px;
        margin-left: -15px;
    }

    .carousel-inner.mobile-adapted .col-md-3 {
        flex: 0 0 80%;
        max-width: 80%;
        margin-right: 10px;
        scroll-snap-align: start;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }
}

.badge-condicao {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 5px 10px;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 10px;
    z-index: 10;
}

.garantia-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 8px 12px;
}

.garantia-info span {
    font-size: 11px;
}

.product-price {
    color: #0066cc;
    font-weight: 700;
}

.parcelamento {
    font-size: 0.9rem;
}

.input-group .hide-arrow {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none;
}


.brindes-section {
    padding: 15px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brindes-toggle {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.brindes-toggle:hover {
    background-color: #e9f5ff !important;
}

.brindes-content {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-radius: 0 0 8px 8px;
}

.brindes-content li {
    padding: 5px 10px;
    transition: all 0.2s ease;
}

.brindes-content li:hover {
    background-color: #f8f9fa;
    padding-left: 12px;
}