:root {
    --primary-color: #1A3C34; /* Dark Green */
    --primary-light: #2A5A4E;
    --secondary-color: #FFFFFF;
    --accent-color: #DAA520; /* Gold/Warm */
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F9FDFB;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    position: relative;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Promo Bar */
.promo-bar {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    overflow: hidden; /* Strict containment */
    white-space: nowrap;
    position: relative;
    display: block; /* Changed to block for container stability */
    width: 100%;
}

.secondary-promo {
    background-color: var(--primary-color);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    font-weight: 700;
}

.marquee {
    display: flex !important;
    width: max-content !important;
    max-width: none !important; /* CRITICAL: Must be wider than screen */
    animation: marquee 10s linear infinite !important;
    will-change: transform;
}

.marquee p {
    padding-right: 150px !important; /* Huge gap for mobile safety */
    margin: 0 !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    display: inline-block !important;
    max-width: none !important; /* CRITICAL */
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
    margin: 0;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.nav-logo-mobile img {
    height: 40px;
    width: auto;
    display: block;
}

.copyright-logo {
    height: 18px;
    width: auto;
    vertical-align: middle;
}

.menu-toggle {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2000;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-icon-btn {
    background: none !important;
    border: none !important;
    color: var(--primary-color) !important;
    cursor: pointer !important;
    padding: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    transition: all 0.2s ease !important;
    line-height: 0 !important;
}

.header-icon-btn:hover {
    background: transparent;
}

.header-icon-btn svg {
    display: block !important;
    color: var(--primary-color) !important;
    stroke: var(--primary-color) !important;
    transition: transform 0.2s ease !important;
}

.header-icon-btn:hover svg {
    transform: scale(1.1);
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 20px 30px; /* Adjusted padding */
    gap: 15px;
    box-shadow: 10px 0 30px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-105%); /* Hidden completely outside */
    z-index: 2001;
    display: flex;
    overflow-y: auto; /* Enable scroll */
    overflow-x: hidden; /* Prevent horizontal scroll inside nav */
}

nav.active {
    transform: translateX(0);
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-mobile {
    display: none;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    align-items: center;
    gap: 8px;
}

.nav-contact-info {
    display: none;
    margin-top: auto;
    padding-top: 30px;
    border-top: 2px solid #f5f5f5;
}

.nav-contact-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-contact-info i {
    color: var(--primary-color);
}

/* Sidebar Testimonials */
.nav-testimonials-mobile {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    width: 100%; /* Force containment */
    box-sizing: border-box;
}

.nav-testimonial-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    width: 100%; /* Force containment */
    box-sizing: border-box;
}

.nt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.nt-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #333;
}

.nt-verified {
    background: #e6f7ef;
    color: #27ae60;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.nt-stars {
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.nt-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #222;
    margin-bottom: 5px;
}

.nt-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
    font-style: italic;
    margin-bottom: 12px;
}

.nt-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 10px;
    font-size: 0.75rem;
    color: #999;
}

.nt-actions {
    display: flex;
    gap: 12px;
}

.nt-actions span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Overlay for mobile menu */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    z-index: 999;
}

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

@media (min-width: 992px) {
    .menu-toggle, .header-spacer, .menu-overlay {
        display: none !important;
    }
    
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        position: static;
        transform: none;
    }
    
    nav {
        position: static;
        display: flex;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background: transparent;
        transition: none !important;
        transform: none !important;
    }
    
    nav a {
        border-bottom: none;
        margin-left: 30px;
        padding: 0;
        font-size: 1rem;
    }
}

/* Buy Section (New Hero) */
.buy-section {
    padding: 10px 0 30px; /* Near zero top padding */
    background-color: white;
    margin-top: 0;
}

.checkout-box {
    margin-top: 15px;
}

/* Product Description Section */
.product-description {
    padding: 20px 0 50px; /* Highly reduced spacing */
}

.description-header {
    margin-bottom: 30px;
    text-align: center;
}

.buy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.buy-gallery {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 30px;
}

