 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            text-decoration: none;
            
        }
        
        

        :root {
            --bg-primary: #ffffff;
            --bg-secondary: #f8f9fa;
            --text-primary: #212529;
            --text-secondary: #6c757d;
            --accent: #0d6efd;
            --accent-hover: #0b5ed7;
            --border: #dee2e6;
            --card-shadow: rgba(0,0,0,0.08);
        }

        [data-theme="dark"] {
            --bg-primary: #1a1a1a;
            --bg-secondary: #242424;
            --text-primary: #e9ecef;
            --text-secondary: #adb5bd;
            --accent: #4dabf7;
            --accent-hover: #339af0;
            --border: #3a3a3a;
            --card-shadow: rgba(0,0,0,0.3);
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            transition: background 0.3s, color 0.3s;
            line-height: 1.6;
                overflow-x: hidden;

        }

        header {
            background: var(--bg-primary);
            border-bottom: 1px solid var(--border);
            
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .theme-toggle {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            color: var(--text-primary);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.2s;
        }

        .theme-toggle:hover {
            transform: scale(1.05);
        }

        .hero {
            background: #274C77;
            color: white;
            padding: 4rem 1.5rem;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .section-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: var(--bg-secondary);
            border: 1px solid #5b1df4;
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            cursor: pointer;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px var(--card-shadow);
        }

        .product-image {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: #f7f8f9;
        }
        
        @media (max-width: 768px) {
            .product-image {
                height: 160px;
            }
            
        }

        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* cobre todo o card sem deformar */
            display: block;
            
        }
        
        /* Badge */
           .product-image .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #274C77;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
               
           }

        .badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #dc3545;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: #6096BA;
            margin-bottom: 0.5rem;
            
        }

        .product-title {
            font-size: 0.85rem;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .product-meta {
            display: flex;
            justify-content: space-between;
            color: #fff;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        .btn {
            width: 100%;
            background: #274C77;
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn:hover {
            background: var(--accent-hover);
        }

        footer {
            background: var(--bg-secondary);
            border-top: 1px solid var(--border);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--accent);
        }

        .footer-section a {
            display: block;
            color: #274C77;
            text-decoration: none;
            margin-bottom: 0.5rem;
            transition: color 0.2s;
        }

        .footer-section a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-secondary);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 1.75rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .nav-links a:not(.theme-toggle) {
                display: inline-flex;
                align-items: center;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 1.5rem;
            }
        }

        /* MY ADS PAGE STYLES - Prefixed with myads- */
        .myads-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 2rem;
        }

        .myads-sidebar {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 90px;
        }

        .myads-profile {
            text-align: center;
            margin-bottom: 2rem;
        }

        .myads-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1rem;
            position: relative;
        }

        .myads-status {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 20px;
            height: 20px;
            background: #28a745;
            border: 3px solid var(--bg-secondary);
            border-radius: 50%;
        }

        .myads-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .myads-company {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .myads-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .myads-info-item:last-child {
            border-bottom: none;
        }

        .myads-info-icon {
            font-size: 1.25rem;
        }

        .myads-info-text {
            flex: 1;
        }

        .myads-info-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: block;
        }

        .myads-info-value {
            font-weight: 600;
        }

        .myads-stats {
            margin-top: 2rem;
        }

        .myads-stat-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .myads-stat-item:last-child {
            border-bottom: none;
        }

        .myads-stat-label {
            color: var(--text-secondary);
        }

        .myads-stat-value {
            font-weight: 700;
            color: var(--accent);
        }

        .myads-stat-active {
            color: #28a745;
        }

        .myads-main {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .myads-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .myads-title {
            font-size: 2rem;
            font-weight: 700;
        }

        .myads-count {
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .myads-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: box-shadow 0.2s;
        }

        .myads-card:hover {
            box-shadow: 0 4px 12px var(--card-shadow);
        }

        .myads-card-body {
            padding: 1.5rem;
            display: grid;
            grid-template-columns: 180px 1fr auto;
            gap: 1.5rem;
            align-items: center;
        }

        .myads-product-img {
            width: 180px;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .myads-details {
            flex: 1;
        }

        .myads-product-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .myads-product-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .myads-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-end;
        }

        .myads-price {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--accent);
        }

        .myads-btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.95rem;
        }

        .myads-btn-accept {
            background: #28a745;
            color: white;
        }

        .myads-btn-accept:hover {
            background: #218838;
            transform: translateY(-2px);
        }

        .myads-btn-reject {
            background: transparent;
            color: #dc3545;
            border: 1px solid #dc3545;
        }

        .myads-btn-reject:hover {
            background: #dc3545;
            color: white;
        }

        .myads-offers-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fff3cd;
            color: #856404;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .myads-offers-badge:hover {
            background: #ffeaa7;
            transform: scale(1.05);
        }

        .myads-offers-panel {
            border-top: 1px solid var(--border);
            padding: 1.5rem;
            background: var(--bg-primary);
            display: none;
        }

        .myads-offers-panel.active {
            display: block;
            animation: myads-slideDown 0.3s ease-out;
        }

        @keyframes myads-slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .myads-offers-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .myads-offer-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem;
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 0.75rem;
            transition: all 0.2s;
        }

        .myads-offer-item:hover {
            border-color: var(--accent);
            box-shadow: 0 2px 8px var(--card-shadow);
        }

        .myads-offer-info {
            flex: 1;
        }

        .myads-offer-user {
            font-weight: 600;
            margin-bottom: 0.25rem;
        }

        .myads-offer-meta {
            display: flex;
            gap: 1rem;
            color: var(--text-secondary);
            font-size: 0.85rem;
        }

        .myads-offer-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 0 1.5rem;
        }

        .myads-offer-actions {
            display: flex;
            gap: 0.75rem;
        }

        .myads-btn-small {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        .myads-best-badge {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        @media (max-width: 1024px) {
            .myads-container {
                grid-template-columns: 1fr;
            }

            .myads-sidebar {
                position: static;
            }

            .myads-card-body {
                grid-template-columns: 1fr;
            }

            .myads-product-img {
                width: 100%;
                height: 200px;
            }

            .myads-actions {
                align-items: stretch;
            }

            .myads-btn {
                width: 100%;
            }

            .myads-offer-item {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .myads-offer-actions {
                width: 100%;
            }

            .myads-btn-small {
                flex: 1;
            }
        }

        /* OFFERS PAGE STYLES - Prefixed with offers- */
        .offers-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            display: grid;
            grid-template-columns: 320px 1fr;
            gap: 2rem;
        }

        .offers-sidebar {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            height: fit-content;
            position: sticky;
            top: 90px;
        }

        .offers-profile {
            text-align: center;
            margin-bottom: 2rem;
        }

        .offers-avatar {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            margin: 0 auto 1rem;
            position: relative;
        }

        .offers-status {
            position: absolute;
            bottom: 5px;
            right: 5px;
            width: 20px;
            height: 20px;
            background: #28a745;
            border: 3px solid var(--bg-secondary);
            border-radius: 50%;
        }

        .offers-name {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .offers-company {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .offers-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .offers-info-item:last-child {
            border-bottom: none;
        }

        .offers-info-icon {
            font-size: 1.25rem;
        }

        .offers-info-text {
            flex: 1;
        }

        .offers-info-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            display: block;
        }

        .offers-info-value {
            font-weight: 600;
        }

        .offers-stats {
            margin-top: 2rem;
        }

        .offers-stat-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
        }

        .offers-stat-item:last-child {
            border-bottom: none;
        }

        .offers-stat-label {
            color: var(--text-secondary);
        }

        .offers-stat-value {
            font-weight: 700;
            color: var(--accent);
        }

        .offers-main {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .offers-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .offers-title {
            font-size: 2rem;
            font-weight: 700;
        }

        .offers-count {
            background: var(--accent);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .offers-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            display: grid;
            grid-template-columns: 180px 1fr auto;
            gap: 1.5rem;
            align-items: center;
            transition: box-shadow 0.2s;
        }

        .offers-card:hover {
            box-shadow: 0 4px 12px var(--card-shadow);
        }

        .offers-product-img {
            width: 180px;
            height: 120px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .offers-details {
            flex: 1;
        }

        .offers-product-title {
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .offers-product-desc {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .offers-meta {
            display: flex;
            gap: 2rem;
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .offers-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .offers-actions {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            align-items: flex-end;
        }

        .offers-price {
            font-size: medium;
            font-weight: 700;
            color: var(--accent);
        }

        .offers-btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            font-size: 0.95rem;
        }

        .offers-btn-primary {
            background: var(--accent);
            color: white;
        }

        .offers-btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .offers-btn-secondary {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border);
        }

        .offers-btn-secondary:hover {
            background: var(--bg-secondary);
            color: var(--text-primary);
        }

        .offers-timer {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #dc3545;
            font-size: 0.9rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .offers-timer-icon {
            font-size: 1.2rem;
            animation: offers-pulse 2s infinite;
        }

        @keyframes offers-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .offers-status-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: 0.5rem;
        }

        .offers-status-waiting {
            background: #fff3cd;
            color: #856404;
        }

        .offers-status-accepted {
            background: #d4edda;
            color: #155724;
        }

        @media (max-width: 1024px) {
            .offers-container {
                grid-template-columns: 1fr;
            }

            .offers-sidebar {
                position: static;
            }

            .offers-card {
                grid-template-columns: 1fr;
            }

            .offers-product-img {
                width: 100%;
                height: 200px;
            }

            .offers-actions {
                align-items: stretch;
            }

            .offers-btn {
                width: 100%;
            }
        }
       


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,.3);
}

 .pd-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 2rem;
        }

        .pd-main {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .pd-gallery-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            padding: 1.5rem;
        }

        .pd-badges {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }

        .pd-badge {
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-size: 0.85rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pd-badge-success {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success);
        }

        .pd-badge-warning {
            background: rgba(245, 158, 11, 0.2);
            color: var(--warning);
        }

        .pd-gallery-wrapper {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 1rem;
        }

        .pd-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            max-height: 500px;
            overflow-y: auto;
        }

        .pd-thumbnails::-webkit-scrollbar {
            width: 6px;
        }

        .pd-thumbnails::-webkit-scrollbar-track {
            background: var(--bg-tertiary);
            border-radius: 3px;
        }

        .pd-thumbnails::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 3px;
        }

        .pd-thumbnail {
            width: 100px;
            height: 100px;
            border: 2px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-tertiary);
            overflow: hidden;
        }

        .pd-thumbnail:hover {
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .pd-thumbnail.active {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
        }

        .pd-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pd-main-image {
            width: 100%;
            height: 500px;
            
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .pd-main-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .pd-info-section {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
        }

        .pd-title {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .pd-subtitle {
            color: var(--text-secondary);
            margin-bottom: 2rem;
        }

        .pd-specs-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .pd-spec-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--bg-tertiary);
            border-radius: 8px;
        }

        .pd-spec-icon {
            font-size: 1.5rem;
        }

        .pd-spec-label {
            font-size: 0.75rem;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pd-spec-value {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .pd-description {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
        }

        .pd-description h3 {
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .pd-description p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .pd-link {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .pd-link:hover {
            text-decoration: underline;
        }

        .pd-location {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .pd-location-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
        }

        .pd-location-info h4 {
            margin-bottom: 0.25rem;
        }

        .pd-location-address {
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .pd-similar {
            margin-top: 2rem;
        }

        .pd-similar h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .pd-similar-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
        }

        .pd-similar-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.2s;
            cursor: pointer;
        }

        .pd-similar-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 16px var(--card-shadow);
            border-color: var(--accent);
        }

        .pd-similar-img {
            width: 100%;
            height: 150px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
        }

        .pd-similar-info {
            padding: 1rem;
        }

        .pd-similar-price {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.5rem;
        }

        .pd-similar-title {
            font-size: 0.85rem;
            color: var(--text-secondary);
        }

        .pd-sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .pd-price-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 2rem;
            position: relative;
            top: 1rem;
        }

        .pd-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 1rem;
        }

        .pd-payment-icons {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .pd-payment-icon {
            font-size: 1.5rem;
        }

        .pd-installments {
            color: var(--success);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .pd-discount-banner {
            background: rgba(16, 185, 129, 0.2);
            color: var(--success);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .alert {
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .alert-warning {
            background: rgba(245, 158, 11, 0.2);
            color: var(--warning);
            border: 1px solid rgba(245, 158, 11, 0.3);
        }

        .alert-info {
            background: rgba(102, 126, 234, 0.2);
            color: var(--accent);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .pd-input {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid var(--border);
            border-radius: 8px;
            background: var(--bg-tertiary);
            color: var(--text-primary);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .btn-buy {
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            background: var(--accent);
            color: white;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-buy:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        }

        .pd-seller-card {
            background: var(--bg-secondary);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 1.5rem;
        }

        .pd-seller-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pd-seller-avatar {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .pd-seller-name {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .pd-seller-verified {
            color: var(--success);
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .pd-seller-stats {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .pd-seller-stat {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .pd-seller-label {
            color: var(--text-secondary);
        }

        .pd-seller-value {
            font-weight: 600;
        }

        .pd-btn-secondary {
            width: 100%;
            padding: 0.875rem;
            border: 2px solid var(--accent);
            border-radius: 8px;
            background: transparent;
            color: var(--accent);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pd-btn-secondary:hover {
            background: var(--accent);
            color: white;
        }

        .pd-verified-section {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .pd-verified-title {
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pd-verified-list {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .pd-verified-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .pd-verified-icon {
            color: var(--success);
        }

        .pd-security-banner {
            background: rgba(245, 158, 11, 0.2);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1.5rem;
        }

        .pd-security-title {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
            color: var(--warning);
            margin-bottom: 0.5rem;
        }

        .pd-security-text {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .pd-security-link {
            color: var(--accent);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 0.5rem;
        }

        @media (max-width: 1200px) {
            .pd-container {
                grid-template-columns: 1fr;
            }

            .pd-price-card {
                position: static;
            }

            .pd-specs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                gap: 1rem;
                font-size: 0.9rem;
            }

            .pd-gallery-wrapper {
                grid-template-columns: 80px 1fr;
            }

            .pd-thumbnail {
                width: 80px;
                height: 80px;
            }

            .pd-main-image {
                height: 300px;
            }

            .pd-specs-grid {
                grid-template-columns: 1fr;
            }

            .pd-title {
                font-size: 1.5rem;
            }

            .pd-price {
                font-size: 2rem;
            }

            .pd-similar-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        @media (max-width: 480px) {
            .pd-container {
                padding: 1rem;
            }

            .header-content {
                padding: 0 1rem;
            }

            .pd-gallery-wrapper {
                grid-template-columns: 1fr;
            }

            .pd-thumbnails {
                flex-direction: row;
                overflow-x: auto;
                overflow-y: hidden;
                max-height: none;
            }

            .pd-thumbnail {
                width: 60px;
                height: 60px;
            }
        }
        
        /* Container com sidebar */
.container-with-sidebar {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Sidebar de filtros */
.filters-sidebar {
    width: 280px;
    background: white;
    border: 2px solid #274C77;
    border-radius: 8px;
    padding: 20px;
    height: fit-content;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.filters-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.clear-filters {
    background: none;
    border: none;
    color: #4169E1;
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
    padding: 0;
}

.clear-filters:hover {
    color: #2948b8;
}

/* Busca na sidebar */
.search-box {
    position: relative;
}

.search-input-sidebar {
    width: 100%;
    padding: 10px 35px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.search-input-sidebar:focus {
    outline: none;
    border-color: #4169E1;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
}

/* Grupos de filtros */
.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.filter-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.filter-input:hover {
    border-color: #4169E1;
}

.filter-input:focus {
    outline: none;
    border-color: #4169E1;
}

.filter-options {
    max-height: 200px;
    overflow-y: auto;
}

.filter-options::-webkit-scrollbar {
    width: 6px;
}

.filter-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.filter-options::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.filter-checkbox,
.filter-radio {
    display: flex;
    align-items: center;
    padding: 8px 4px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.filter-checkbox:hover,
.filter-radio:hover {
    background: #f8f9fa;
}

.filter-check {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
}

.filter-checkbox span,
.filter-radio span {
    font-size: 14px;
    color: #555;
}

/* Botões da sidebar */
.btn-filter {
    width: 100%;
    padding: 12px;
    background: #274C77;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.btn-filter:hover {
    background: #274C77;
}

.btn-clear {
    width: 100%;
    padding: 12px;
    background: white;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-clear:hover {
    background: #f8f9fa;
    border-color: #999;
}

/* Conteúdo principal */
.main-content {
    flex: 1;
    min-width: 0;
}

.content-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Sem resultados */
.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.no-results p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 12px 30px;
    background: #4169E1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #2948b8;
}

/* Responsivo */
@media (max-width: 968px) {
    .container-with-sidebar {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 20px;
    }
    
    .filter-options {
        max-height: 150px;
    }
}

@media (max-width: 640px) {
    .filters-sidebar {
        padding: 15px;
    }
    
    .filters-header h3 {
        font-size: 16px;
    }
    
    .filter-group h4 {
        font-size: 14px;
    }
}
        
        
        