        .cookie-preview {
            background-color: #f8f9fa;
            border-left: 4px solid #948576;
            padding: 10px;
            margin: 15px 0;
        }
        
        .cookie-preview h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        
        /* Estilos do banner de cookies */
        #cookieConsentBanner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: white;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
            padding: 25px;
            z-index: 1000;
            display: none;
            border-top: 2px solid #ff0000;
        }
        
        .cookie-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
        }
        
        .cookie-text {
            flex: 1;
            min-width: 300px;
            margin-right: 20px;
            margin-bottom: 15px;
        }
        
        .cookie-text h3 {
            color: #2c3e50;
            margin-bottom: 8px;
            font-size: 1.4rem;
        }
        
        .cookie-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .cookie-btn {
            padding: 12px 24px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 1rem;
        }
        
        .cookie-btn-accept {
            background-color: #ff0000;
            color: white;
        }
        
        .cookie-btn-accept:hover {
            background-color: #ffaf24;
        }
        
        .cookie-btn-reject {
            background-color: #e74c3c;
            color: white;
        }
        
        .cookie-btn-reject:hover {
            background-color: #ffaf24;
        }
        
        .cookie-btn-settings {
            background-color: #948576;
            color: white;
        }
        
        .cookie-btn-settings:hover {
            background-color: #c1b6ab;
        }
        
        .cookie-btn-save {
            background-color: #713a60;
            color: white;
        }
        
        .cookie-btn-save:hover {
            background-color: #ffaf24;
        }
        
        .cookie-btn-details {
            background-color: transparent;
            color: #948576;
            text-decoration: underline;
        }
        
        .cookie-btn-details:hover {
            color: #c1b6ab;
        }
        
        /* Modal de configurações */
        #cookieSettingsModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1001;
            overflow-y: auto;
            padding: 20px;
        }
        
        .cookie-modal-content {
            background-color: white;
            max-width: 700px;
            margin: 50px auto;
            padding: 30px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .cookie-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .cookie-modal-header h3 {
            color: #2c3e50;
            font-size: 1.8rem;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #7f8c8d;
        }
        
        .close-modal:hover {
            color: #e74c3c;
        }
        
        .cookie-type {
            background-color: #f8f9fa;
            padding: 20px;
            margin-bottom: 20px;
            border-left: 4px solid #948576;
        }
        
        .cookie-type.essential {
            border-left-color: #ff0000;
        }
        
        .cookie-type.statistical {
            border-left-color: #713a60;
        }
        
        .cookie-type-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .cookie-type-header h4 {
            color: #2c3e50;
            font-size: 1.3rem;
        }
        
        .cookie-switch {
            position: relative;
            display: inline-block;
            width: 60px;
            height: 30px;
        }
        
        .cookie-switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
        
        .cookie-slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #ccc;
            transition: .4s;
            border-radius: 34px;
        }
        
        .cookie-slider:before {
            position: absolute;
            content: "";
            height: 22px;
            width: 22px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }
        
        input:checked + .cookie-slider {
            background-color: #ff0000;
        }
        
        input:checked + .cookie-slider:before {
            transform: translateX(30px);
        }
        
        input:disabled + .cookie-slider {
            background-color: #95a5a6;
            cursor: not-allowed;
        }
        
        .cookie-type p {
            color: #555;
            font-size: 1rem;
        }
        
        .cookie-modal-actions {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .cookie-content {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .cookie-text {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .cookie-actions {
                width: 100%;
                justify-content: flex-start;
            }
            
            .cookie-modal-content {
                padding: 20px;
                margin: 20px auto;
            }
        }
        
        /* Status de consentimento */
        .consent-status {
            display: inline-block;
            padding: 5px 12px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-left: 10px;
        }
        
        .status-accepted {
            background-color: #d5f4e6;
            color: #ff0000;
        }
        
        .status-rejected {
            background-color: #fadbd8;
            color: #c0392b;
        }
        
        .status-custom {
            background-color: #e8f4fc;
            color: #c1b6ab;
        }
        
        .status-none {
            background-color: #f2f3f4;
            color: #7f8c8d;
        }