/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #F8F9FA;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #4A00E0;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4A00E0;
}

.nav-auth {
    display: flex;
    gap: 1rem;
}

.btn-login {
    background: transparent;
    border: 2px solid #4A00E0;
    color: #4A00E0;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: #4A00E0;
    color: white;
}

.btn-register {
    background: #4A00E0;
    border: none;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-register:hover {
    background: #6C63FF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #4A00E0 0%, #6C63FF 100%);
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-bar {
    background: white;
    border-radius: 50px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.search-input, .search-location {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.search-input i, .search-location i {
    color: #4A00E0;
}

.search-input input, .search-location input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 1rem;
    color: #333;
}

.search-btn {
    background: #00C897;
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #00a67d;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.hero-placeholder i {
    opacity: 0.7;
}

/* Categorias */
.categories {
    padding: 4rem 0;
    background: white;
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 0, 224, 0.2);
}

.category-card i {
    font-size: 3rem;
    color: #4A00E0;
    margin-bottom: 1rem;
}

.category-card h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

.category-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Como Funciona */
.how-it-works {
    padding: 4rem 0;
    background: #F8F9FA;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #4A00E0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 1rem;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Depoimentos */
.testimonials {
    padding: 4rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #F8F9FA;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #FFD700;
    margin: 0 2px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #333;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #4A00E0;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4A00E0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4A00E0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .search-bar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

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

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .categories h2,
    .how-it-works h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .category-card {
        padding: 1.5rem;
    }

    .step {
        padding: 1rem;
    }
}

/* ========== LOADING STATES E SKELETON SCREENS ========== */

/* Loading Spinner Global */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4A00E0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner-large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: #4A00E0;
}

.loading-content .loading-spinner-large {
    margin-bottom: 1rem;
}

/* Skeleton Screens */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-text.medium {
    width: 80%;
}

.skeleton-text.long {
    width: 100%;
}

.skeleton-title {
    height: 1.5rem;
    width: 70%;
    margin-bottom: 1rem;
}

.skeleton-image {
    height: 200px;
    width: 100%;
    margin-bottom: 1rem;
}

.skeleton-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.skeleton-product {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

/* Loading States para Botões */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: white;
}

/* ========== ANIMAÇÕES APRIMORADAS ========== */

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Animation */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stagger-item.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ========== MELHORIAS DE INTERAÇÃO ========== */

/* Hover Effects Aprimorados */
.enhanced-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 0, 224, 0.15);
}

/* Focus States Melhorados */
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #4A00E0;
    box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
    transform: translateY(-2px);
}

/* Ripple Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.ripple:active::before {
    width: 300px;
    height: 300px;
}

/* ========== TOAST NOTIFICATIONS APRIMORADAS ========== */

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.toast {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #4A00E0;
}

.toast.show {
    transform: translateX(0);
}

.toast.success {
    border-left-color: #00C897;
}

.toast.error {
    border-left-color: #FF6B6B;
}

