/**
 * CS Viagens & Eventos
 * CSS específico da página de Política de Privacidade
 */

/* Prose styles for better readability */
.prose p {
    line-height: 1.75;
}

.prose strong {
    font-weight: 600;
}

/* Smooth transitions for interactive elements */
.bg-slate-50,
.bg-blue-50,
.bg-red-50,
.bg-amber-50,
.bg-green-50 {
    transition: all 0.2s ease;
}

/* Hover effects on cards */
.bg-slate-50:hover,
.bg-blue-50:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Material icons alignment */
.material-symbols-outlined {
    vertical-align: middle;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .bg-gradient-to-r {
        background: #1142d4 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .shadow-lg {
        box-shadow: none;
    }
}
