@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --magalu-blue: #0086ff;
    --magalu-dark-blue: #0077e6;
    --magalu-green: #009e49;
    --magalu-green-hover: #00863e;
    --text-primary: #2a2a2a;
    --text-secondary: #5c5c5c;
    --text-muted: #8c8c8c;
    --bg-light: #f4f7fa;
    --border-color: #e1e8ed;
    --success-color: #009e49;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.04);
    --border-radius: 8px;
    --border-radius-large: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.4;
}

/* 1. Dell Top Banner */
.dell-banner {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 11px;
    padding: 6px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #006bbd;
}

.dell-left {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    color: white;
}

.dell-left span {
    font-weight: 300;
    color: #0082f0;
}

.dell-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dell-right span {
    font-weight: 500;
}

.dell-btn {
    background-color: #555555;
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 9px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dell-btn:hover {
    background-color: #777777;
}

/* 2. Magalu Header */
header {
    background-color: var(--magalu-blue);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-top {
    max-width: 1250px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lu-avatar {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-container a {
    color: white;
    text-decoration: none;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -1px;
}

.location-box {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    cursor: pointer;
    background-color: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    transition: background-color 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
}

.location-box:hover {
    background-color: rgba(255,255,255,0.2);
}

.location-box i {
    font-size: 13px;
}

.location-box span {
    font-weight: 700;
}

.location-box small {
    display: block;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
}

.search-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-bar input {
    width: 100%;
    padding: 9px 40px 9px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    color: var(--text-primary);
}

.search-bar button {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--magalu-blue);
    font-size: 16px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-item {
    color: white;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.action-item i {
    font-size: 18px;
}

.user-login-info {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.2;
}

.user-login-info strong {
    font-size: 12px;
}

/* Secondary navbar */
.nav-categories {
    background-color: var(--magalu-dark-blue);
    font-size: 12px;
}

.nav-categories-content {
    max-width: 1250px;
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-categories-content a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-categories-content a:hover {
    text-decoration: underline;
}

/* Main Container */
.page-container {
    max-width: 1250px;
    margin: 15px auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: var(--magalu-blue);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* 3-Column Layout Grid */
.product-workspace {
    display: grid;
    grid-template-columns: 1fr 1fr 0.8fr;
    gap: 25px;
    background: white;
    border-radius: var(--border-radius-large);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

/* COLUMN 1: MEDIA GALLERY */
.media-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.main-image-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
    width: 100%;
    aspect-ratio: 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.main-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Overlays on main image */
.btn-overlay-heart {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magalu-blue);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.btn-overlay-share {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--magalu-blue);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.play-overlay {
    position: absolute;
    background-color: rgba(255,255,255,0.7);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Carousel indicators */
.carousel-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #cbd5e0;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: var(--text-secondary);
}

/* Thumbnails list */
.media-thumbs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.thumb-box {
    width: 60px;
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.thumb-box.active {
    border-color: var(--magalu-blue);
    box-shadow: 0 0 0 2px rgba(0, 134, 255, 0.15);
}

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

.thumb-video-icon {
    position: absolute;
    font-size: 14px;
    color: var(--magalu-blue);
    background-color: rgba(255,255,255,0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    color: white;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* COLUMN 2: PRODUCT INFO & VARIANTS */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.badge-full {
    background-color: var(--magalu-blue);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-style: italic;
    align-self: flex-start;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.rating-row i {
    color: #ffb100;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
}

.variants-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.variant-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.variant-label strong {
    color: var(--text-primary);
}

.color-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.color-swatch {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.color-swatch.active {
    border-color: var(--magalu-blue);
    box-shadow: 0 0 0 2px rgba(0, 134, 255, 0.15);
}

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

/* Color Filters Simulation */
.filter-white { filter: brightness(1.7) grayscale(1); }
.filter-camo { filter: sepia(0.5) hue-rotate(60deg) saturate(1.4); }
.filter-red { filter: hue-rotate(330deg) saturate(1.8); }
.filter-black { filter: none; }
.filter-blue { filter: hue-rotate(190deg) saturate(1.3); }
.filter-sand { filter: sepia(0.5) brightness(1.2) contrast(0.9) hue-rotate(-10deg); }
.filter-orange { filter: hue-rotate(25deg) saturate(2) brightness(0.95); }
.filter-purple { filter: hue-rotate(260deg) saturate(1.5) brightness(0.85); }

.voltage-options {
    display: flex;
    gap: 8px;
}

.voltage-btn {
    border: 2px solid var(--magalu-blue);
    color: white;
    background-color: var(--magalu-blue);
    border-radius: 20px;
    padding: 6px 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.seller-row {
    font-size: 12px;
    color: var(--text-secondary);
}

/* COLUMN 3: STICKY CHECKOUT */
.checkout-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checkout-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-large);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.checkout-price-card {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.price-pix-row {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
}

.price-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-value .cents {
    font-size: 15px;
    vertical-align: super;
    margin-left: 1px;
}

.price-suffix {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.badge-discount {
    background-color: #e5f7ed;
    color: var(--magalu-green);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    margin-left: 6px;
    display: inline-block;
}

.price-card-installments {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.payment-options-link {
    font-size: 12px;
    color: var(--magalu-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 8px;
}

/* Shipping Delivery Widget */
.delivery-widget {
    background-color: #f7fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.delivery-location {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.delivery-location a {
    color: var(--magalu-blue);
    text-decoration: none;
}

.delivery-sub {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: -4px;
}

.delivery-estimate {
    display: flex;
    gap: 8px;
    font-size: 12px;
    margin-top: 4px;
    border-top: 1px solid var(--border-color);
    padding-top: 8px;
}

.delivery-estimate i {
    color: var(--text-secondary);
    margin-top: 2px;
}

.delivery-text strong {
    color: var(--text-primary);
}

.delivery-price-free {
    color: var(--magalu-green);
    font-weight: 700;
    margin-left: auto;
}

/* Action Buttons */
.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.btn-buy-now {
    width: 100%;
    background-color: var(--magalu-green);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.btn-buy-now:hover {
    background-color: var(--magalu-green-hover);
}

.btn-buy-later {
    width: 100%;
    background-color: white;
    color: var(--magalu-green);
    border: 1px solid var(--magalu-green);
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-buy-later:hover {
    background-color: #f0fdf4;
}

/* Full info strip */
.full-banner-strip {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
    cursor: pointer;
    margin-top: 15px;
}

.full-strip-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.full-strip-left img {
    height: 16px;
}

.full-banner-strip i {
    color: var(--magalu-blue);
}

/* Product details section */
.details-section {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 25px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table td {
    padding: 10px 15px;
    font-size: 13px;
}

.specs-table td.spec-name {
    font-weight: 600;
    color: var(--text-secondary);
    width: 30%;
}

/* Toast Message */
.toast-msg {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #2c3e50;
    color: white;
    padding: 14px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.toast-msg.show {
    opacity: 1;
    transform: translateY(0);
}

.toast-msg i {
    color: var(--magalu-green);
    font-size: 18px;
}

/* Recommended Products Styling */
.recommended-section {
    margin-top: 25px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.recommended-card {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 15px;
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.recommended-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.rec-img-wrapper {
    width: 100%;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.rec-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 36px;
}

.rec-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: var(--text-secondary);
}

.rec-rating i {
    color: #ffb100;
}

.rec-price {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.rec-price-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.rec-price-sub {
    font-size: 11px;
    color: var(--text-secondary);
}

/* Trust Badges Styling */
.trust-badges-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: white;
    border-radius: var(--border-radius-large);
    padding: 20px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 25px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-item i {
    font-size: 28px;
    color: var(--magalu-blue);
}

.badge-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.badge-item p {
    font-size: 11px;
    color: var(--text-secondary);
    margin-top: 2px;
}

/* Q&A Section Styling */
.qa-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qa-item {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.qa-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.qa-question {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.qa-answer {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Reviews Summary Styling */
.reviews-summary-container {
    display: flex;
    gap: 30px;
    background-color: #f7fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.summary-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    min-width: 150px;
    flex: 1;
}

.big-rating {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.summary-stars {
    color: #ffb100;
    font-size: 14px;
}

.total-reviews-count {
    font-size: 12px;
    color: var(--text-secondary);
}

.summary-middle {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 250px;
}

.bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

.bar-label {
    width: 60px;
    text-align: right;
}

.bar-bg {
    flex: 1;
    height: 8px;
    background-color: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background-color: #ffb100;
    border-radius: 4px;
}

.bar-percent {
    width: 35px;
}

.summary-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 150px;
}

.filter-badge {
    transition: background-color 0.2s, color 0.2s;
}

.filter-badge:hover {
    background-color: #e2e8f0;
}

.filter-badge.active:hover {
    background-color: var(--magalu-blue);
}

.btn-feedback-yes:hover,
.btn-feedback-no:hover {
    background-color: #f7fafc !important;
    border-color: var(--text-secondary) !important;
}

/* Responsividade */
@media (max-width: 1024px) {
    .product-workspace {
        grid-template-columns: 1.2fr 1fr;
    }
    .checkout-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .product-workspace {
        display: flex;
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    .media-column, .info-column, .checkout-column {
        width: 100%;
    }
    .main-image-wrapper {
        padding: 10px;
        aspect-ratio: 1.1;
    }
    .media-thumbs {
        gap: 6px;
    }
    .thumb-box {
        width: 50px;
        height: 50px;
    }
    .checkout-column {
        grid-column: span 1;
    }
    .dell-banner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
    .header-top {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: 
            "logo location actions"
            "search search search";
        gap: 12px;
        padding: 12px 15px;
    }
    .logo-block {
        grid-area: logo;
    }
    .location-box {
        grid-area: location;
        margin: 0 auto;
        padding: 4px 10px;
        font-size: 10px;
    }
    .header-actions {
        grid-area: actions;
        gap: 15px;
    }
    .search-bar {
        grid-area: search;
        width: 100%;
    }
    .user-login-info {
        display: none;
    }
    .nav-categories-content {
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .nav-categories-content::-webkit-scrollbar {
        display: none;
    }

    /* Mobile styles for new components */
    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .trust-badges-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    .reviews-summary-container {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    .summary-left, .summary-right {
        min-width: 100%;
    }
}

/* Sticky Mobile CTA Bar Styling */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    z-index: 1000;
    border-top: 1px solid var(--border-color);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-left {
    display: flex;
    flex-direction: column;
}

.sticky-cta-title {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-cta-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
}

.sticky-cta-price small {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
}

.btn-sticky-buy {
    background-color: var(--magalu-green);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 158, 73, 0.25);
    transition: background-color 0.2s;
}

.btn-sticky-buy:hover {
    background-color: var(--magalu-green-hover);
}
