/* Custom Styles for EcoStore */

/* CSS Variables */
:root {
    --primary-green: #28a745;
    --secondary-green: #20c997;
    --light-green: #d4edda;
    --dark-green: #155724;
    --orange: #fd7e14;
    --light-orange: #ff8c42;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --gray: #6c757d;
    --dark-gray: #343a40;
}

/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
}

/* Top Bar */
.top-bar {
    font-size: 0.875rem;
}

.contact-info {
    transition: opacity 0.3s ease;
}

.contact-info:hover {
    opacity: 0.8;
}

.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Header */
.header {
    border-bottom: 1px solid #e9ecef;
}

.logo {
    max-height: 50px;
    width: auto;
}

.search-container {
    position: relative;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 25px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.search-container .btn {
    border-radius: 0 25px 25px 0;
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.search-container .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-1px);
}

.user-actions a {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
}

.user-actions a:hover {
    background-color: var(--light-green);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    padding: 1rem 1.5rem !important;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 5px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    background-color: var(--light-green);
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--primary-green);
    color: var(--white) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
    transform: translateX(5px);
}

/* Custom Button Classes */
.btn-orange {
    background-color: var(--orange);
    border-color: var(--orange);
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background-color: var(--light-orange);
    border-color: var(--light-orange);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 126, 20, 0.3);
}

.btn-outline-success {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--white) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--primary-green);
    line-height: 1.2;
}

.hero-buttons .btn {
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hero Carousel Styles */
.hero-carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    min-height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin: 2rem 0;
    padding: 3rem;
}

.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    visibility: hidden;
    padding: 2rem;
}

.hero-carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.hero-carousel-nav i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.hero-carousel-prev {
    left: 30px;
}

.hero-carousel-next {
    right: 30px;
}