.main-gallery-img img {
    width: 100%;
    border-radius: 16px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.gallery-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

.gallery-hint .search-icon {
    font-size: 0.9rem;
}

.buy-options {
    padding-left: 20px;
}

.option-group {
    margin-bottom: 30px;
}

.option-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.variant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.variant-btn {
    border: 2px solid #EEE;
    background: white;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.variant-btn.active {
    border-color: var(--primary-color);
    background: rgba(26, 60, 52, 0.05);
}

.color-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #ddd;
}

.buy-options h2 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-status {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    font-weight: 400;
}

.verified-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    background-color: #2196F3;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}

.verified-icon::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 3px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Testimonial Summary & Animated Tooltips */
.testimonial-summary {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 25px 0;
}

.avatar-group {
    display: flex;
    flex-direction: row;
    margin-right: 20px; /* Space between last avatar and stars */
}

.avatar-item {
    position: relative;
    margin-right: -18px;
    cursor: pointer;
    z-index: 1;
}

.avatar-item img,
.avatar-letter-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid white;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease;
}
.avatar-letter-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.avatar-item:hover {
    z-index: 100;
}

.avatar-item:hover img {
    transform: scale(1.15) translateY(-5px);
    border-color: var(--primary-light);
}

/* Tooltip (The effect the user wants back) */
.tooltip {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #000;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    pointer-events: none;
}

.tooltip span {
    color: #999;
    font-size: 0.65rem;
    display: block;
}

.tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #000;
}

.avatar-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.rating-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stars-small {
    color: #FFB400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 2px;
    line-height: 1;
}