.toast.warning {
    border-left-color: #FFB74D;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-icon.success { color: #00C897; }
.toast-icon.error { color: #FF6B6B; }
.toast-icon.warning { color: #FFB74D; }
.toast-icon.info { color: #4A00E0; }

.toast-message {
    flex: 1;
    font-weight: 500;
    color: #333;
}

.toast-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.toast-close:hover {
    background: #F8F9FA;
}

/* ========== PROGRESS INDICATORS ========== */

.progress-bar {
    width: 100%;
    height: 4px;
    background: #E1E5E9;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4A00E0, #6C63FF);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

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

/* ========== MICRO-INTERAÇÕES ========== */

/* Bounce Animation */
.bounce {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0,-8px,0);
    }
    70% {
        transform: translate3d(0,-4px,0);
    }
    90% {
        transform: translate3d(0,-2px,0);
    }
}

/* Pulse Animation */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 0, 224, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(74, 0, 224, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 0, 224, 0);
    }
}

/* Shake Animation */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* ========== RESPONSIVIDADE APRIMORADA ========== */

@media (max-width: 768px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast {
        transform: translateY(-100%);
    }
    
    .toast.show {
        transform: translateY(0);
    }
    
    .skeleton-product {
        grid-template-columns: 1fr;
    }
    
    .loading-overlay {
        padding: 2rem;
    }
}

/* ========== DARK MODE SUPPORT ========== */

@media (prefers-color-scheme: dark) {
    .skeleton {
        background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
    }
    
    .toast {
        background: #2a2a2a;
        color: #fff;
    }
    
    .loading-overlay {
        background: rgba(42, 42, 42, 0.9);
    }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */

/* Focus Visible */
.focus-visible {
    outline: 2px solid #4A00E0;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High Contrast */
@media (prefers-contrast: high) {
    .btn-login,
    .btn-register {
        border-width: 3px;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        border-width: 3px;
    }
}

/* Adicionar ao final do arquivo style.css */

/* ===== SISTEMA DE REVIEWS ===== */
.reviews-section {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.reviews-header {
    margin-bottom: 2rem;
}

.reviews-header h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.5rem;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.rating-overview {
    text-align: center;
}

.overall-rating {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4A00E0;
    display: block;
}

.rating-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.rating-count {
    color: #666;
    font-size: 0.9rem;
}

.rating-breakdown {
    margin-top: 1rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stars-label {
    min-width: 80px;
    color: #666;
}

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

.progress-fill {
    height: 100%;
    background: #FFD700;
    transition: width 0.3s ease;
}

.count {
    min-width: 30px;
    text-align: right;
    color: #666;
}

.criteria-ratings {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.criteria-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.criteria-label {
    font-weight: 500;
    color: #333;
    min-width: 120px;
}

.criteria-stars {
    color: #FFD700;
    font-size: 0.9rem;
}

.criteria-stars .small {
    font-size: 0.8rem;
}

.criteria-avg {
    font-weight: 600;
    color: #4A00E0;
    min-width: 30px;
    text-align: right;
}

.reviews-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-write-review {
    background: #4A00E0;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-write-review:hover {
    background: #3a00b8;
}

.reviews-filters {
    display: flex;
    gap: 1rem;
}

.reviews-filters select {
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background: white;
    cursor: pointer;
}

.reviews-filters select:focus {
    outline: none;
    border-color: #4A00E0;
}

/* Lista de Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 1.5rem;
    background: white;
    transition: box-shadow 0.3s ease;
}

.review-item:hover {
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #4A00E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-details h5 {
    margin: 0 0 0.25rem 0;
    color: #333;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.verified-badge {
    color: #00C897;
    font-size: 0.8rem;
}

.review-rating {
    text-align: right;
}

.review-rating .stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rating-number {
    font-weight: 600;
    color: #333;
}

.review-content {
    margin-bottom: 1rem;
}

.criteria-ratings-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.criteria-ratings-mini .criteria-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.criteria-ratings-mini .criteria-item span {
    color: #666;
    min-width: 80px;
}

.review-comment {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-tags .tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-images img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.owner-response {
    background: #f0f7ff;
    border-left: 4px solid #4A00E0;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.response-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4A00E0;
}

.response-date {
    margin-left: auto;
    color: #666;
}

.owner-response p {
    margin: 0;
    color: #333;
    line-height: 1.5;
}

.review-actions {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-helpful,
.btn-report {
    background: none;
    border: 1px solid #e0e0e0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-helpful:hover {
    background: #e8f5e8;
    border-color: #00C897;
    color: #00C897;
}

.btn-helpful.active {
    background: #00C897;
    border-color: #00C897;
    color: white;
}

.btn-report:hover {
    background: #ffeaea;
    border-color: #f44336;
    color: #f44336;
}

.no-reviews {
    text-align: center;
    padding: 3rem 1rem;
    color: #666;
}

.no-reviews i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 1rem;
}

.no-reviews h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

/* Modal de Avaliação */
.review-form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: white;
    border-radius: 15px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.modal-header h4 {
    margin: 0;
    color: #333;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #333;
}

.review-form {
    padding: 1.5rem;
}

.rating-section,
.criteria-section,
.comment-section,
.tags-section,
.images-section {
    margin-bottom: 2rem;
}

.rating-section h5,
.criteria-section h5 {
    margin-bottom: 1rem;
    color: #333;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.star-rating i {
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.hover {
    color: #FFD700;
}

.star-rating i.fas {
    color: #FFD700;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.criteria-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.criteria-item label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.criteria-item .star-rating {
    font-size: 1.2rem;
}

.comment-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.comment-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
}

.comment-section textarea:focus {
    outline: none;
    border-color: #4A00E0;
}

.tags-section label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 500;
    color: #333;
}

.tags-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.tag-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.tag-option:hover {
    background: #f0f0f0;
}

.tag-option input {
    cursor: pointer;
}

.images-section label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.images-section input {
    width: 100%;
    padding: 0.5rem;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}

.images-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

.btn-cancel {
    background: none;
    border: 2px solid #e0e0e0;
    color: #666;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: #f0f0f0;
    border-color: #ccc;
}

.btn-submit {
    background: #4A00E0;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #3a00b8;
}

/* Notificações de Review */
.review-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 1001;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
}

.review-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.review-notification.success {
    border-left: 4px solid #00C897;
}

.review-notification.error {
    border-left: 4px solid #f44336;
}

.review-notification.info {
    border-left: 4px solid #2196f3;
}

.review-notification i {
    font-size: 1.2rem;
}

.review-notification.success i {
    color: #00C897;
}

.review-notification.error i {
    color: #f44336;
}

.review-notification.info i {
    color: #2196f3;
}

/* Responsividade */
@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reviews-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .reviews-filters {
        flex-direction: column;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .criteria-ratings-mini {
        grid-template-columns: 1fr;
    }
    
    .criteria-grid {
        grid-template-columns: 1fr;
    }
    
    .tags-options {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 0;
        border-radius: 0;
        height: 100vh;
        max-height: 100vh;
    }
}

@media (max-width: 480px) {
    .review-item {
        padding: 1rem;
    }
    
    .reviewer-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .review-actions {
        flex-direction: column;
    }
    
    .review-notification {
        left: 10px;
        right: 10px;
        transform: translateY(-100px);
    }
    
    .review-notification.show {
        transform: translateY(0);
    }
}

/* === SISTEMA DE FAVORITOS ===
.favorites-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 i {
    color: #e74c3c;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Filtros de Favoritos */
.favorites-filters {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.filter-group select {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.clear-favorites-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-favorites-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Grid de Favoritos */
.favorites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.favorite-item {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.favorite-date {
    padding: 0.75rem 1rem 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 1rem;
}

.favorite-date small {
    color: var(--text-secondary);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Botão de Favorito */
.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.favorite-btn i {
    font-size: 1.2rem;
    color: #bdc3c7;
    transition: all 0.3s ease;
}

.favorite-btn.active i {
    color: #e74c3c;
    animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Estado Vazio */
.empty-favorites {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.empty-icon {
    margin-bottom: 2rem;
    opacity: 0.5;
}

.empty-favorites h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.empty-favorites p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Contador de Favoritos no Header */
.favorites-count {
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 18px;
    text-align: center;
    display: none;
}

.nav-favorites {
    position: relative;
    display: inline-block;
}

/* Responsividade */
@media (max-width: 768px) {
    .favorites-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .filter-group {
        width: 100%;
    }
    
    .clear-favorites-btn {
        margin-left: 0;
        justify-content: center;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .favorites-section {
        padding: 100px 0 60px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .favorites-filters {
        padding: 1rem;
    }
}

/* === NAVEGAÇÃO DE FAVORITOS === */
.nav-favorites a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-favorites a:hover {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.nav-favorites .favorites-count {
    background: #e74c3c;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
    display: none;
}

.nav-favorites .favorites-count.show {
    display: inline-block;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .nav-favorites {
        width: 100%;
    }
    
    .nav-favorites a {
        justify-content: center;
        padding: 1rem;
    }
}

/* ===== SISTEMA DE BUSCA AVANÇADA ===== */

/* Seção Principal da Busca Avançada */
.advanced-search-section {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

/* Cabeçalho da Busca */
.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #4A00E0 0%, #6C63FF 100%);
    color: white;
}

.search-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.toggle-filters {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toggle-filters:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.toggle-filters.active {
    background: white;
    color: #4A00E0;
}

/* Barra de Busca Principal */
.main-search-bar {
    padding: 2rem;
    position: relative;
}

.search-input-container {
    display: flex;
    background: #F8F9FA;
    border: 2px solid #E5E7EB;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.search-input-container:focus-within {
    border-color: #4A00E0;
    box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
}

#main-search {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: #333;
}

#main-search::placeholder {
    color: #9CA3AF;
}

.voice-search-btn,
.search-btn {
    border: none;
    background: transparent;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.voice-search-btn {
    color: #6B7280;
    border-right: 1px solid #E5E7EB;
}

.voice-search-btn:hover {
    color: #4A00E0;
    background: rgba(74, 0, 224, 0.1);
}

.voice-search-btn.recording {
    color: #EF4444;
    animation: pulse 1.5s infinite;
}

.search-btn {
    background: #4A00E0;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    margin: -2px;
}

.search-btn:hover {
    background: #6C63FF;
    transform: scale(1.05);
}

/* Sugestões e Histórico */
.search-suggestions,
.search-history {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.suggestion-item,
.history-item {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background 0.2s ease;
    border-bottom: 1px solid #F3F4F6;
}

.suggestion-item:hover,
.history-item:hover {
    background: #F8F9FA;
}

.suggestion-item:last-child,
.history-item:last-child {
    border-bottom: none;
}

.suggestion-item i,
.history-item i {
    color: #9CA3AF;
    width: 16px;
}

.history-header {
    padding: 0.75rem 1.5rem;
    background: #F8F9FA;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #374151;
}

.history-header button {
    background: none;
    border: none;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s ease;
}

.history-header button:hover {
    color: #6B7280;
}

/* Container de Filtros */
.filters-container {
    padding: 0 2rem 2rem;
    display: none;
    animation: slideDown 0.3s ease;
}

.filters-container.active {
    display: block;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Grupos de Filtros */
.filter-group {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #E5E7EB;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-group select,
.filter-group input[type="text"],
.filter-group input[type="date"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: #4A00E0;
    box-shadow: 0 0 0 3px rgba(74, 0, 224, 0.1);
}

/* Filtro de Preço */
.price-range {
    position: relative;
}

.range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #E5E7EB;
    outline: none;
    margin: 0.5rem 0;
    -webkit-appearance: none;
    appearance: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4A00E0;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(74, 0, 224, 0.4);
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4A00E0;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: #4A00E0;
    margin-top: 0.5rem;
}

/* Filtro de Localização */
.location-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.location-input input {
    flex: 1;
}

.location-btn {
    background: #4A00E0;
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-btn:hover {
    background: #6C63FF;
    transform: scale(1.05);
}

.radius-control {
    margin-top: 1rem;
}

.radius-control label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Filtro de Avaliação */
.rating-filter {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.star-rating-filter {
    display: flex;
    gap: 0.25rem;
}

.star-rating-filter i {
    font-size: 1.5rem;
    color: #D1D5DB;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating-filter i:hover,
.star-rating-filter i.active {
    color: #FCD34D;
    transform: scale(1.1);
}

#rating-text {
    font-size: 0.9rem;
    color: #6B7280;
    font-weight: normal;
}

/* Filtro de Disponibilidade */
.availability-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Filtro de Características */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.feature-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
    font-weight: normal !important;
    margin-bottom: 0 !important;
}

.feature-option:hover {
    background: rgba(74, 0, 224, 0.1);
}

.feature-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #4A00E0;
}

/* Ações dos Filtros */
.filter-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E7EB;
}

.btn-clear-filters,
.btn-apply-filters {
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-clear-filters {
    background: #F3F4F6;
    border: 1px solid #D1D5DB;
    color: #6B7280;
}

.btn-clear-filters:hover {
    background: #E5E7EB;
    color: #374151;
}

.btn-apply-filters {
    background: #4A00E0;
    border: 1px solid #4A00E0;
    color: white;
}

.btn-apply-filters:hover {
    background: #6C63FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 0, 224, 0.3);
}

/* Informações dos Resultados */
.search-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: #F8F9FA;
    border-top: 1px solid #E5E7EB;
}

.results-count {
    font-weight: 600;
    color: #374151;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-options label {
    font-weight: 500;
    color: #6B7280;
    font-size: 0.95rem;
}

.sort-options select {
    padding: 0.5rem 0.75rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.5rem;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Filtros Ativos */
.active-filters {
    padding: 1rem 2rem;
    background: #F8F9FA;
    border-top: 1px solid #E5E7EB;
    display: none;
}

.active-filters.has-filters {
    display: block;
}

.active-filters-title {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tag {
    background: #4A00E0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 0.3s ease;
}

.filter-tag button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.filter-tag button:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animações */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Estados de Loading */
.search-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #6B7280;
}

.search-loading i {
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsividade */
@media (max-width: 1024px) {
    .filters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .main-search-bar {
        padding: 1.5rem;
    }
    
    .filters-container {
        padding: 0 1.5rem 1.5rem;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-results-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }
    
    .filter-actions {
        flex-direction: column;
    }
    
    .btn-clear-filters,
    .btn-apply-filters {
        width: 100%;
        justify-content: center;
    }
    
    .availability-dates {
        grid-template-columns: 1fr;
    }
    
    .location-input {
        flex-direction: column;
    }
    
    .location-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .search-header h2 {
        font-size: 1.25rem;
    }
    
    .toggle-filters {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .main-search-bar {
        padding: 1rem;
    }
    
    #main-search {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .voice-search-btn,
    .search-btn {
        padding: 0.75rem;
    }
    
    .filter-group {
        padding: 1rem;
    }
    
    .features-grid {
        gap: 0.5rem;
    }
    
    .filter-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Estados Especiais */
.search-input-container.voice-active {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: #6B7280;
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #D1D5DB;
}

.no-results h3 {
    margin-bottom: 0.5rem;
    color: #374151;
}

.search-suggestions-empty {
    padding: 1rem 1.5rem;
    text-align: center;
    color: #9CA3AF;
    font-style: italic;
}

/* Botão de chat nos produtos */
.chat-btn {
    position: absolute;
    top: 10px;
    left: 50px;
    background: rgba(102, 126, 234, 0.9);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-10px);
}

.produto-card:hover .chat-btn {
    opacity: 1;
    transform: translateY(0);
}

.chat-btn:hover {
    background: rgba(102, 126, 234, 1);
    transform: scale(1.1);
}

/* Ações na parte inferior do produto */
.produto-actions-bottom {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-chat {
    flex: 1;
    background: #667eea;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-chat:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.btn-alugar {
    flex: 2;
}

/* ===== SISTEMA DE CHAT ===== */

/* Botão flutuante do chat */
#chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

#chat-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

#chat-button.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

#chat-button i {
    color: white;
    font-size: 24px;
}

.chat-unread-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
}

/* Interface principal do chat */
#chat-interface {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
    overflow: hidden;
}

#chat-interface.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

#chat-interface.minimized {
    transform: translateY(20px) scale(0.8);
    opacity: 0;
}

/* Header do chat */
.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-actions {
    display: flex;
    gap: 10px;
}

.chat-actions button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chat-actions button:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Conteúdo do chat */
.chat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Lista de conversas */
.chat-conversations {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-search {
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.chat-search input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.chat-search input:focus {
    border-color: #667eea;
}

.chat-search i {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.conversations-list {
    flex: 1;
    overflow-y: auto;
}

.conversation-item {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.conversation-item:hover {
    background: #f8f9fa;
}

.conversation-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.conversation-info {
    flex: 1;
    min-width: 0;
}

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

.conversation-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.conversation-time {
    font-size: 12px;
    color: #999;
}

.conversation-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.last-message {
    font-size: 13px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.unread-count {
    background: #667eea;
    color: white;
    border-radius: 10px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}

.user-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    left: 47px;
    border: 2px solid white;
}

.user-status.online {
    background: #2ed573;
}

.user-status.offline {
    background: #a4b0be;
}

/* Área de mensagens */
.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chat-messages-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 12px;
}

#back-to-conversations {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

#back-to-conversations:hover {
    background: #f0f0f0;
}

.chat-user-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-user-details {
    display: flex;
    flex-direction: column;
}

.chat-user-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.chat-user-status {
    font-size: 12px;
}

.chat-user-status.online {
    color: #2ed573;
}

.chat-user-status.offline {
    color: #a4b0be;
}

/* Container de mensagens */
.messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

.message.sent {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message-text {
    background: #f0f0f0;
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.message.sent .message-text {
    background: #667eea;
    color: white;
}

.message-time {
    font-size: 11px;
    color: #999;
    text-align: center;
}

.chat-image {
    max-width: 200px;
    max-height: 200px;
    border-radius: 10px;
    cursor: pointer;
}

/* Área de input */
.chat-input-area {
    padding: 15px;
    border-top: 1px solid #eee;
}

.chat-input-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 8px;
}

.chat-attachment-btn {
    background: none;
    border: none;
    color: #667eea;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.chat-attachment-btn:hover {
    background: rgba(102, 126, 234, 0.1);
}

#chat-message-input {
    flex: 1;
    border: none;
    background: none;
    padding: 8px 12px;
    font-size: 14px;
    outline: none;
}

#chat-send-btn {
    background: #667eea;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 50%;
    transition: background 0.2s ease;
}

#chat-send-btn:hover {
    background: #5a67d8;
}

/* Responsividade do Chat */
@media (max-width: 768px) {
    #chat-interface {
        width: calc(100vw - 40px);
        height: calc(100vh - 40px);
        bottom: 20px;
        right: 20px;
        left: 20px;
        border-radius: 15px;
    }
    
    #chat-button {
        bottom: 30px;
        right: 30px;
    }
    
    .message {
        max-width: 90%;
    }
    
    .chat-image {
        max-width: 150px;
        max-height: 150px;
    }
}

/* Scrollbar personalizada */
.conversations-list::-webkit-scrollbar,
.messages-container::-webkit-scrollbar {
    width: 4px;
}

.conversations-list::-webkit-scrollbar-track,
.messages-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.conversations-list::-webkit-scrollbar-thumb,
.messages-container::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
}

.conversations-list::-webkit-scrollbar-thumb:hover,
.messages-container::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* =================================
   COMPARISON SYSTEM
   ================================= */

/* Comparison Navigation */
.comparison-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-color);
}

.comparison-link:hover {
    background-color: var(--bg-secondary);
    transform: translateY(-2px);
}

.comparison-link.active {
    background-color: var(--primary-color);
    color: white;
}

.comparison-icon {
    font-size: 1.2rem;
}

.comparison-count {
    background-color: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
    animation: pulse 2s infinite;
}

.comparison-link.active .comparison-count {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Comparison Page */
.comparison-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
}

.comparison-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-count-text {
    font-weight: 600;
    color: var(--text-color);
}

.comparison-limit {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.clear-comparison {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clear-comparison:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Comparison Content */
.comparison-content {
    margin-bottom: 3rem;
}

/* Empty State */
.comparison-empty {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-secondary);
    border-radius: 1rem;
    border: 2px dashed var(--border-color);
}

.comparison-empty .empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.comparison-empty h3 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.comparison-empty p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Comparison Table */
.comparison-table-container {
    background-color: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    overflow-x: auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    background-color: var(--bg-secondary);
    border-bottom: 2px solid var(--border-color);
}

.comparison-label {
    padding: 1rem;
    font-weight: 600;
    color: var(--text-color);
    background-color: var(--bg-secondary);
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.comparison-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.comparison-product-header {
    padding: 1rem;
    text-align: center;
    position: relative;
    border-right: 1px solid var(--border-color);
}

.comparison-product-header:last-child {
    border-right: none;
}

.comparison-product-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-color);
    padding-right: 2rem;
}

.remove-from-comparison {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--danger-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.remove-from-comparison:hover {
    background: var(--danger-hover);
    transform: scale(1.1);
}

/* Comparison Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.comparison-value {
    padding: 1rem;
    text-align: center;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-value:last-child {
    border-right: none;
}

.comparison-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.comparison-value .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-value .rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--warning-color);
}

.comparison-value .rating-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comparison-value .category {
    background-color: var(--bg-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.comparison-value .location {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.comparison-value .btn {
    margin: 0.25rem;
}

/* Suggested Products */
.suggested-products {
    margin-top: 3rem;
}

.suggested-products h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-color);
}

.suggested-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.suggested-products .product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.suggested-products .product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.suggested-products .product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.suggested-products .product-card:hover .product-actions {
    opacity: 1;
}

.suggested-products .btn-icon {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.suggested-products .btn-icon:hover {
    background: white;
    transform: scale(1.1);
}

.suggested-products .add-to-comparison {
    color: var(--primary-color);
}

.suggested-products .add-to-favorites {
    color: var(--danger-color);
}

.suggested-products .product-info {
    padding: 1.5rem;
}

.suggested-products .product-name {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.suggested-products .product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--warning-color);
}

.suggested-products .product-rating span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggested-products .product-price {
    margin-bottom: 0.5rem;
}

.suggested-products .product-price .price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.suggested-products .product-category {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.suggested-products .product-footer {
    padding: 0 1.5rem 1.5rem;
}

.suggested-products .btn-sm {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-controls {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-label {
        background-color: var(--primary-color);
        color: white;
        text-align: center;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .comparison-products,
    .comparison-values {
        grid-template-columns: 1fr;
    }
    
    .comparison-value {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .comparison-value:last-child {
        border-bottom: none;
    }
    
    .comparison-product-header {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .comparison-product-header:last-child {
        border-bottom: none;
    }
    
    .suggested-products .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .comparison-empty {
        padding: 2rem 1rem;
    }
    
    .comparison-empty .empty-icon {
        font-size: 3rem;
    }
    
    .comparison-value {
        padding: 0.75rem;
    }
    
    .comparison-image {
        width: 80px;
        height: 60px;
    }
}