.hero-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-indicator.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.hero-carousel-indicator:hover {
    background: rgba(40, 167, 69, 0.5);
    border-color: var(--primary-green);
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.category-icon {
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* Product Cards */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-green);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(40, 167, 69, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.product-info h6 {
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.product-card:hover .product-info h6 {
    color: var(--dark-green);
}

 .rating {
     font-size: 0.875rem;
 }
 
 /* Product Buttons */
 .product-buttons {
     margin-top: 0.5rem;
 }
 
 .btn-whatsapp {
     background-color: #25d366;
     border-color: #25d366;
     color: white;
     transition: all 0.3s ease;
 }
 
 .btn-whatsapp:hover {
     background-color: #128c7e;
     border-color: #128c7e;
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
 }
 
 .btn-whatsapp:active {
     transform: translateY(0);
 }

/* Color Options */
.color-options {
    margin-top: 0.5rem;
}

.color-option {
    width: 25px;
    height: 25px;
    border: 2px solid #e9ecef;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.2);
    border-color: #28a745;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.color-option.active {
    border-color: #28a745;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #28a745;
}

.color-option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.color-option.active::after {
    opacity: 1;
}

/* Responsive adjustments for color options */
@media (max-width: 768px) {
    .color-option {
        width: 20px;
        height: 20px;
    }
    
    .color-option::after {
        width: 6px;
        height: 6px;
    }
}

/* Promotion Carousel */
.promotion-carousel {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.promotion-carousel-wrapper {
    display: flex;
    transition: transform 0.8s ease-in-out;
    width: 200%;
}

.carousel-slide {
    width: 50%;
    flex-shrink: 0;
}

.promotion-card {
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.promotion-card:hover {
    transform: translateY(-5px);
    border-color: #dc3545;
    box-shadow: 0 15px 35px rgba(220, 53, 69, 0.2);
}

.promotion-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.promotion-badge .badge {
    font-size: 0.9rem;
    padding: 8px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #28a745;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #28a745;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #28a745;
    transform: scale(1.2);
}

.indicator:hover {
    background: #28a745;
    transform: scale(1.1);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-nav.prev {
        left: 10px;
    }
    
    .carousel-nav.next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Hero Parallax Section */
.hero-parallax-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Extra height for parallax effect */
    background-image:url(img/bg_home.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    z-index: 1;
    transition: background-image 0.5s ease-in-out;
}

        .parallax-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(128, 128, 128, 0.3) 0%, rgba(64, 64, 64, 0.6) 100%);
            z-index: 2;
        }

.parallax-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

        .slogan-container {
            background: rgba(128, 128, 128, 0.15);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 3.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .slogan-title {
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
            color: #ffffff;
            font-weight: 300;
            letter-spacing: 1px;
        }
        
        .slogan-subtitle {
            font-size: 1.2rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.3s both;
            color: #ffffff;
            font-weight: 300;
            line-height: 1.6;
        }

.cta-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

        .cta-buttons .btn {
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            border-radius: 50px;
            font-weight: 400;
            letter-spacing: 0.5px;
            padding: 12px 30px;
        }
        
        .cta-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

        .btn-whatsapp {
            background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
            border-color: #25d366;
            color: white;
        }
        
        .btn-whatsapp:hover {
            background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
            border-color: #128c7e;
            color: white;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments for parallax section */
        @media (max-width: 768px) {
            .hero-parallax-section {
                height: 400px;
            }
            
            .slogan-container {
                padding: 2.5rem 2rem;
                border-radius: 20px;
            }
            
            .slogan-title {
                font-size: 1.8rem;
                letter-spacing: 0.5px;
            }
            
            .slogan-subtitle {
                font-size: 1rem;
                line-height: 1.5;
            }
            
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 1rem;
                padding: 10px 25px;
            }
            
            .cta-buttons .btn:last-child {
                margin-bottom: 0;
            }
        }

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.newsletter .form-control {
    border: none;
    border-radius: 25px 0 0 25px;
    padding: 0.75rem 1.5rem;
}

.newsletter .btn {
    border-radius: 0 25px 25px 0;
    border: none;
    padding: 0.75rem 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #212529 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.footer a {
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
}

.footer a:hover {
    color: var(--white) !important;
    text-decoration: none;
}

.footer a.hover-white:hover {
    color: var(--white) !important;
}

.footer .social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    border-color: var(--primary-green);
}

.footer h5, .footer h6 {
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after, .footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.footer h5:hover::after, .footer h6:hover::after {
    width: 50px;
}

.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .payment-methods i {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer .payment-methods i:hover {
    color: var(--primary-green) !important;
    transform: scale(1.1);
}

.footer ul li {
    transition: all 0.3s ease;
}

.footer ul li:hover {
    transform: translateX(5px);
}

/* Badge Colors */
.bg-orange {
    background-color: var(--orange) !important;
}

.text-orange {
    color: var(--orange) !important;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
    border-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
    }
    
    .search-container {
        margin: 1rem 0;
    }
    
    .user-actions {
        justify-content: center !important;
        margin-top: 1rem;
    }
    
    .category-card {
        margin-bottom: 1rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
    
    .footer .text-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    /* Hero Carousel Mobile Styles */
    .hero-carousel-container {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
        min-height: 400px;
    }
    
    .hero-carousel-slide {
        padding: 1.5rem;
    }
    
    .hero-carousel-nav {
        width: 50px;
        height: 50px;
    }
    
    .hero-carousel-nav i {
        font-size: 1rem;
    }
    
    .hero-carousel-prev {
        left: 20px;
    }
    
    .hero-carousel-next {
        right: 20px;
    }
    
    .hero-carousel-indicators {
        bottom: 20px;
    }
    
    .hero-carousel-indicator {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.5rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 2rem !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
    }
    
    .top-bar .contact-info {
        font-size: 0.75rem;
    }
}

/* Print Styles */
@media print {
    .btn,
    .navbar-toggler,
    .product-overlay {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section,
    .newsletter,
    .footer {
        background: var(--white) !important;
        color: var(--dark-gray) !important;
    }
}

/* Utility Classes */
.text-success {
    color: var(--primary-green) !important;
}

.bg-success {
    background-color: var(--primary-green) !important;
}

.border-success {
    border-color: var(--primary-green) !important;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease;
}

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

.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Focus Management */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #128c7e;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #333;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsividade do WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

/* Payment Methods Section */
.payment-methods {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.payment-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.payment-card:hover::before {
    transform: scaleX(1);
}

.payment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(40, 167, 69, 0.2);
}

.payment-icon {
    transition: all 0.4s ease;
}

.payment-card:hover .payment-icon {
    transform: scale(1.1);
}

.payment-card:hover .payment-icon i {
    animation: pulse 2s infinite;
}

.payment-features .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-features .badge:hover {
    transform: scale(1.05);
}

.payment-security {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.payment-security h6 {
    color: #28a745;
    font-size: 1.1rem;
}

/* Responsive adjustments for payment methods */
@media (max-width: 768px) {
    .payment-card {
        margin-bottom: 1.5rem;
    }
    
    .payment-card:hover {
        transform: translateY(-5px);
    }
    
    .payment-security {
        padding: 1.5rem;
    }
}

/* Most Viewed Products Section */
.most-viewed-products {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.most-viewed-products .product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.most-viewed-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.view-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.view-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.most-viewed-products .product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f8f9fa;
}

.most-viewed-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-viewed-products .product-card:hover .product-image img {
    transform: scale(1.05);
}

.most-viewed-products .product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.most-viewed-products .product-card:hover .product-overlay {
    opacity: 1;
}

.most-viewed-products .product-overlay .btn {
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.most-viewed-products .product-card:hover .product-overlay .btn {
    transform: translateY(0);
}

.most-viewed-products .product-info {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.most-viewed-products .product-info h6 {
    font-size: 0.9rem;
    line-height: 1.3;
    min-height: 2.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-viewed-products .product-info p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6c757d;
}

.most-viewed-products .price-container {
    margin-bottom: 1rem;
}

.most-viewed-products .product-buttons {
    margin-bottom: 1rem;
}

.most-viewed-products .btn-whatsapp {
    margin-top: auto;
    background: #25d366;
    border-color: #25d366;
    color: white;
    font-size: 0.8rem;
    padding: 0.5rem;
}

.most-viewed-products .btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
    color: white;
}

/* Category Banners Section */
.category-banners {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.category-banner {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-banner:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s ease;
}

.category-banner[data-category="containers"] .banner-bg {
    background-image: linear-gradient(135deg, rgba(220, 53, 69, 0.9) 0%, rgba(220, 53, 69, 0.7) 100%), 
                      url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=400&h=400&fit=crop&crop=center');
}

.category-banner[data-category="coleta-seletiva"] .banner-bg {
    background-image: linear-gradient(135deg, rgba(40, 167, 69, 0.9) 0%, rgba(40, 167, 69, 0.7) 100%), 
                      url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=400&h=400&fit=crop&crop=center');
}

.category-banner[data-category="limpeza"] .banner-bg {
    background-image: linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(0, 123, 255, 0.7) 100%), 
                      url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=400&h=400&fit=crop&crop=center');
}

.category-banner[data-category="equipamentos"] .banner-bg {
    background-image: linear-gradient(135deg, rgba(108, 117, 125, 0.9) 0%, rgba(108, 117, 125, 0.7) 100%), 
                      url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=400&h=400&fit=crop&crop=center');
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    color: white;
}

.banner-icon {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.category-banner:hover .banner-icon {
    transform: scale(1.1) rotate(5deg);
}

.banner-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.banner-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-actions .btn {
    transition: all 0.3s ease;
    font-weight: 500;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
}

.banner-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Animação de entrada dos banners */
.category-banner {
    animation: fadeInUp 0.8s ease-out;
}

.category-banner:nth-child(2) {
    animation-delay: 0.2s;
}

.category-banner:nth-child(3) {
    animation-delay: 0.4s;
}

/* Banner Carousel Navigation */


/* Responsive adjustments for category banners */
@media (max-width: 768px) {
    .category-banner {
        height: 450px;
        margin-bottom: 2rem;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
    }
    
    .banner-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-actions .btn {
        width: 100%;
        max-width: 200px;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .category-banner {
        height: 400px;
    }
    
    .banner-content {
        padding: 1.5rem;
    }
    
    .banner-title {
        font-size: 1.3rem;
    }
    
    .banner-icon i {
        font-size: 3rem !important;
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.accordion-item {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.accordion-button {
    background: #ffffff;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #28a745;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    color: white !important;
}

.accordion-button:hover {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.accordion-button:hover i {
    color: white !important;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
    border-color: #28a745;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem;
    background: #ffffff;
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.faq-steps {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.faq-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #6c757d;
}

.faq-steps li:last-child {
    margin-bottom: 0;
}

.faq-steps strong {
    color: #28a745;
}

.contact-info-faq {
    background: rgba(40, 167, 69, 0.05);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.contact-info-faq .d-flex {
    color: #6c757d;
}

.contact-info-faq strong {
    color: #28a745;
}

.cta-buttons-faq {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cta-buttons-faq .btn {
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-buttons-faq .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for FAQ */
@media (max-width: 768px) {
    .accordion-button {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
    
    .faq-steps {
        padding-left: 1rem;
    }
    
    .cta-buttons-faq {
        flex-direction: column;
    }
    
    .cta-buttons-faq .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .whatsapp-button {
        animation: none;
    }
    
    .payment-card:hover {
        transform: none;
    }
    
    .payment-card:hover .payment-icon {
        transform: none;
    }
    
    .accordion-item:hover {
        transform: none;
    }
}

@keyframes bannerPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Free Shipping Section Styles */
.free-shipping-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.free-shipping-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.free-shipping-card {
    position: relative;
    z-index: 2;
    padding: 2rem;
    border-radius: 20px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset,
        0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: slideInUp 0.8s ease-out;
}

.free-shipping-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #28a745, #20c997, #17a2b8, #28a745);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: 400% 400%;
}

.free-shipping-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.9) inset,
        0 1px 3px rgba(0, 0, 0, 0.1);
}

.free-shipping-card:hover::before {
    opacity: 1;
    animation: borderGlow 2s ease-in-out infinite alternate;
}

.free-shipping-icon {
    animation: float 3s ease-in-out infinite;
    display: inline-block;
}

.free-shipping-icon i {
    background: linear-gradient(45deg, #28a745, #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(40, 167, 69, 0.3));
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(1deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
    75% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Additional Interactive Elements */
.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 2px solid #28a745;
    border-radius: 50%;
    animation: iconPulse 2s ease-in-out infinite;
    opacity: 0;
}

@keyframes iconPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.animate-text {
    background: linear-gradient(45deg, #28a745, #20c997, #17a2b8);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.price-highlight {
    position: relative;
    padding: 0.5rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 1px solid rgba(255, 193, 7, 0.2);
    transition: all 0.3s ease;
}

.price-highlight:hover {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0.1) 100%);
    transform: scale(1.02);
}

.price-value {
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% { text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); }
    100% { text-shadow: 0 1px 8px rgba(255, 193, 7, 0.5); }
}

.savings-badge {
    animation: badgeBounce 2s ease-in-out infinite;
}

.savings-badge .badge {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
    border: none;
    padding: 0.5rem 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.savings-badge .badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(40, 167, 69, 0.4);
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.region-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
    margin-top: 0.5rem;
}

.region-tag {
    background: linear-gradient(135deg, #e9ecef 0%, #f8f9fa 100%);
    color: #495057;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.region-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.region-tag:hover {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white !important;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
    border-color: #28a745;
}

.region-tag:hover::before {
    left: 100%;
}

.region-tag:active {
    transform: translateY(-1px) scale(1.05);
    transition: all 0.1s ease;
}



/* Free Shipping Responsive Styles */
@media (max-width: 768px) {
    .free-shipping-card {
        padding: 1.5rem;
    }
    
    .region-tags {
        gap: 0.4rem;
        justify-content: center;
    }
    
    .region-tag {
        padding: 0.3rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .region-tag:hover {
        color: white !important;
    }
    
    .free-shipping-icon i {
        font-size: 2.5rem !important;
    }
    
    .icon-pulse {
        width: 80%;
        height: 80%;
    }
    
    .price-highlight {
        padding: 0.3rem;
    }
    
    .savings-badge .badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .free-shipping-card {
        padding: 1rem;
    }
    
    .region-tags {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.3rem;
    }
    
    .region-tag {
        width: auto;
        text-align: center;
        max-width: none;
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .region-tag:hover {
        color: white !important;
    }
    
    .free-shipping-card .row {
        flex-direction: column;
    }
    
    .free-shipping-card .col-md-6 {
        margin-bottom: 1rem;
    }
    
    .free-shipping-card .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Marquee Styles */
.marquee-container {
    overflow: hidden;
    position: relative;
    height: 24px;
}

.marquee {
    display: flex;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-text {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.marquee-text i {
    margin: 0 0.5rem;
    animation: truckBounce 2s ease-in-out infinite;
}

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

@keyframes truckBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2px);
    }
}

/* Responsive Marquee */
@media (max-width: 768px) {
    .marquee-container {
        height: 20px;
    }
    
    .marquee-text {
        font-size: 0.75rem;
    }
    
    .marquee {
        animation-duration: 15s;
    }
}

@media (max-width: 576px) {
    .marquee-container {
        height: 18px;
    }
    
    .marquee-text {
        font-size: 0.7rem;
    }
    
    .marquee {
        animation-duration: 12s;
    }
}

/* Product Page Styles */
.color-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin-right: 8px;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-dot:hover {
    transform: scale(1.2);
}

.color-dot.active {
    border: 2px solid #28a745;
    transform: scale(1.1);
}

.product-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.product-image-container {
    position: relative;
    overflow: hidden;
}

.product-image-container img {
    transition: transform 0.3s ease;
}

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn {
    min-width: 120px;
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    border-color: #128c7e;
    color: white;
}

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

.color-options .color-dot {
    width: 12px;
    height: 12px;
    margin-right: 0;
}

/* Filter Styles */
.form-check-label {
    cursor: pointer;
    transition: color 0.3s ease;
}

.form-check-label:hover {
    color: #28a745;
}

.form-check-input:checked + .form-check-label {
    color: #28a745;
    font-weight: 600;
}

/* List View */
.list-view .product-item {
    width: 100%;
}

.list-view .product-item .col-lg-4 {
    width: 100%;
}

.list-view .product-card {
    flex-direction: row;
}

.list-view .product-image-container {
    width: 200px;
    flex-shrink: 0;
}

.list-view .card-body {
    flex: 1;
}

/* Pagination Styles */
.pagination .page-link {
    color: #28a745;
    border-color: #dee2e6;
    background-color: #fff;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.pagination .page-item.active .page-link {
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.pagination .page-item.disabled .page-link:hover {
    color: #6c757d;
    background-color: #fff;
    border-color: #dee2e6;
    transform: none;
    box-shadow: none;
}

/* Solutions Section Styles */
.solutions-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e9ecef" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23e9ecef" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23e9ecef" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23e9ecef" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23e9ecef" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.solutions-section .container {
    position: relative;
    z-index: 1;
}

.solution-item {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.solution-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.solution-item h5 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.solution-item i {
    transition: all 0.3s ease;
}

.solution-item:hover i {
    transform: scale(1.1);
}

.solutions-section .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.solutions-section .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

/* Cart Color Options */
.color-options {
    margin-top: 0.5rem;
}

.color-option {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: #28a745;
}

.color-option.active {
    border-color: #28a745;
    border-width: 3px;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Product Detail Page Styles */
.product-gallery {
    position: relative;
}

.main-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.main-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.thumbnail-images {
    flex-wrap: wrap;
}

.thumbnail-images img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumbnail-images img:hover {
    border-color: #28a745;
    transform: scale(1.05);
}

.product-info h1 {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.rating .stars {
    font-size: 1.1rem;
}

.price-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.current-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.color-selection {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.color-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.color-option:hover {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.color-option.active {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.color-option .color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-option .color-name {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.quantity-section .input-group {
    max-width: 150px;
}

.quantity-section .btn {
    border-color: #dee2e6;
    color: #6c757d;
}

.quantity-section .btn:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.quantity-section input {
    border-left: none;
    border-right: none;
    text-align: center;
    font-weight: 600;
}

.action-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-buttons .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.action-buttons .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
}

.action-buttons .btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.action-buttons .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
    color: white;
}

.features ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.features ul li:last-child {
    border-bottom: none;
}

.features ul li i {
    width: 20px;
    text-align: center;
}

.stock-status .alert {
    border: none;
    border-radius: 8px;
}

/* Product Tabs */
.nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.nav-tabs .nav-link.active {
    color: #28a745;
    background: transparent;
    border-bottom: 3px solid #28a745;
}

.tab-content {
    background: white;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

/* Reviews Section */
.overall-rating {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.rating-bars .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.rating-bars .progress-bar {
    border-radius: 10px;
}

.review-item {
    padding: 1rem 0;
}

.review-item:last-child {
    border-bottom: none !important;
}

.review-item .stars {
    font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item a {
    color: #28a745;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #20c997;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsive adjustments for product page */
@media (max-width: 768px) {
    .product-info h1 {
        font-size: 1.5rem;
    }
    
    .price-section {
        padding: 1rem;
    }
    
    .color-selection {
        padding: 1rem;
    }
    
    .color-options {
        justify-content: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .thumbnail-images {
        justify-content: center;
    }
    
    .thumbnail-images img {
        width: 60px;
        height: 45px;
    }
    
    .overall-rating {
        padding: 1rem;
    }
    
    .rating-bars .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .rating-bars .progress {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .product-overlay {
        flex-direction: row;
        gap: 5px;
    }
    
    .product-overlay .btn {
        min-width: auto;
        padding: 0.25rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .list-view .product-card {
        flex-direction: column;
    }
    
    .list-view .product-image-container {
        width: 100%;
    }
    
    .pagination .page-link {
        padding: 0.375rem 0.75rem;
        font-size: 0.875rem;
    }
}

/* Institutional Page Styles */
.hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #28a745, #20c997);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -1.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.timeline-content {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
}

/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Differential Items */
.differential-item {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.differential-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.differential-icon {
    transition: all 0.3s ease;
}

.differential-item:hover .differential-icon {
    transform: scale(1.1);
}

/* Team Cards */
.team-card {
    padding: 2rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.team-avatar img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

/* Certification Items */
.certification-item {
    padding: 2rem 1rem;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.15);
}

.certification-icon {
    transition: all 0.3s ease;
}

.certification-item:hover .certification-icon {
    transform: scale(1.1);
}

/* CTA Section */
.cta-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.cta-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive adjustments for institutional page */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-stats .stat-item {
        padding: 0.75rem;
    }
    
    .hero-stats h3 {
        font-size: 1.5rem;
    }
    
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.25rem;
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
    }
    
    .icon-circle i {
        font-size: 1.5rem !important;
    }
    
    .team-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .differential-item,
    .certification-item {
        padding: 1.5rem 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Blog Styles */
.featured-post {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.blog-post .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-post .card-title a:hover {
    color: #28a745 !important;
}

.blog-post .badge {
    font-size: 0.75rem;
}

/* Sidebar Widgets */
.card-header.bg-success {
    border-bottom: none;
}

.card-header h5 {
    font-size: 1rem;
    margin: 0;
}

/* Recent Posts Widget */
.card-body .row {
    border-bottom: 1px solid #f8f9fa;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.card-body .row:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.card-body .row img {
    object-fit: cover;
}

.card-body .row h6 a:hover {
    color: #28a745 !important;
}

/* Tags Widget */
.badge.bg-light {
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge.bg-light:hover {
    background-color: #28a745 !important;
    color: white !important;
    transform: scale(1.05);
}

/* Newsletter Widget */
.input-group .btn-success {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Pagination */
.pagination .page-link {
    color: #28a745;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: #28a745;
    border-color: #28a745;
}

.pagination .page-link:hover {
    color: #1e7e34;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Author Info */
.author-info {
    font-size: 0.875rem;
}

/* Blog Search */
.card-body .input-group input {
    border-right: none;
}

.card-body .input-group .btn {
    border-left: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-post .row {
        flex-direction: column;
    }
    
    .featured-post .col-md-4 {
        order: -1;
    }
    
    .blog-post .card-img-top {
        height: 180px;
    }
}

/* Blog post meta information */
.blog-meta {
    font-size: 0.875rem;
    color: #6c757d;
}

.blog-meta i {
    width: 16px;
    text-align: center;
}

/* Category badges */
.badge.bg-success {
    background-color: #28a745 !important;
}

.badge.bg-primary {
    background-color: #007bff !important;
}

.badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

.badge.bg-info {
    background-color: #17a2b8 !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
}

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

/* Blog post content */
.blog-post .card-text {
    color: #6c757d;
    line-height: 1.6;
}

/* Read more button */
.btn-outline-success:hover {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

/* Sidebar links */
.card-body a {
    transition: color 0.3s ease;
}

.card-body a:hover {
    color: #28a745 !important;
}

/* Newsletter form */
.newsletter-form .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Blog search form */
.blog-search .form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Featured post special styling */
.featured-post .card-body {
    padding: 1.5rem;
}

.featured-post .card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.featured-post .card-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* Blog post grid spacing */
.blog-grid .col-md-6 {
    margin-bottom: 2rem;
}

/* Sidebar widget spacing */
.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

/* Blog post image overlay effect */
.blog-post .card-img-top {
    position: relative;
    overflow: hidden;
}

.blog-post .card-img-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(40, 167, 69, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover .card-img-top::after {
    opacity: 1;
}

/* Blog post date styling */
.blog-date {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Blog post category styling */
.blog-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Blog post excerpt */
.blog-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Blog post footer */
.blog-post-footer {
    border-top: 1px solid #f8f9fa;
    padding-top: 1rem;
    margin-top: 1rem;
}

/* Sidebar category icons */
.sidebar-category i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

/* Sidebar recent posts */
.sidebar-recent-post {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.sidebar-recent-post:last-child {
    border-bottom: none;
}

.sidebar-recent-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.sidebar-recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.sidebar-recent-post-content small {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Blog pagination responsive */
@media (max-width: 576px) {
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination .page-item {
        margin: 0.25rem;
    }
}

/* Blog search responsive */
@media (max-width: 768px) {
    .blog-search .input-group {
        flex-direction: column;
    }
    
    .blog-search .form-control {
        border-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }
    
    .blog-search .btn {
        border-radius: 0.375rem;
        width: 100%;
    }
}

/* Newsletter widget responsive */
@media (max-width: 768px) {
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .newsletter-form .form-control {
        border-radius: 0.375rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-form .btn {
        border-radius: 0.375rem;
        width: 100%;
    }
}

/* Blog post hover effects */
.blog-post {
    position: relative;
    overflow: hidden;
}

.blog-post::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(40, 167, 69, 0.1), transparent);
    transition: left 0.5s ease;
}

.blog-post:hover::before {
    left: 100%;
}

/* Featured post special effects */
.featured-post {
    position: relative;
    overflow: hidden;
}

.featured-post::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 50px 0;
    border-color: transparent #28a745 transparent transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.featured-post:hover::after {
    opacity: 1;
}

/* Blog post card shadows */
.blog-post {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-post:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.featured-post {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.featured-post:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

/* Blog post image zoom effect */
.blog-post .card-img-top {
    transition: transform 0.3s ease;
}

.blog-post:hover .card-img-top {
    transform: scale(1.05);
}

/* Sidebar widget hover effects */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Blog post read more button animation */
.btn-outline-success {
    position: relative;
    overflow: hidden;
}

.btn-outline-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline-success:hover::before {
    left: 100%;
}

/* Blog post meta information hover */
.blog-meta i {
    transition: color 0.3s ease;
}

.blog-post:hover .blog-meta i {
    color: #28a745;
}

/* Sidebar category hover effects */
.sidebar-category a {
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: block;
}

.sidebar-category a:hover {
    padding-left: 0.5rem;
    color: #28a745 !important;
}

/* Blog post badge hover effects */
.badge {
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

/* Newsletter form focus effects */
.newsletter-form .form-control:focus {
    transform: scale(1.02);
}

/* Blog search form focus effects */
.blog-search .form-control:focus {
    transform: scale(1.02);
}

/* Featured post special badge */
.featured-post .badge.bg-success {
    position: relative;
    overflow: hidden;
}

.featured-post .badge.bg-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.featured-post:hover .badge.bg-success::before {
    left: 100%;
}

/* Blog post card border effects */
.blog-post {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.blog-post:hover {
    border-color: #28a745;
}

/* Featured post special border */
.featured-post {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #28a745, #20c997) border-box;
}

/* Blog post image overlay text */
.blog-post .card-img-top {
    position: relative;
}

.blog-post .card-img-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-post:hover .card-img-top::before {
    opacity: 1;
}

/* Blog post card body hover effects */
.blog-post .card-body {
    transition: background-color 0.3s ease;
}

.blog-post:hover .card-body {
    background-color: #f8f9fa;
}

/* Featured post card body special effects */
.featured-post .card-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.featured-post:hover .card-body {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Blog post author info hover */
.author-info {
    transition: color 0.3s ease;
}

.blog-post:hover .author-info {
    color: #28a745 !important;
}

/* Sidebar widget header effects */
.card-header.bg-success {
    position: relative;
    overflow: hidden;
}

.card-header.bg-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card:hover .card-header.bg-success::before {
    left: 100%;
}

/* Blog post pagination active state */
.pagination .page-item.active .page-link {
    position: relative;
    overflow: hidden;
}

.pagination .page-item.active .page-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pagination .page-item.active:hover .page-link::before {
    left: 100%;
}

/* Blog post card loading animation */
@keyframes blogCardLoad {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-post {
    animation: blogCardLoad 0.6s ease forwards;
}

.blog-post:nth-child(1) { animation-delay: 0.1s; }
.blog-post:nth-child(2) { animation-delay: 0.2s; }
.blog-post:nth-child(3) { animation-delay: 0.3s; }
.blog-post:nth-child(4) { animation-delay: 0.4s; }
.blog-post:nth-child(5) { animation-delay: 0.5s; }
.blog-post:nth-child(6) { animation-delay: 0.6s; }

/* Featured post special loading */
.featured-post {
    animation: blogCardLoad 0.8s ease forwards;
    animation-delay: 0s;
}

/* Blog post card skeleton loading */
@keyframes skeletonLoading {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.blog-post.loading .card-img-top {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: skeletonLoading 1.5s infinite;
}

/* Blog post card focus states */
.blog-post:focus-within {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Blog post card accessibility */
.blog-post .card-title a:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
    text-decoration: none;
}

/* Sidebar widget accessibility */
.card-header:focus-within {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Blog search accessibility */
.blog-search .form-control:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Newsletter form accessibility */
.newsletter-form .form-control:focus {
    outline: 2px solid #28a745;
    outline-offset: 2px;
}

/* Blog post card print styles */
@media print {
    .blog-post {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
    
    .featured-post {
        break-inside: avoid;
        box-shadow: none;
        border: 2px solid #28a745;
    }
    
    .sidebar {
        display: none;
    }
    
    .pagination {
        display: none;
    }
    
    .whatsapp-float {
        display: none;
    }
}

/* Blog post card high contrast mode */
@media (prefers-contrast: high) {
    .blog-post {
        border: 2px solid #000;
    }
    
    .featured-post {
        border: 3px solid #000;
    }
    
    .card-header.bg-success {
        background-color: #000 !important;
        color: #fff !important;
    }
}

/* Blog post card reduced motion */
@media (prefers-reduced-motion: reduce) {
    .blog-post,
    .featured-post,
    .card,
    .badge,
    .btn-outline-success,
    .blog-post .card-img-top,
    .card-header.bg-success,
    .pagination .page-item.active .page-link,
    .sidebar-category a,
    .newsletter-form .form-control,
    .blog-search .form-control {
        transition: none;
        animation: none;
    }
    
    .blog-post::before,
    .blog-post::after,
    .featured-post::after,
    .btn-outline-success::before,
    .featured-post .badge.bg-success::before,
    .card-header.bg-success::before,
    .pagination .page-item.active .page-link::before {
        display: none;
    }
}

/* Blog post card dark mode support */
@media (prefers-color-scheme: dark) {
    .blog-post {
        background-color: #2d3748;
        color: #e2e8f0;
    }
    
    .blog-post .card-body {
        background-color: #2d3748;
        color: #e2e8f0;
    }
    
    .blog-post .card-title a {
        color: #e2e8f0 !important;
    }
    
    .blog-post .card-text {
        color: #a0aec0;
    }
    
    .blog-meta {
        color: #a0aec0;
    }
    
    .card {
        background-color: #2d3748;
        border-color: #4a5568;
    }
    
    .card-header.bg-success {
        background-color: #38a169 !important;
    }
    
    .form-control {
        background-color: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .form-control:focus {
        background-color: #4a5568;
        border-color: #38a169;
        color: #e2e8f0;
    }
    
    .btn-outline-success {
        border-color: #38a169;
        color: #38a169;
    }
    
    .btn-outline-success:hover {
        background-color: #38a169;
        color: #2d3748;
    }
    
    .badge.bg-light {
        background-color: #4a5568 !important;
        color: #e2e8f0 !important;
    }
    
    .pagination .page-link {
        background-color: #4a5568;
        border-color: #718096;
        color: #e2e8f0;
    }
    
    .pagination .page-item.active .page-link {
        background-color: #38a169;
        border-color: #38a169;
        color: #2d3748;
    }
}

/* Post Page Styles */

/* Sidebar Moderna - Últimas Postagens */
.latest-posts-widget {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.latest-posts-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.latest-posts-widget .card-header {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 1.25rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.latest-posts-widget .card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.latest-posts-widget:hover .card-header::before {
    transform: translateX(100%);
}

.latest-posts-widget .card-header h5 {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

.latest-post-item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
}

.latest-post-item:last-child {
    border-bottom: none;
}

.latest-post-item:hover {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
    transform: translateX(4px);
}

.latest-post-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.latest-post-item:hover::before {
    transform: scaleY(1);
}

.post-content {
    width: 100%;
}

.post-title {
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
}

.post-title a {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
}

.post-title a:hover {
    color: #28a745;
    text-decoration: none;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: #6c757d;
}

.post-date, .post-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-category {
    margin-top: 0.5rem;
}

.category-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.latest-post-item:hover .category-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-color: #28a745;
    transform: translateY(-1px);
}

.latest-posts-widget .card-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: none;
    padding: 1rem 1.5rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .latest-post-item {
        padding: 1rem 1.25rem;
        margin: 0.125rem 0.25rem;
    }
    
    .post-title a {
        font-size: 0.9rem;
    }
    
    .post-meta {
        gap: 0.75rem;
        font-size: 0.75rem;
    }
}

.latest-posts-widget .card-footer .btn {
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.3s ease;
}

.latest-posts-widget .card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Responsividade da Sidebar Moderna */
@media (max-width: 991.98px) {
    .latest-post-item {
        padding: 0.875rem 1.25rem;
    }
    
    .post-thumbnail img {
        width: 70px;
        height: 52px;
    }
    
    .post-title a {
        font-size: 0.85rem;
    }
    
    .post-meta {
        font-size: 0.75rem;
        gap: 0.75rem;
    }
}

@media (max-width: 767.98px) {
    .latest-posts-widget .card-header {
        padding: 1rem 1.25rem;
    }
    
    .latest-posts-widget .card-header h5 {
        font-size: 1rem;
    }
    
    .latest-post-item {
        padding: 0.75rem 1rem;
    }
    
    .post-thumbnail {
        margin-right: 0.75rem;
    }
    
    .post-thumbnail img {
        width: 60px;
        height: 45px;
    }
}
.blog-post-content {
    line-height: 1.8;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Post Meta Info */
.post-meta-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 0.95rem;
}

.meta-item i {
    color: #28a745;
    font-size: 1.1rem;
}

.meta-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* Article Meta */
.article-meta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.meta-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.categories-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.categories-section .badge {
    font-size: 0.875rem;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-label {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 2px solid transparent;
}

.social-btn i {
    color: white !important;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white !important;
}

.social-btn:hover i {
    color: white !important;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #1da1f2;
}

.social-btn.linkedin {
    background: #0077b5;
}

.social-btn.whatsapp {
    background: #25d366;
}

.social-btn.copy-link {
    background: #6c757d;
}

/* Content Highlights */
.content-highlight {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.info-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196f3;
}

.success-highlight {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-color: #4caf50;
}

.highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-highlight .highlight-icon {
    background: #2196f3;
    color: white;
}

.success-highlight .highlight-icon {
    background: #4caf50;
    color: white;
}

.highlight-content {
    flex: 1;
}

.highlight-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.highlight-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
    color: white;
    text-align: center;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.cta-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-text {
    text-align: left;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.blog-post-content h2 {
    color: #2c3e50;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 2rem;
    border-bottom: 3px solid #28a745;
    padding-bottom: 0.5rem;
    position: relative;
}

.blog-post-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #28a745, #20c997);
}

.blog-post-content h3 {
    color: #34495e;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
    border-left: 4px solid #28a745;
    padding-left: 1rem;
}

.blog-post-content p {
    margin-bottom: 1.8rem;
    text-align: justify;
    color: #2c3e50;
    line-height: 1.8;
}

.blog-post-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #495057;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 5px solid #28a745;
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.blog-post-content .lead::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #28a745;
    font-family: serif;
    opacity: 0.3;
}

.blog-post-content ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.blog-post-content li {
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding-left: 1rem;
}

.blog-post-content li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.blog-post-content .alert {
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post-content .alert-info {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
}

.blog-post-content .alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

/* Featured Image */
.featured-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

/* Article Meta */
.article-meta {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.article-meta .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
}

.social-share a {
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-share a:hover {
    transform: scale(1.2);
    color: #1e7e34 !important;
}

/* Article Content Cards */
.blog-post-content .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.blog-post-content .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post-content .card-body {
    padding: 1.5rem;
}

.blog-post-content .card-title {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.cta-section h4 {
    color: #28a745;
    font-weight: 600;
}

/* Article Footer */
.article-footer {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.article-footer h5 {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-share-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.social-share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Related Posts */
.related-posts h3 {
    color: #28a745;
    font-weight: 600;
    border-bottom: 3px solid #28a745;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
}

.related-posts .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

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

.related-posts .card-img-top {
    height: 200px;
    object-fit: cover;
}

.related-posts .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
}

.related-posts .card-text {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Author Widget */
.author-widget {
    text-align: center;
    padding: 2rem;
}

.author-widget img {
    border: 4px solid #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.author-widget h6 {
    color: #28a745;
    font-weight: 600;
    margin-top: 1rem;
}

/* Table of Contents */
.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 0.75rem;
}

.table-of-contents li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.table-of-contents a {
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 6px;
}

.table-of-contents a:hover {
    background-color: #e9ecef;
    color: #28a745;
    padding-left: 1rem;
}

.table-of-contents i {
    transition: transform 0.3s ease;
}

.table-of-contents a:hover i {
    transform: translateX(5px);
}

/* Reading Progress Bar */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Article Content Typography */
.blog-post-content {
    font-family: 'Inter', sans-serif;
}

.blog-post-content h2 {
    font-size: 1.75rem;
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

.blog-post-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-content ul li {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Article Content Spacing */
.blog-post-content > * {
    margin-bottom: 1.5rem;
}

.blog-post-content > *:last-child {
    margin-bottom: 0;
}

.blog-post-content h2:first-of-type {
    margin-top: 0;
}

/* Article Content Images */
.blog-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Article Content Blockquotes */
.blog-post-content blockquote {
    border-left: 4px solid #28a745;
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #6c757d;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

/* Article Content Code */
.blog-post-content code {
    background: #f8f9fa;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #e83e8c;
}

.blog-post-content pre {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    border-left: 4px solid #28a745;
}

/* Article Content Tables */
.blog-post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-content th,
.blog-post-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.blog-post-content th {
    background: #28a745;
    color: white;
    font-weight: 600;
}

.blog-post-content tr:nth-child(even) {
    background: #f8f9fa;
}

.blog-post-content tr:hover {
    background: #e9ecef;
}

/* Article Content Links */
.blog-post-content a {
    color: #28a745;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-post-content a:hover {
    color: #1e7e34;
    border-bottom-color: #1e7e34;
}

/* Article Content Lists */
.blog-post-content ul,
.blog-post-content ol {
    padding-left: 2rem;
}

.blog-post-content ul li {
    position: relative;
    padding-left: 0.5rem;
}

.blog-post-content ul li::before {
    content: '•';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.blog-post-content ol {
    counter-reset: item;
}

.blog-post-content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 0.5rem;
}

.blog-post-content ol li::before {
    content: counter(item) '.';
    color: #28a745;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

/* Article Content Emphasis */
.blog-post-content strong {
    color: #28a745;
    font-weight: 600;
}

.blog-post-content em {
    color: #6c757d;
    font-style: italic;
}

/* Article Content Highlights */
.blog-post-content mark {
    background: linear-gradient(120deg, #a8e6cf 0%, #dcedc1 100%);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

/* Article Content Dividers */
.blog-post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #28a745, transparent);
    margin: 3rem 0;
}

/* Article Content Callouts */
.blog-post-content .callout {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
}

.blog-post-content .callout::before {
    content: '💡';
    position: absolute;
    top: -10px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-size: 1.2rem;
}

/* Article Content Stats */
.blog-post-content .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.blog-post-content .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.blog-post-content .stat-number {
    font-size: 2rem;
    font-weight: bold;
    display: block;
}

.blog-post-content .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Article Content Timeline */
.blog-post-content .timeline {
    position: relative;
    padding-left: 2rem;
}

.blog-post-content .timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #28a745;
}

.blog-post-content .timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.blog-post-content .timeline-item::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: #28a745;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #28a745;
}

/* Article Content Comparison */
.blog-post-content .comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.blog-post-content .comparison-item {
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-content .comparison-item.good {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border: 2px solid #28a745;
}

.blog-post-content .comparison-item.bad {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    border: 2px solid #dc3545;
}

.blog-post-content .comparison-title {
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.blog-post-content .comparison-item.good .comparison-title {
    color: #155724;
}

.blog-post-content .comparison-item.bad .comparison-title {
    color: #721c24;
}

/* Article Content Steps */
.blog-post-content .steps {
    counter-reset: step;
}

.blog-post-content .step {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #28a745;
}

.blog-post-content .step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -10px;
    left: 20px;
    background: #28a745;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.blog-post-content .step-title {
    font-weight: 600;
    color: #28a745;
    margin-bottom: 0.5rem;
    padding-left: 2rem;
}

.blog-post-content .step-content {
    padding-left: 2rem;
}

/* Article Content FAQ */
.blog-post-content .faq {
    margin: 2rem 0;
}

.blog-post-content .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-content .faq-question {
    background: #f8f9fa;
    padding: 1rem;
    font-weight: 600;
    color: #28a745;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blog-post-content .faq-question:hover {
    background: #e9ecef;
}

.blog-post-content .faq-answer {
    padding: 1rem;
    background: white;
    border-top: 1px solid #dee2e6;
}

/* Article Content Gallery */
.blog-post-content .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.blog-post-content .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.blog-post-content .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-content .gallery-item:hover img {
    transform: scale(1.05);
}

.blog-post-content .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

/* Article Content Responsive */
@media (max-width: 768px) {
    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .blog-post-content h3 {
        font-size: 1.25rem;
    }
    
    .blog-post-content p {
        font-size: 1rem;
    }
    
    .blog-post-content .comparison {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content .stats {
        grid-template-columns: 1fr;
    }
    
    .blog-post-content .gallery {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-share-buttons {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .social-share-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .meta-divider {
        display: none;
    }
    
    .meta-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .social-share-section {
        justify-content: center;
    }
    
    .content-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Article Content Print Styles */
@media print {
    .blog-post-content {
        font-size: 12pt;
        line-height: 1.6;
    }
    
    .blog-post-content h2,
    .blog-post-content h3 {
        page-break-after: avoid;
    }
    
    .blog-post-content .card,
    .blog-post-content .alert,
    .blog-post-content .cta-section {
        page-break-inside: avoid;
    }
    
    .sidebar,
    .whatsapp-float,
    .social-share,
    .social-share-buttons {
        display: none;
    }
}

/* Article Content Dark Mode */
@media (prefers-color-scheme: dark) {
    .blog-post-content {
        color: #e2e8f0;
    }
    
    .blog-post-content h2,
    .blog-post-content h3 {
        color: #38a169;
    }
    
    .blog-post-content .lead {
        color: #a0aec0;
        border-left-color: #38a169;
    }
    
    .blog-post-content .alert-info {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        color: #e2e8f0;
    }
    
    .blog-post-content .alert-success {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        color: #e2e8f0;
    }
    
    .blog-post-content .card {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .blog-post-content .cta-section {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        border-color: #38a169;
    }
    
    .blog-post-content .article-footer {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .blog-post-content a {
        color: #38a169;
    }
    
    .blog-post-content a:hover {
        color: #48bb78;
    }
    
    .blog-post-content code {
        background: #4a5568;
        color: #fbb6ce;
    }
    
    .blog-post-content pre {
        background: #4a5568;
        border-left-color: #38a169;
    }
    
    .blog-post-content table th {
        background: #38a169;
    }
    
    .blog-post-content table tr:nth-child(even) {
        background: #4a5568;
    }
    
    .blog-post-content table tr:hover {
        background: #718096;
    }
    
    .blog-post-content blockquote {
        background: #4a5568;
        color: #a0aec0;
        border-left-color: #38a169;
    }
    
    .blog-post-content mark {
        background: linear-gradient(120deg, #38a169 0%, #48bb78 100%);
        color: #2d3748;
    }
    
    .blog-post-content .callout {
        background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
        border-color: #38a169;
    }
    
    .blog-post-content .stat-item {
        background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
    }
    
    .blog-post-content .step {
        background: #4a5568;
        border-left-color: #38a169;
    }
    
    .blog-post-content .step-title {
        color: #38a169;
    }
    
    .blog-post-content .faq-question {
        background: #4a5568;
        color: #38a169;
    }
    
    .blog-post-content .faq-question:hover {
        background: #718096;
    }
    
    .blog-post-content .faq-answer {
        background: #2d3748;
    }
}

/* Posts Relacionados */
.related-posts {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.related-posts h2 {
    position: relative;
    display: inline-block;
}

.related-posts h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

.hover-lift {
    transition: all 0.3s ease;
    border: 1px solid rgba(40, 167, 69, 0.1);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.hover-lift .card-title a {
    transition: color 0.3s ease;
}

.hover-lift:hover .card-title a {
    color: var(--dark-green) !important;
}

.hover-lift .btn-outline-success {
    transition: all 0.3s ease;
}

.hover-lift:hover .btn-outline-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

.related-posts .card {
    overflow: hidden;
    border-radius: 15px;
}

.related-posts .card-img-top {
    transition: transform 0.3s ease;
}

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

.related-posts .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    backdrop-filter: blur(10px);
    background: rgba(40, 167, 69, 0.9) !important;
}

.related-posts .card-footer {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 100%);
}

/* Responsividade para posts relacionados */
@media (max-width: 768px) {
    .related-posts .col-md-6 {
        margin-bottom: 1.5rem;
    }
    
    .related-posts h2 {
        font-size: 1.75rem;
    }
    
    .related-posts .card-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .related-posts .col-12 {
        margin-bottom: 1rem;
    }
    
    .related-posts h2 {
        font-size: 1.5rem;
    }
    
    .related-posts .card-body {
        padding: 1rem;
    }
    
    .related-posts .card-footer {
        padding: 0.75rem 1rem;
    }
}

/* Tags Relacionadas */
.related-tags {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid rgba(40, 167, 69, 0.1);
}

.related-tags h3 {
    position: relative;
    display: inline-block;
}

.related-tags h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 1px;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tag-link {
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-link:hover {
    transform: translateY(-2px);
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-link:hover .tag-badge {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    transform: scale(1.05);
}

.tag-badge i {
    font-size: 0.8rem;
    margin-right: 0.5rem;
    opacity: 0.9;
}

/* Responsividade para tags relacionadas */
@media (max-width: 768px) {
    .related-tags h3 {
        font-size: 1.5rem;
    }
    
    .tags-container {
        gap: 0.75rem;
    }
    
    .tag-badge {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .related-tags h3 {
        font-size: 1.25rem;
    }
    
    .tags-container {
        gap: 0.5rem;
        justify-content: center;
    }
    
    .tag-badge {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
}

/* Botões de Compartilhamento Social Modernos */
.social-sharing-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.sharing-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sharing-header {
    text-align: center;
    margin-bottom: 0.5rem;
}

.sharing-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.sharing-title i {
    color: #28a745;
    font-size: 1.2rem;
}

.sharing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.share-btn {
    background: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-btn:hover::before {
    opacity: 1;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.share-btn:active {
    transform: translateY(-2px);
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.share-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.3s ease;
}

/* Cores específicas para cada rede social */
.share-btn.facebook .share-icon {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #1877f2 0%, #166fe5 100%);
    box-shadow: 0 12px 24px rgba(24, 119, 242, 0.3);
}

.share-btn.facebook:hover .share-label {
    color: #1877f2;
}

.share-btn.twitter .share-icon {
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #1da1f2 0%, #1a91da 100%);
    box-shadow: 0 12px 24px rgba(29, 161, 242, 0.3);
}

.share-btn.twitter:hover .share-label {
    color: #1da1f2;
}

.share-btn.linkedin .share-icon {
    background: linear-gradient(135deg, #0077b5 0%, #006097 100%);
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #0077b5 0%, #006097 100%);
    box-shadow: 0 12px 24px rgba(0, 119, 181, 0.3);
}

.share-btn.linkedin:hover .share-label {
    color: #0077b5;
}

.share-btn.whatsapp .share-icon {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
}

.share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #20ba5a 100%);
    box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

.share-btn.whatsapp:hover .share-label {
    color: #25d366;
}

.share-btn.copy-link .share-icon {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
}

.share-btn.copy-link:hover {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    box-shadow: 0 12px 24px rgba(107, 114, 128, 0.3);
}

.share-btn.copy-link:hover .share-label {
    color: #6b7280;
}

/* Mensagem de sucesso ao copiar */
.copy-success-message {
    margin-top: 1rem;
    animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.success-content i {
    font-size: 1.1rem;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade para botões de compartilhamento modernos */
@media (max-width: 768px) {
    .social-sharing-modern {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .sharing-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.75rem;
    }
    
    .share-btn {
        min-height: 70px;
        padding: 0.75rem 0.5rem;
    }
    
    .share-icon {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .share-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .social-sharing-modern {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .sharing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .share-btn {
        min-height: 60px;
        padding: 0.5rem;
    }
    
    .share-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .share-label {
        font-size: 0.75rem;
    }
    
    .sharing-title {
        font-size: 1rem;
    }
}

/* ===== ESTILOS PARA PÁGINA DE BUSCA ===== */

/* Header da busca */
.search-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.search-header h1 {
    color: var(--dark-gray);
    font-weight: 600;
}

.search-header .text-muted {
    font-size: 1.1rem;
}

/* Resultados da busca */
.search-result-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.search-result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.search-result-item .post-image-container {
    position: relative;
    overflow: hidden;
}

.search-result-item .post-image-container img {
    transition: transform 0.3s ease;
}

.search-result-item:hover .post-image-container img {
    transform: scale(1.05);
}

.search-result-item .card-title a {
    transition: color 0.3s ease;
}

.search-result-item .card-title a:hover {
    color: var(--primary-green) !important;
}

.search-result-item .post-meta {
    font-size: 0.875rem;
}

.search-result-item .badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
}

/* Paginação */
.pagination .page-link {
    border: 1px solid #dee2e6;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--light-green);
    border-color: var(--primary-green);
    color: var(--dark-green);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

/* Sem resultados */
.no-results {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border: 1px solid #dee2e6;
}

.no-results-icon {
    color: #adb5bd;
}

.suggestions .btn {
    transition: all 0.3s ease;
    border-radius: 20px;
}

.suggestions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Widgets da sidebar */
.search-widget .card-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
}

.search-widget .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-widget .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.search-widget .btn {
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-widget .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-1px);
}

/* Categorias */
.category-item {
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: var(--light-green);
}

.category-item a {
    transition: all 0.3s ease;
}

.category-item:hover a {
    color: var(--primary-green) !important;
}

.category-item:hover .fa-chevron-right {
    transform: translateX(3px);
    transition: transform 0.3s ease;
}

/* Tags populares */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
}

.tag-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    background-color: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.tag-link .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
}

/* Responsividade para página de busca */
@media (max-width: 768px) {
    .search-header {
        padding: 1.5rem;
        text-align: center;
    }
    
    .search-header .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-result-item .row {
        flex-direction: column;
    }
    
    .search-result-item .col-md-4 {
        width: 100%;
    }
    
    .search-result-item .col-md-8 {
        width: 100%;
    }
    
    .search-result-item .post-image-container img {
        height: 200px !important;
        border-radius: 8px 8px 0 0 !important;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .search-header {
        padding: 1rem;
    }
    
    .search-header h1 {
        font-size: 1.5rem;
    }
    
    .search-header .text-muted {
        font-size: 1rem;
    }
    
    .search-result-item {
        margin-bottom: 1.5rem;
    }
    
    .search-result-item .card-body {
        padding: 1rem;
    }
    
    .search-result-item .card-title {
        font-size: 1.1rem;
    }
    
    .suggestions .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .tags-container {
        justify-content: center;
    }
    
    .tag-link {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
}

/* ===== ESTILOS PARA PÁGINA 404 ===== */

/* Header do erro */
.error-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.error-icon {
    position: relative;
}

.error-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 4px solid #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(255, 193, 7, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
    }
}

.error-header h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--dark-gray);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.error-header h2 {
    color: var(--gray);
    font-weight: 500;
}

.error-header .lead {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Botões de ação */
.action-buttons .btn {
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 500;
    padding: 1rem 1.5rem;
}

.action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.action-buttons .btn-success {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
}

.action-buttons .btn-outline-success:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-color: var(--primary-green);
}

/* Seção de busca */
.search-section .card {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.search-section .card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.search-section .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px 0 0 12px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-section .form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.search-section .btn {
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-section .btn:hover {
    background-color: var(--dark-green);
    transform: translateY(-1px);
}

/* Seção de posts recentes */
.recent-post-item {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.recent-post-item:hover {
    border-color: var(--primary-green);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
    transform: translateY(-2px);
}

.recent-post-item .post-title a {
    transition: color 0.3s ease;
}

.recent-post-item:hover .post-title a {
    color: var(--primary-green) !important;
}

.recent-post-item .btn {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.recent-post-item .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Seção de categorias */
.category-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    cursor: pointer;
}

.category-card:hover {
    border-color: var(--primary-green);
    background-color: var(--light-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.2);
}

.category-card .fa-folder {
    transition: all 0.3s ease;
}

.category-card:hover .fa-folder {
    transform: scale(1.1);
    color: var(--dark-green);
}

.category-name {
    transition: color 0.3s ease;
}

.category-card:hover .category-name {
    color: var(--primary-green) !important;
}

/* Seção de contato */
.contact-section .card {
    border: 2px solid #e9ecef;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-section .card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.15);
}

.contact-section .btn {
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
}

.contact-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.3);
}

.contact-section .btn-outline-success:hover {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-color: var(--primary-green);
}

/* Responsividade para página 404 */
@media (max-width: 768px) {
    .error-header {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .error-header h1 {
        font-size: 3rem;
    }
    
    .error-header .lead {
        font-size: 1.1rem;
    }
    
    .error-circle {
        width: 100px;
        height: 100px;
    }
    
    .error-circle i {
        font-size: 2.5rem !important;
    }
    
    .action-buttons .btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .search-section .form-control,
    .search-section .btn {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
    
    .recent-posts-section .row,
    .categories-section .row {
        margin: 0 -0.5rem;
    }
    
    .recent-posts-section .col-md-6,
    .categories-section .col-md-3 {
        padding: 0 0.5rem;
    }
}

@media (max-width: 576px) {
    .error-header {
        padding: 1.5rem 1rem;
    }
    
    .error-header h1 {
        font-size: 2.5rem;
    }
    
    .error-header h2 {
        font-size: 1.25rem;
    }
    
    .error-header .lead {
        font-size: 1rem;
    }
    
    .error-circle {
        width: 80px;
        height: 80px;
    }
    
    .error-circle i {
        font-size: 2rem !important;
    }
    
    .action-buttons .row {
        margin: 0;
    }
    
    .action-buttons .col-md-4 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .search-section .col-md-6 {
        padding: 0;
    }
    
    .search-section .form-control,
    .search-section .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .recent-post-item,
    .category-card {
        padding: 1rem !important;
    }
    
    .contact-section .row {
        margin: 0;
    }
    
    .contact-section .col-md-4 {
        padding: 0;
        margin-bottom: 1rem;
    }
    
    .contact-section .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA SEÇÃO DE COLETA SELETIVA ===== */

/* Seção principal */
.coleta-seletiva-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Header da seção */
.coleta-seletiva-info .display-5 {
    color: var(--dark-green);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.coleta-seletiva-info .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border-radius: 2px;
}

/* Cards informativos */
.info-card .card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.info-card .card-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    padding: 1.25rem 1.5rem;
}

.info-card .card-header h4 {
    font-weight: 600;
    margin: 0;
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Cards de modelo */
.modelo-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    background: #fff;
}

.modelo-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.15);
    transform: translateY(-3px);
}

.modelo-card h5 {
    font-weight: 600;
}

.modelo-card ul li {
    margin-bottom: 0.5rem;
}

.modelo-card ul li i {
    color: var(--primary-green);
}

/* Tabela de cores */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.table {
    margin-bottom: 0;
}

.table thead th {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.table tbody td {
    padding: 0.75rem 1rem;
    vertical-align: middle;
    border-color: #e9ecef;
}

.table tbody tr:hover {
    background-color: var(--light-green);
}

.badge {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

/* Lista de benefícios */
.coleta-seletiva-info .fa-lg {
    font-size: 1.5rem;
}

.coleta-seletiva-info .d-flex.align-items-start {
    transition: all 0.3s ease;
}

.coleta-seletiva-info .d-flex.align-items-start:hover {
    transform: translateX(5px);
}

.coleta-seletiva-info h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Cards de contato */
.contact-info-card {
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #e9ecef;
}

.contact-info-card:hover {
    border-color: var(--primary-green);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.15);
    transform: translateY(-3px);
}

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

.contact-info-card h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Call to Action final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.cta-final:hover::before {
    left: 100%;
}

/* Estilos para .cta-final movidos para seção específica */

.cta-final .btn-light {
    background: white;
    color: var(--primary-green);
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-final .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Listas com ícones */
.coleta-seletiva-info .list-unstyled li {
    transition: all 0.3s ease;
}

.coleta-seletiva-info .list-unstyled li:hover {
    transform: translateX(5px);
}

.coleta-seletiva-info .fa-check-circle {
    color: var(--primary-green);
}

.coleta-seletiva-info .fa-star {
    color: #ffc107;
}

/* Responsividade para seção de coleta seletiva */
@media (max-width: 768px) {
    .coleta-seletiva-info .display-5 {
        font-size: 2.5rem;
    }
    
    .coleta-seletiva-info .h4 {
        font-size: 1.25rem;
    }
    
    .info-card .card-body {
        padding: 1.5rem;
    }
    
    .modelo-card {
        margin-bottom: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.5rem 0.75rem;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
    
    .cta-final {
        padding: 2rem 1.5rem !important;
    }
    
    .cta-final .btn-light {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .coleta-seletiva-info .display-5 {
        font-size: 2rem;
    }
    
    .coleta-seletiva-info .h4 {
        font-size: 1.1rem;
    }
    
    .info-card .card-body {
        padding: 1rem;
    }
    
    .info-card .card-header {
        padding: 1rem;
    }
    
    .modelo-card {
        padding: 1rem !important;
    }
    
    .table-responsive {
        font-size: 0.8rem;
    }
    
    .table thead th,
    .table tbody td {
        padding: 0.375rem 0.5rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.375rem;
    }
    
    .contact-info-card {
        padding: 1rem !important;
        margin-bottom: 1rem;
    }
    
    .cta-final {
        padding: 1.5rem 1rem !important;
    }
    
    .cta-final .btn-light {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .coleta-seletiva-info .fa-lg {
        font-size: 1.25rem;
    }
}

/* Estilos específicos para cabeçalhos de cards com gradiente */
.card-header.bg-gradient-success h4,
.card-header.bg-gradient-success h5,
.card-header.bg-gradient-success h6 {
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.card-header.bg-gradient-success p {
    color: #e9ecef !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Melhorias globais para legibilidade em fundos escuros */
.bg-gradient-success,
.bg-success {
    color: #f8f9fa !important;
}

.bg-gradient-success h1,
.bg-gradient-success h2,
.bg-gradient-success h3,
.bg-gradient-success h4,
.bg-gradient-success h5,
.bg-gradient-success h6,
.bg-success h1,
.bg-success h2,
.bg-success h3,
.bg-success h4,
.bg-success h5,
.bg-success h6 {
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bg-gradient-success p,
.bg-success p {
    color: #e9ecef !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Sobrescrever text-white em fundos escuros para melhor legibilidade */
.bg-gradient-success.text-white,
.bg-success.text-white,
.bg-gradient-success .text-white,
.bg-success .text-white {
    color: #f8f9fa !important;
}

.bg-gradient-success.text-white h1,
.bg-gradient-success.text-white h2,
.bg-gradient-success.text-white h3,
.bg-gradient-success.text-white h4,
.bg-gradient-success.text-white h5,
.bg-gradient-success.text-white h6,
.bg-success.text-white h1,
.bg-success.text-white h2,
.bg-success.text-white h3,
.bg-success.text-white h4,
.bg-success.text-white h5,
.bg-success.text-white h6,
.bg-gradient-success .text-white h1,
.bg-gradient-success .text-white h2,
.bg-gradient-success .text-white h3,
.bg-gradient-success .text-white h4,
.bg-gradient-success .text-white h5,
.bg-gradient-success .text-white h6,
.bg-success .text-white h1,
.bg-success .text-white h2,
.bg-success .text-white h3,
.bg-success .text-white h4,
.bg-success .text-white h5,
.bg-success .text-white h6 {
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bg-success .text-white h6 {
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Regras específicas para a seção CTA final */
.cta-final,
.cta-final * {
    color: inherit;
}

.cta-final h1,
.cta-final h2,
.cta-final h3,
.cta-final h4,
.cta-final h5,
.cta-final h6 {
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.cta-final p {
    color: #e9ecef !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Regra final para garantir prioridade máxima dos estilos de legibilidade */
.bg-gradient-success *,
.bg-success * {
    color: inherit;
}

/* ===== ESTILOS PARA A SEÇÃO DE CESTOS DE LIXO ===== */

/* Seção principal do guia de cestos */
.cestos-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.cestos-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de modelo de material */
.modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.modelo-card .card-header {
    border-bottom: none;
}

.modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gradientes para os headers dos cards */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%) !important;
}

/* Tabelas responsivas */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

.table th {
    font-weight: 600;
    border-top: none;
    background-color: #f8f9fa;
}

.table td {
    vertical-align: middle;
}

/* Badges coloridos para coleta seletiva */
.badge {
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Ícones grandes para aplicações */
.cestos-guide-section .fa-2x {
    transition: all 0.3s ease;
}

.cestos-guide-section .fa-2x:hover {
    transform: scale(1.1);
    color: #28a745 !important;
}

/* Cards de aplicação */
.cestos-guide-section .border.rounded {
    transition: all 0.3s ease;
    border-color: #dee2e6 !important;
}

.cestos-guide-section .border.rounded:hover {
    border-color: #28a745 !important;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.1);
}

/* Alertas informativos */
.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-info .text-info {
    color: #0c5460 !important;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .cestos-guide-section .display-5 {
        font-size: 2rem;
    }
    
    .cestos-guide-section .h4 {
        font-size: 1.25rem;
    }
    
    .modelo-card .card-header h4 {
        font-size: 1rem;
    }
    
    .cestos-guide-section .p-5 {
        padding: 2rem !important;
    }
    
    .cestos-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .cestos-guide-section .display-5 {
        font-size: 1.75rem;
    }
    
    .cestos-guide-section .p-5 {
        padding: 1.5rem !important;
    }
    
    .cestos-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE BANCOS DE MADEIRA ===== */

/* Seção principal do guia de bancos */
.bancos-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bancos-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de modelo de material para bancos */
.bancos-guide-section .modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.bancos-guide-section .modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.bancos-guide-section .modelo-card .card-header {
    border-bottom: none;
}

.bancos-guide-section .modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gradientes específicos para bancos */
.bg-gradient-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%) !important;
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%) !important;
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%) !important;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%) !important;
}

/* Cards de aplicação para bancos */
.bancos-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.bancos-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos bancos */
.bancos-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.bancos-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Tabelas de manutenção */
.bancos-guide-section .table-responsive {
    border-radius: 8px;
    overflow: hidden;
}

.bancos-guide-section .table td {
    vertical-align: middle;
    border: none;
}

/* Alertas coloridos para cuidados especiais */
.bancos-guide-section .alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.bancos-guide-section .alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.bancos-guide-section .alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.bancos-guide-section .alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

/* Call to Action final para bancos */
.bancos-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.bancos-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .bancos-guide-section .display-5 {
        font-size: 2rem;
    }

    .bancos-guide-section .h4 {
        font-size: 1.25rem;
    }

    .bancos-guide-section .modelo-card .card-header h4 {
        font-size: 1rem;
    }

    .bancos-guide-section .p-5 {
        padding: 2rem !important;
    }

    .bancos-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .bancos-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .bancos-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .bancos-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE CONTAINERS ===== */

/* Seção principal do guia de containers */
.containers-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.containers-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de modelo de material para containers */
.containers-guide-section .modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.containers-guide-section .modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.containers-guide-section .modelo-card .card-header {
    border-bottom: none;
}

.containers-guide-section .modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Cards de aplicação para containers */
.containers-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.containers-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos containers */
.containers-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.containers-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para modelos populares */
.containers-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.containers-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Badges de capacidade */
.containers-guide-section .badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.containers-guide-section .badge:hover {
    transform: scale(1.05);
}

/* Call to Action final para containers */
.containers-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.containers-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .containers-guide-section .display-5 {
        font-size: 2rem;
    }

    .containers-guide-section .h4 {
        font-size: 1.25rem;
    }

    .containers-guide-section .modelo-card .card-header h4 {
        font-size: 1rem;
    }

    .containers-guide-section .p-5 {
        padding: 2rem !important;
    }

    .containers-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .containers-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .containers-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .containers-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE CONTAINERS DE AÇO ===== */

/* Seção principal do guia de containers de aço */
.aco-containers-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aco-containers-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de modelo de material para containers de aço */
.aco-containers-guide-section .modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.aco-containers-guide-section .modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.aco-containers-guide-section .modelo-card .card-header {
    border-bottom: none;
}

.aco-containers-guide-section .modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Gradientes específicos para containers de aço */
.bg-gradient-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
}

/* Cards de aplicação para containers de aço */
.aco-containers-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.aco-containers-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos containers de aço */
.aco-containers-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.aco-containers-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para modelos populares */
.aco-containers-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.aco-containers-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Badges de capacidade */
.aco-containers-guide-section .badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.aco-containers-guide-section .badge:hover {
    transform: scale(1.05);
}

/* Call to Action final para containers de aço */
.aco-containers-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.aco-containers-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .aco-containers-guide-section .display-5 {
        font-size: 2rem;
    }

    .aco-containers-guide-section .h4 {
        font-size: 1.25rem;
    }

    .aco-containers-guide-section .modelo-card .card-header h4 {
        font-size: 1rem;
    }

    .aco-containers-guide-section .p-5 {
        padding: 2rem !important;
    }

    .aco-containers-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .aco-containers-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .aco-containers-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .aco-containers-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE ACESSÓRIOS ===== */

/* Seção principal do guia de acessórios */
.acessorios-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.acessorios-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para acessórios */
.acessorios-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.acessorios-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos acessórios */
.acessorios-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.acessorios-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para coletores */
.acessorios-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.acessorios-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para sacos de lixo */
.acessorios-guide-section .bg-primary.rounded-circle,
.acessorios-guide-section .bg-danger.rounded-circle,
.acessorios-guide-section .bg-warning.rounded-circle,
.acessorios-guide-section .bg-success.rounded-circle,
.acessorios-guide-section .bg-secondary.rounded-circle {
    transition: all 0.3s ease;
}

.acessorios-guide-section .bg-primary.rounded-circle:hover,
.acessorios-guide-section .bg-danger.rounded-circle:hover,
.acessorios-guide-section .bg-warning.rounded-circle:hover,
.acessorios-guide-section .bg-success.rounded-circle:hover,
.acessorios-guide-section .bg-secondary.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Cards de aplicação para rodas */
.acessorios-guide-section .bg-light.rounded {
    transition: all 0.3s ease;
}

.acessorios-guide-section .bg-light.rounded:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Alertas específicos para acessórios */
.acessorios-guide-section .alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.acessorios-guide-section .alert-danger .text-danger {
    color: #721c24 !important;
}

/* Call to Action final para acessórios */
.acessorios-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.acessorios-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .acessorios-guide-section .display-5 {
        font-size: 2rem;
    }

    .acessorios-guide-section .h4 {
        font-size: 1.25rem;
    }

    .acessorios-guide-section .p-5 {
        padding: 2rem !important;
    }

    .acessorios-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .acessorios-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .acessorios-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .acessorios-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE LIXEIRAS ===== */

/* Seção principal do guia de lixeiras */
.lixeiras-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.lixeiras-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para lixeiras */
.lixeiras-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.lixeiras-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Cards de modelo para lixeiras */
.lixeiras-guide-section .modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.lixeiras-guide-section .modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.lixeiras-guide-section .modelo-card .card-header {
    border-bottom: none;
}

.lixeiras-guide-section .modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Ícones para vantagens das lixeiras */
.lixeiras-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.lixeiras-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para lixeiras */
.lixeiras-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.lixeiras-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de lixeiras */
.lixeiras-guide-section .bg-primary.rounded-circle,
.lixeiras-guide-section .bg-success.rounded-circle,
.lixeiras-guide-section .bg-info.rounded-circle,
.lixeiras-guide-section .bg-warning.rounded-circle,
.lixeiras-guide-section .bg-secondary.rounded-circle,
.lixeiras-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.lixeiras-guide-section .bg-primary.rounded-circle:hover,
.lixeiras-guide-section .bg-success.rounded-circle:hover,
.lixeiras-guide-section .bg-info.rounded-circle:hover,
.lixeiras-guide-section .bg-warning.rounded-circle:hover,
.lixeiras-guide-section .bg-secondary.rounded-circle:hover,
.lixeiras-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para lixeiras */
.lixeiras-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.lixeiras-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .lixeiras-guide-section .display-5 {
        font-size: 2rem;
    }

    .lixeiras-guide-section .h4 {
        font-size: 1.25rem;
    }

    .lixeiras-guide-section .p-5 {
        padding: 2rem !important;
    }

    .lixeiras-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .lixeiras-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .lixeiras-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .lixeiras-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE LIXEIRAS COM PEDAL ===== */

/* Seção principal do guia de lixeiras com pedal */
.pedal-lixeiras-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pedal-lixeiras-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para lixeiras com pedal */
.pedal-lixeiras-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.pedal-lixeiras-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens das lixeiras com pedal */
.pedal-lixeiras-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.pedal-lixeiras-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para lixeiras com pedal */
.pedal-lixeiras-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.pedal-lixeiras-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de lixeiras com pedal */
.pedal-lixeiras-guide-section .bg-primary.rounded-circle,
.pedal-lixeiras-guide-section .bg-success.rounded-circle,
.pedal-lixeiras-guide-section .bg-info.rounded-circle,
.pedal-lixeiras-guide-section .bg-warning.rounded-circle,
.pedal-lixeiras-guide-section .bg-secondary.rounded-circle,
.pedal-lixeiras-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.pedal-lixeiras-guide-section .bg-primary.rounded-circle:hover,
.pedal-lixeiras-guide-section .bg-success.rounded-circle:hover,
.pedal-lixeiras-guide-section .bg-info.rounded-circle:hover,
.pedal-lixeiras-guide-section .bg-warning.rounded-circle:hover,
.pedal-lixeiras-guide-section .bg-secondary.rounded-circle:hover,
.pedal-lixeiras-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para lixeiras com pedal */
.pedal-lixeiras-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.pedal-lixeiras-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .pedal-lixeiras-guide-section .display-5 {
        font-size: 2rem;
    }

    .pedal-lixeiras-guide-section .h4 {
        font-size: 1.25rem;
    }

    .pedal-lixeiras-guide-section .p-5 {
        padding: 2rem !important;
    }

    .pedal-lixeiras-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .pedal-lixeiras-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .pedal-lixeiras-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .pedal-lixeiras-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE LIXEIRAS DE MADEIRA ===== */

/* Seção principal do guia de lixeiras de madeira */
.madeira-lixeiras-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.madeira-lixeiras-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para lixeiras de madeira */
.madeira-lixeiras-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.madeira-lixeiras-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Cards de modelo para lixeiras de madeira */
.madeira-lixeiras-guide-section .modelo-card {
    transition: all 0.3s ease;
    border: none;
}

.madeira-lixeiras-guide-section .modelo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.madeira-lixeiras-guide-section .modelo-card .card-header {
    border-bottom: none;
}

.madeira-lixeiras-guide-section .modelo-card .card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Ícones para vantagens das lixeiras de madeira */
.madeira-lixeiras-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.madeira-lixeiras-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para lixeiras de madeira */
.madeira-lixeiras-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.madeira-lixeiras-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de lixeiras de madeira */
.madeira-lixeiras-guide-section .bg-primary.rounded-circle,
.madeira-lixeiras-guide-section .bg-success.rounded-circle,
.madeira-lixeiras-guide-section .bg-info.rounded-circle,
.madeira-lixeiras-guide-section .bg-warning.rounded-circle,
.madeira-lixeiras-guide-section .bg-secondary.rounded-circle,
.madeira-lixeiras-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.madeira-lixeiras-guide-section .bg-primary.rounded-circle:hover,
.madeira-lixeiras-guide-section .bg-success.rounded-circle:hover,
.madeira-lixeiras-guide-section .bg-info.rounded-circle:hover,
.madeira-lixeiras-guide-section .bg-warning.rounded-circle:hover,
.madeira-lixeiras-guide-section .bg-secondary.rounded-circle:hover,
.madeira-lixeiras-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para lixeiras de madeira */
.madeira-lixeiras-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.madeira-lixeiras-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .madeira-lixeiras-guide-section .display-5 {
        font-size: 2rem;
    }

    .madeira-lixeiras-guide-section .h4 {
        font-size: 1.25rem;
    }

    .madeira-lixeiras-guide-section .p-5 {
        padding: 2rem !important;
    }

    .madeira-lixeiras-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .madeira-lixeiras-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .madeira-lixeiras-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .madeira-lixeiras-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE MADEIRA PLÁSTICA ===== */

/* Seção principal do guia de madeira plástica */
.madeira-plastica-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.madeira-plastica-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para madeira plástica */
.madeira-plastica-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.madeira-plastica-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens da madeira plástica */
.madeira-plastica-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.madeira-plastica-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para madeira plástica */
.madeira-plastica-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.madeira-plastica-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de madeira plástica */
.madeira-plastica-guide-section .bg-primary.rounded-circle,
.madeira-plastica-guide-section .bg-success.rounded-circle,
.madeira-plastica-guide-section .bg-info.rounded-circle,
.madeira-plastica-guide-section .bg-warning.rounded-circle,
.madeira-plastica-guide-section .bg-secondary.rounded-circle,
.madeira-plastica-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.madeira-plastica-guide-section .bg-primary.rounded-circle:hover,
.madeira-plastica-guide-section .bg-success.rounded-circle:hover,
.madeira-plastica-guide-section .bg-info.rounded-circle:hover,
.madeira-plastica-guide-section .bg-warning.rounded-circle:hover,
.madeira-plastica-guide-section .bg-secondary.rounded-circle:hover,
.madeira-plastica-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para madeira plástica */
.madeira-plastica-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.madeira-plastica-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .madeira-plastica-guide-section .display-5 {
        font-size: 2rem;
    }

    .madeira-plastica-guide-section .h4 {
        font-size: 1.25rem;
    }

    .madeira-plastica-guide-section .p-5 {
        padding: 2rem !important;
    }

    .madeira-plastica-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .madeira-plastica-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .madeira-plastica-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .madeira-plastica-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE MESAS E CADEIRAS COM PÉS DE ALUMÍNIO ===== */

/* Seção principal do guia de móveis com pés de alumínio */
.aluminio-moveis-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.aluminio-moveis-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para móveis com pés de alumínio */
.aluminio-moveis-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.aluminio-moveis-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos móveis com pés de alumínio */
.aluminio-moveis-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.aluminio-moveis-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para móveis com pés de alumínio */
.aluminio-moveis-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.aluminio-moveis-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de móveis com pés de alumínio */
.aluminio-moveis-guide-section .bg-primary.rounded-circle,
.aluminio-moveis-guide-section .bg-success.rounded-circle,
.aluminio-moveis-guide-section .bg-info.rounded-circle,
.aluminio-moveis-guide-section .bg-warning.rounded-circle,
.aluminio-moveis-guide-section .bg-secondary.rounded-circle,
.aluminio-moveis-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.aluminio-moveis-guide-section .bg-primary.rounded-circle:hover,
.aluminio-moveis-guide-section .bg-success.rounded-circle:hover,
.aluminio-moveis-guide-section .bg-info.rounded-circle:hover,
.aluminio-moveis-guide-section .bg-warning.rounded-circle:hover,
.aluminio-moveis-guide-section .bg-secondary.rounded-circle:hover,
.aluminio-moveis-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para móveis com pés de alumínio */
.aluminio-moveis-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.aluminio-moveis-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .aluminio-moveis-guide-section .display-5 {
        font-size: 2rem;
    }

    .aluminio-moveis-guide-section .h4 {
        font-size: 1.25rem;
    }

    .aluminio-moveis-guide-section .p-5 {
        padding: 2rem !important;
    }

    .aluminio-moveis-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .aluminio-moveis-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .aluminio-moveis-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .aluminio-moveis-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE TOALHEIROS E PAPELEIRAS ===== */

/* Seção principal do guia de toalheiros e papeleiras */
.papeleiras-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.papeleiras-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para toalheiros e papeleiras */
.papeleiras-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.papeleiras-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens dos toalheiros e papeleiras */
.papeleiras-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.papeleiras-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para toalheiros e papeleiras */
.papeleiras-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.papeleiras-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de toalheiros e papeleiras */
.papeleiras-guide-section .bg-primary.rounded-circle,
.papeleiras-guide-section .bg-success.rounded-circle,
.papeleiras-guide-section .bg-info.rounded-circle,
.papeleiras-guide-section .bg-warning.rounded-circle,
.papeleiras-guide-section .bg-secondary.rounded-circle,
.papeleiras-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.papeleiras-guide-section .bg-primary.rounded-circle:hover,
.papeleiras-guide-section .bg-success.rounded-circle:hover,
.papeleiras-guide-section .bg-info.rounded-circle:hover,
.papeleiras-guide-section .bg-warning.rounded-circle:hover,
.papeleiras-guide-section .bg-secondary.rounded-circle:hover,
.papeleiras-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para toalheiros e papeleiras */
.papeleiras-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.papeleiras-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .papeleiras-guide-section .display-5 {
        font-size: 2rem;
    }

    .papeleiras-guide-section .h4 {
        font-size: 1.25rem;
    }

    .papeleiras-guide-section .p-5 {
        padding: 2rem !important;
    }

    .papeleiras-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .papeleiras-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .papeleiras-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .papeleiras-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== ESTILOS PARA A SEÇÃO DE SABONETEIRAS E SUPORTES PARA ÁLCOOL EM GEL ===== */

/* Seção principal do guia de saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.saboneteiras-guide-section .divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    border-radius: 2px;
}

/* Cards de aplicação para saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section .info-card {
    transition: all 0.3s ease;
    border: none;
}

.saboneteiras-guide-section .info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Ícones para vantagens das saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section .bg-success.rounded-circle {
    transition: all 0.3s ease;
}

.saboneteiras-guide-section .bg-success.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Ícones grandes para saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section .fa-3x {
    transition: all 0.3s ease;
}

.saboneteiras-guide-section .fa-3x:hover {
    transform: scale(1.1);
}

/* Círculos coloridos para tipos de saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section .bg-primary.rounded-circle,
.saboneteiras-guide-section .bg-success.rounded-circle,
.saboneteiras-guide-section .bg-info.rounded-circle,
.saboneteiras-guide-section .bg-warning.rounded-circle,
.saboneteiras-guide-section .bg-secondary.rounded-circle,
.saboneteiras-guide-section .bg-danger.rounded-circle {
    transition: all 0.3s ease;
}

.saboneteiras-guide-section .bg-primary.rounded-circle:hover,
.saboneteiras-guide-section .bg-success.rounded-circle:hover,
.saboneteiras-guide-section .bg-info.rounded-circle:hover,
.saboneteiras-guide-section .bg-warning.rounded-circle:hover,
.saboneteiras-guide-section .bg-secondary.rounded-circle:hover,
.saboneteiras-guide-section .bg-danger.rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Call to Action final para saboneteiras e suportes para álcool em gel */
.saboneteiras-guide-section .cta-final {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none;
}

.saboneteiras-guide-section .cta-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .saboneteiras-guide-section .display-5 {
        font-size: 2rem;
    }

    .saboneteiras-guide-section .h4 {
        font-size: 1.25rem;
    }

    .saboneteiras-guide-section .p-5 {
        padding: 2rem !important;
    }

    .saboneteiras-guide-section .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .saboneteiras-guide-section .display-5 {
        font-size: 1.75rem;
    }

    .saboneteiras-guide-section .p-5 {
        padding: 1.5rem !important;
    }

    .saboneteiras-guide-section .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}