.rating-info p {
    font-size: 0.85rem;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.rating-info strong {
    font-weight: 800;
    color: #000;
}

/* Urgency Box */
.urgency-box {
    background: #FFFFFF;
    border: 1.5px solid #E9ECEF;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    width: 100%;
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.urgency-title {
    color: #C62828; /* High Urgency Red */
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot-red {
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 0 rgba(255, 0, 0, 0.4);
    animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.urgency-fire {
    animation: fireMove 1s ease-in-out infinite alternate;
    display: inline-block;
}

@keyframes fireMove {
    from { transform: translateY(0) scale(1); }
    to { transform: translateY(-3px) scale(1.1); }
}

.stock-status {
    color: #1A3C34;
    font-size: 0.95rem;
}

.stock-status strong {
    color: #C62828;
    font-size: 1.1rem;
    font-weight: 900;
}

/* Purchase Notification Toasts */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    pointer-events: none;
    max-width: 320px;
    width:calc(100% - 40px);
}

.purchase-toast {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    transform: translateX(-120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
}

.purchase-toast.active {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    width: 40px;
    height: 40px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-user {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
}

.toast-msg {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #4CAF50;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(3); opacity: 0; }
}

.color-circle.warm { background-color: #FFF9C4; }
.color-circle.white { background-color: #FFFFFF; }

.quantity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.qty-card {
    border: 2px solid #EEE;
    padding: 15px 10px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.qty-card.active {
    border-color: var(--primary-color);
    background: rgba(26, 60, 52, 0.05);
}

.qty-num {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
}

.qty-price {
    display: block;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.badge-qty {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    font-size: 0.55rem;
    padding: 2px 8px;
    border-radius: 50px;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.kit-grid {
    grid-template-columns: 1fr 1fr;
}

.kit-grid .qty-card {
    padding-top: 22px;
}

.kit-qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    padding: 18px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    background: rgba(26, 60, 52, 0.04);
}

.kit-qty-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.kit-qty-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kit-qty-btn {
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.kit-qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.kit-qty-value {
    font-size: 1.5rem;
    font-weight: 800;
    min-width: 28px;
    text-align: center;
    color: var(--primary-color);
}

.checkout-box {
    margin-top: 40px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(26, 60, 52, 0.1);
}

.total-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.installments {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-checkout {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}

.btn-checkout:hover {
    background: var(--primary-light);
    transform: scale(1.02);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Benefits */
.benefits {
    padding: 20px 0 40px;
    background-color: var(--secondary-color);
}

.reviews {
    padding: 20px 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 25px; /* Reduced from 60px */
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefits-grid {
    display: none; /* Removed in favor of card-stack */
}

/* Card Stack Component */
.card-stack-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
}

.card-stack {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-stack-item {
    position: absolute;
    width: 100%;
    max-width: 500px;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0,0,0,0.13);
    opacity: 0;
    transition: opacity 0.45s ease;
    cursor: pointer;
    pointer-events: none;
}

.card-stack-item.active {
    opacity: 1;
    pointer-events: auto;
}

.card-stack-item .card-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-stack-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    pointer-events: none;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    z-index: 2;
}

.card-tag {
    display: inline-block;
    background: var(--accent-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    color: #fff !important;
}

.card-info p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
    color: #fff !important;
}

/* Dots Navigation */
.card-stack-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.card-stack-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-stack-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .card-stack-item {
        max-width: calc(100vw - 30px);
        height: 300px; /* Increased for better image display */
    }
    .card-stack {
        height: 320px;
    }
    .card-info h3 { font-size: 1.2rem; }
}

/* Footer */
footer {
    padding: 80px 0 30px;
    background: #0D1F1B;
    color: rgba(255,255,255,0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    text-align: center; /* Centralize all columns */
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-trust p {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-trust .payment-badges, .footer-atendimento .social-icons {
        justify-content: center !important;
    }
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center; /* Center badges */
}

.app-btn img {
    width: 160px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.app-btn:hover img {
    transform: translateY(-3px);
}

.footer-atendimento p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center icons and text */
    gap: 10px;
}

.footer-atendimento a {
    color: inherit;
    text-decoration: none;
}

.whatsapp-highlight {
    color: var(--accent-color) !important;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center; /* Center icons */
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

.company-info {
    text-align: center;
    padding-bottom: 20px; /* Reduced since CNPJ moved */
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* ============================================================
   MOBILE RESPONSIVE EXCELLENCE - ABSOLUTE CONTAINMENT
   ============================================================ */
@media (max-width: 768px) {
    /* Global Mobile Shield - EXEMPTING MARQUEE */
    *:not(.marquee):not(.marquee p):not(.marquee-content):not(.marquee-card) { 
        box-sizing: border-box !important; 
        max-width: 100% !important;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative;
    }

    .container {
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    /* Header & Navigation Fixes */
    .header-content {
        padding: 8px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .logo {
        font-size: 1.5rem !important;
    }

    nav {
        width: 85% !important;
        max-width: 300px !important;
        padding: 60px 20px 30px !important;
    }

    .nav-logo-mobile, .nav-contact-info, .nav-testimonials-mobile {
        display: flex !important;
    }

    /* Buy Section - Standardized Grid Injection */
    .buy-section {
        padding: 0 !important;
        width: 100% !important;
    }

    .buy-grid {
        display: block !important; /* Stack gallery and options */
        width: 100% !important;
    }

    .buy-gallery {
        padding: 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .main-gallery-img {
        width: 100% !important;
        overflow: hidden !important;
    }

    .main-gallery-img img {
        border-radius: 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* Thumbnails: scroll horizontal sem vazar */
    .thumbnails {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        padding: 10px 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .thumb {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
        flex-shrink: 0 !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .buy-options {
        padding: 20px 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .buy-options h2 {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }

    /* Fortified 2-Column Grids */
    .variant-grid, .quantity-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 10px !important;
        width: 100% !important;
        margin: 15px 0 !important;
    }

    .variant-btn, .qty-card {
        width: 100% !important;
        padding: 12px 8px !important;
        font-size: 0.8rem !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        min-width: 0 !important; /* Allow shrinking */
        word-break: break-word !important;
    }

    /* Badge Visibility Corrective Alignment */
    .badge-qty {
        font-size: 0.55rem !important;
        padding: 2px 6px !important;
        top: -10px !important;
        width: auto !important;
        min-width: 70% !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }

    /* Pricing Section Containment */
    .pricing-container {
        width: 100% !important;
        margin: 20px 0 !important;
    }

    .main-price {
        font-size: 1.8rem !important;
    }

    .pix-row {
        flex-direction: row !important;
        padding: 12px !important;
        width: 100% !important;
        display: flex !important;
        align-items: center !important;
    }

    .pix-icon {
        width: 38px !important;
        height: auto !important;
        display: block !important;
        margin-right: 8px !important;
    }

    .pix-text {
        font-size: 0.7rem !important;
    }

    .pix-text strong {
        font-size: 0.95rem !important;
    }

    .pix-badge {
        font-size: 0.65rem !important;
        padding: 3px 6px !important;
    }

    .checkout-box {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
    }

    .btn-checkout {
        padding: 18px !important;
        font-size: 1.1rem !important;
    }

    /* Description Scaling */
    .product-description {
        padding: 40px 16px !important;
    }

    .description-header h2 {
        font-size: 1.5rem !important;
    }

    .desc-text h3 {
        font-size: 1.3rem !important;
    }

    .desc-item {
        margin-bottom: 60px !important;
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .desc-item.right {
        flex-direction: column !important;
    }
}

/* Extra small screens fix */
@media (max-width: 360px) {
    .main-price { font-size: 1.6rem !important; }
    .buy-options h2 { font-size: 1.2rem !important; }
    .variant-grid, .quantity-grid { gap: 8px !important; }
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 5px;
    letter-spacing: 2px;
    opacity: 0.8;
}

/* Enhanced Product Description */
.product-description {
    padding: 100px 0;
    background: #FFFFFF;
}

.description-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.gif-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 3px solid #1A3C34; /* Matching the brand green */
}

.gif-box img, 
.gif-box video {
    width: 100%;
    height: auto;
    display: block;
}

.gif-box.water-demo {
    max-width: 400px;
    margin-bottom: 30px;
    border-color: #27ae60; /* Slightly brighter green for emphasis */
}

@media (max-width: 768px) {
    .gif-box.water-demo {
        margin-bottom: 10px;
    }
}

.description-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.description-header p {
    font-size: 1.2rem;
    color: #666;
}

.desc-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.desc-item.right {
    flex-direction: row;
}

.desc-text {
    flex: 1;
}

.desc-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.desc-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.desc-image {
    flex: 1;
}

.desc-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.desc-image img:hover {
    transform: scale(1.02);
}

.specs-section {
    margin-top: 100px;
}

.specs-box {
    background: #F8F9FA;
    padding: 50px;
    border-radius: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.specs-box h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.specs-table {
    width: 100%;
}

.specs-table td {
    padding: 20px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #E9ECEF;
}

@media (max-width: 992px) {
    .desc-item {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
        margin-bottom: 70px;
    }

    .desc-header h2 {
        font-size: 2rem;
    }
}

/* Advanced Pricing UI */
.pricing-container {
    margin: 20px 0 25px;
    padding: 0;
    background: transparent;
}

.price-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.price-header .label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.price-details {
    flex: 1;
}

.old-price {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 2px;
}

.current-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.main-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #B8860B;
}

.discount-percent {
    background: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.installment-hint {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 5px;
    font-weight: 400;
}

.installment-hint strong {
    font-weight: 700;
}

.view-installments {
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0;
    margin-bottom: 12px;
    display: block;
}

.savings-badge {
    background: #000;
    color: #fff;
    padding: 6px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Pix Discount Row - Strictly Horizontal */
.pix-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px;
    margin: 15px 0;
    padding: 12px 15px;
    background: #F0FBF7;
    border-radius: 12px;
    border: 1.5px solid #C0E6D8;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.pix-icon {
    width: 50px !important;
    height: auto;
    flex-shrink: 0;
}

.pix-content {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

.pix-text {
    font-size: 1rem;
    color: #2D4A43;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.pix-text strong {
    font-size: 1.3rem;
    color: #1A3C34;
}

.pix-badge {
    background: #4CAF50;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Inline Installment Dropdown */
.inst-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f9f9f9;
    border-radius: 10px;
    margin: 10px 0;
    opacity: 0;
    border: 1px solid transparent;
}

.inst-dropdown.active {
    max-height: 500px;
    padding: 15px;
    opacity: 1;
    border: 1px solid #eee;
    margin-bottom: 20px;
}

.inst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.inst-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.inst-row:last-child, .inst-row:nth-last-child(2) {
    border-bottom: none;
}

.inst-row .inst-num {
    color: #666;
}

.inst-row .inst-val {
    font-weight: 700;
    color: #333;
}

/* Infinite Sliding Testimonials */
.testimonial-marquee-wrapper {
    margin-top: 25px;
    width: 100%;
    max-width: 100%; /* Safety boundary */
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    box-sizing: border-box;
    /* Faded edges effect */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.testimonial-marquee {
    width: 100%;
    display: flex;
}

.marquee-content {
    display: flex;
    gap: 15px;
    animation: scroll-marquee 25s linear infinite;
    width: max-content;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7.5px)); }
}

.marquee-card {
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 12px;
    width: 220px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.mc-name {
    font-weight: 700;
    font-size: 0.8rem;
    color: #333;
}

.mc-verified {
    background: #e6f7ef;
    color: #27ae60;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.mc-stars {
    font-size: 0.65rem;
    margin-bottom: 5px;
}

.mc-text {
    font-size: 0.75rem;
    color: #555;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
    white-space: normal;
}

/* Pause on hover */
.testimonial-marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

/* Advanced Reviews Section */
.reviews {
    padding: 80px 0;
    background: #fff;
}

.reviews-header-dashboard {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    flex-wrap: wrap; /* Safety for desktop overflow */
}

.reviews-summary-card {
    flex: 1;
    text-align: center;
    padding: 20px;
    border-right: 1px solid #eee;
    min-width: 0;
}

.avg-label {
    display: block;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 10px;
}

.avg-score {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stars-row {
    color: #ffb400;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.review-count {
    color: #999;
}

.rating-distribution {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dist-row .label {
    width: 80px;
    font-size: 0.9rem;
    color: #666;
}

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

.bar-fill {
    height: 100%;
    background: #ffb400;
}

.dist-row .percent {
    width: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
}

.customer-photos-summary {
    flex: 1.5;
    padding-left: 40px;
    border-left: 1px solid #eee;
    min-width: 0;
}

.customer-photos-summary h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.mini-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.mini-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.more-photos {
    width: 60px;
    height: 60px;
    background: #eee;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
}

.btn-write-review {
    width: 100%;
    padding: 15px;
    background: #ffb400;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-write-review:hover {
    background: #ffa000;
    transform: translateY(-2px);
}

.reviews-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 30px;
    background: #fff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rc-image {
    position: relative;
    height: 250px;
}

.rc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-user-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255,255,255,0.9);
    padding: 5px 15px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #333;
    backdrop-filter: blur(5px);
}

.avatar-letter {
    width: 24px;
    height: 24px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.rc-content {
    padding: 25px;
}

.rc-content .stars {
    color: #ffb400;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.verified-check {
    color: #27ae60;
    font-size: 0.9rem;
}

.rc-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.rc-footer {
    display: flex;
    gap: 20px;
    color: #999;
    font-size: 0.85rem;
}

.vote {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    font-family: inherit;
}

.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    font-size: 1.5rem;
    color: #eee;
    cursor: pointer;
    transition: color 0.2s;
}

.star-rating-input input:checked ~ label,
.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #ffb400;
}

.file-input-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-file {
    padding: 10px 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #f9f9f9;
    cursor: pointer;
}

#rev-image {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.btn-submit-review {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .reviews-header-dashboard {
        flex-direction: column;
        gap: 20px;
    }
    .reviews-summary-card, .rating-distribution, .customer-photos-summary {
        width: 100%;
        border: none;
        padding: 0;
    }
    .reviews-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .filter-tabs {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 5px;
    }
    .tab-btn {
        white-space: nowrap;
    }
    .modal-content {
        padding: 20px;
    }

    /* Reviews grid: 1 coluna no mobile */
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Review card image: contida corretamente */
    .rc-image {
        width: 100% !important;
        overflow: hidden !important;
    }

    .rc-image img {
        width: 100% !important;
        max-width: 100% !important;
        object-fit: cover !important;
    }

    /* Mini gallery de fotos de clientes: scroll controlado */
    .mini-gallery {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 8px !important;
        padding-bottom: 5px !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .mini-gallery img,
    .more-photos {
        flex-shrink: 0 !important;
        width: 55px !important;
        height: 55px !important;
        max-width: 55px !important;
    }

    /* Garante que imagens de seção de descrição nunca vazem */
    .desc-image img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}
